diff --git a/AUTHORS b/AUTHORS index 887a1bd77c3062a974815adfaadc76ceb5ee6b08..fdf494210c43b5ec58153c3340cafe4690c5bb00 100644 --- a/AUTHORS +++ b/AUTHORS @@ -193,6 +193,7 @@ documentation and additional help. * Clement Oudot <clem.oudot@gmail.com> HTTP header authentication + Password expiration date in dashboard * Thomas Niercke <thomas@niercke.de> Code and ideas for making Argonaut Events Extensible diff --git a/Changelog b/Changelog index 3708c6ae16241e567fbd9303ee6f2b9ca7964df7..0aa1c351d262e432dba0aec4eadcc880d916af7b 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,47 @@ FusionDirectory changelog ========================= +* FusionDirectory 1.2 + +[Feature] Bugs #2586: class_plugin should be reviewed +[Feature] FusionDirectory plugins - Bugs #3615: Adding fdSystemLock to windows workstations +[Feature] FusionDirectory plugins - Bugs #4024: We should be able to create a system with fusiondirectory-shell +[Feature] FusionDirectory plugins - Bugs #5315: mail methods code should be reviewed and cleaned +[Feature] FusionDirectory plugins - Bugs #5340: DHCP postLdapSave should lock the object modified +[Feature] FusionDirectory plugins - Bugs #5341: DHCP tab should be able to load values from template +[Fix] Bugs #5347: Template types needs their own icon somehow +[Feature] FusionDirectory plugins - Bugs #5504: We should be able to launch actions on group of systems +[Feature] FusionDirectory plugins - Bugs #5506: Check that OPSI is fully working on groups +[Feature] FusionDirectory plugins - Bugs #5512: Remove DNS tab or machine not remove the record associated +[Fix] FusionDirectory plugins - Bugs #5519: template of workstations trigger the creation with the OPSI webservice +[Fix] FusionDirectory plugins - Bugs #5520: Schedule action start directly +[Fix] FusionDirectory plugins - Bugs #5540: Errors when trying to schedule actions +[Fix] Bugs #5542: Icon for waiting task is not showing +[Fix] Bugs #5545: Unicity is only tested upon the same objectType +[Fix] FusionDirectory plugins - Bugs #5547: Wrong expiration date shown in ppolicy dashboard +[Feature] FusionDirectory plugins - Bugs #5556: %askme% dans les champs date +[Fix] FusionDirectory plugins - Bugs #5560: The DNS plugin fails to find the primary server, if it's in another zone +[Fix] Bugs #5568: I have always the browser language, same if I specify another language in FusionDirectory configuration +[Fix] FusionDirectory plugins - Bugs #5572: Samba home path fields are weirdly checked +[Fix] FusionDirectory plugins - Bugs #5573: Unicity is only tested upon the same objectType +[Fix] Bugs #5574: Groups RDN configuration is confusing +[Feature] FusionDirectory plugins - Bugs #5584: System templates - Unable to use the DHCP tab +[Feature] Bugs #5587: ACL - System templates +[Fix] FusionDirectory plugins - Bugs #5592: webservice and logging : unexpected debug call +[Fix] Bugs #5593: Script for hook 'user postmodify' is not executed when password hash=sasl and only the password is changed. +[Fix] FusionDirectory plugins - Bugs #5595: Grab the version of the opsi package in a software-list +[Fix] Bugs #5602: Add array modifiers +[Fix] FusionDirectory plugins - Bugs #5636: Slave ldap2zone config should enforce final dot in zone name +[Feature] Wishlist #5297: User tab / description as text area +[Feature] Wishlist #5395: Import groups using csv +[Feature] FusionDirectory plugins - Wishlist #5515: System - DNS Tab - Activating the DNS tab / DNS Domain should automatically add a A record +[Feature] FusionDirectory plugins - Wishlist #5529: Add "Partage" capabilities with SYMPA +[Feature] Wishlist #5532: We should be able to put groups in groups +[Feature] FusionDirectory plugins - Wishlist #5534: Add "Partage" capabilities with group +[Feature] FusionDirectory plugins - Wishlist #5582: Import groups using csv +[Feature] FusionDirectory plugins - Wishlist #5585: System templates - DNS Tab +[Feature] Wishlist #5625: Templates should bypass ACLs + * FusionDirectory 1.1.1 [Fix] Bugs #5511: Error displayed when SASL user created diff --git a/contrib/bin/fusiondirectory-setup b/contrib/bin/fusiondirectory-setup index 38d6123a9a4807d70d103def9f479e4f9269a5fb..cba347a3f821b81ef164f7f5ada6fa91a4e52a06 100644 --- a/contrib/bin/fusiondirectory-setup +++ b/contrib/bin/fusiondirectory-setup @@ -49,7 +49,7 @@ use Crypt::CBC; use Archive::Extract; # used to copy files -use File::Copy::Recursive qw(rcopy); +use File::Copy::Recursive qw(rcopy rmove); #XML parser use XML::Twig; @@ -1098,13 +1098,13 @@ sub check_id_numbers_generic { } } -# function that create a directory and copy plugin files in it -sub create_and_copy_plugin_dir { +# function that create a directory and move plugin files in it +sub create_and_move_plugin_dir { my ($plugin_dir,$dest_dir) = @_; if ( -e $plugin_dir ){ my $dir = dir ($dest_dir); $dir->mkpath() or warn ("! Unable to make ".$dest_dir."\n") if ( !-e $dest_dir); - my $files_dirs_copied = rcopy($plugin_dir."/*", $dest_dir); + my $files_dirs_copied = rmove($plugin_dir."/*", $dest_dir); } } @@ -1138,32 +1138,37 @@ sub install_plugins { my $plugin = $1; # copy addons into plugins - create_and_copy_plugin_dir($plugin_path."/addons/",$vars{fd_home}."/plugins/addons/"); + create_and_move_plugin_dir($plugin_path."/addons/", $vars{fd_home}."/plugins/addons/"); # copy admin into plugins - create_and_copy_plugin_dir($plugin_path."/admin/",$vars{fd_home}."/plugins/admin/"); + create_and_move_plugin_dir($plugin_path."/admin/", $vars{fd_home}."/plugins/admin/"); # copy personal into plugins - create_and_copy_plugin_dir($plugin_path."/personal/",$vars{fd_home}."/plugins/personal/"); + create_and_move_plugin_dir($plugin_path."/personal/", $vars{fd_home}."/plugins/personal/"); + + # copy extra theme templates + create_and_move_plugin_dir($plugin_path."/ihtml/", $vars{fd_home}."/ihtml/"); + + # copy extra theme icons + create_and_move_plugin_dir($plugin_path."/html/themes/", $vars{fd_home}."/html/themes/"); # copy extra HTML and images - create_and_copy_plugin_dir($plugin_path."/html/",$vars{fd_home}."/html/plugins/".$plugin); + create_and_move_plugin_dir($plugin_path."/html/", $vars{fd_home}."/html/plugins/".$plugin); # copy contrib - create_and_copy_plugin_dir($plugin_path."/contrib/",$vars{fd_home}."/doc/contrib/".$plugin); + create_and_move_plugin_dir($plugin_path."/contrib/", $vars{fd_home}."/doc/contrib/".$plugin); # copy config - create_and_copy_plugin_dir($plugin_path."/config/",$vars{fd_home}."/plugins/config/"); + create_and_move_plugin_dir($plugin_path."/config/", $vars{fd_home}."/plugins/config/"); # copy ldap schema - create_and_copy_plugin_dir($plugin_path."/contrib/openldap/",$vars{fd_home}."/contrib/openldap/"); + create_and_move_plugin_dir($plugin_path."/contrib/openldap/", $vars{fd_home}."/contrib/openldap/"); # copy includes - create_and_copy_plugin_dir($plugin_path."/include/",$vars{fd_home}."/include/"); + create_and_move_plugin_dir($plugin_path."/include/", $vars{fd_home}."/include/"); # copy the locales - create_and_copy_plugin_dir($plugin_path."/locale/",$vars{fd_home}."/locale/plugins/".$plugin); - + create_and_move_plugin_dir($plugin_path."/locale/", $vars{fd_home}."/locale/plugins/".$plugin); } #finally update FusionDirectory's class.cache and locales @@ -1724,8 +1729,8 @@ sub read_ldap_config { if (($mesg->entries)[0]->exists('fdUserRDN')) { $userrdn = ($mesg->entries)[0]->get_value('fdUserRDN'); } - if (($mesg->entries)[0]->exists('fdGroupRDN')) { - $grouprdn = ($mesg->entries)[0]->get_value('fdGroupRDN'); + if (($mesg->entries)[0]->exists('fdOGroupRDN')) { + $grouprdn = ($mesg->entries)[0]->get_value('fdOGroupRDN'); } if (($mesg->entries)[0]->exists('fdAclRoleRDN')) { $aclrolerdn = ($mesg->entries)[0]->get_value('fdAclRoleRDN'); diff --git a/contrib/docs/UPGRADE b/contrib/docs/UPGRADE index 5b4778b623e19858b5fd541728ce4d44c7232b1f..39218da43372026a930e91ba324f935531b12fe0 100644 --- a/contrib/docs/UPGRADE +++ b/contrib/docs/UPGRADE @@ -2741,8 +2741,7 @@ apt-get remove fusiondirectory-plugin-kolab2 apt-get remove fusiondirectory-plugin-kolab2-schema -Upgrade schema2ldif -=================== +==== Upgrade schema2ldif ==== For Jessie distribution add extra repository @@ -2754,8 +2753,7 @@ deb http://repos.fusiondirectory.org/debian-extra jessie main apt-get update apt-get install schema2ldif -Upgrade FusionDirectory first -============================= +==== Upgrade FusionDirectory first ==== - Upgrade FusionDirectory core package before other ones to avoid dependencies errors: @@ -2765,16 +2763,14 @@ apt-get install fusiondirectory apt-get install fusiondirectory-schema -Upgrade of LDAP directory -========================= +==== Upgrade of LDAP directory ==== - Upgrade the core schemas fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/core-fd-conf.schema fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/core-fd.schema -Upgrade of LDAP directory -========================= +==== Upgrade of LDAP directory ==== - if you are using the argonaut plugin you have to update its schema @@ -2873,19 +2869,15 @@ If they are old objectClasses it will warn you and you will have to remove them Please read it carefully before applying :!::!: -Checking your indexed attributes -================================ +==== Checking your indexed attributes ==== Check that all you index still match with valid attributes present in your ldap directory -New format for repository service -================================= +==== New format for repository service ==== If you have a repository service. Open and save it back so it will use the new format -Enjoy :) - Migrate FusionDirectory from 1.1 to 1.1.1 ========================================= @@ -2896,7 +2888,7 @@ New Depot Configuration ! The repositories have been cleaned and reorganized please update your configuration accordingly ! https://documentation.fusiondirectory.org/en/dl_install - + Upgrade schema2ldif =================== @@ -2921,6 +2913,49 @@ apt-get install fusiondirectory apt-get install fusiondirectory-schema + +Migrate FusionDirectory from 1.1.1 to 1.2 +=========================================== + +==== Upgrade schema2ldif ==== + +For Jessie distribution add extra repository + +# fusiondirectory debian-extra repository +deb http://repos.fusiondirectory.org/debian-extra jessie main + +- Update the package list and upgrade schema2ldif + +apt-get update +apt-get install schema2ldif + +==== Upgrade FusionDirectory first ==== + +- Upgrade FusionDirectory core package before other ones to avoid dependencies errors: + +apt-get install fusiondirectory + +- Upgrade FusionDirectory schema package too. + +apt-get install fusiondirectory-schema + +==== Upgrade of LDAP directory ==== + +- Upgrade core schema of FusionDirectory + +fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/core-fd.schema + +- if you are using the renater plugin you have to add its new schema + +fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/renater-partage-fd.schema + +- if you are using the sympa plugin you have to update its schema + +fusiondirectory-insert-schema -i /etc/ldap/schema/fusiondirectory/sympa-fd-conf.schema +fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/sympa-fd.schema + +- In case you use system template that have a DNS tab, you need to remake it because the separator "|" is changed to "^" + Enjoy :) --- diff --git a/contrib/man/fusiondirectory-insert-schema.1 b/contrib/man/fusiondirectory-insert-schema.1 index da2a965999de3b8526f1ccd99934c9b5c8cb4a20..8052276e960d2ec154d911222d706943a0d73245 100644 --- a/contrib/man/fusiondirectory-insert-schema.1 +++ b/contrib/man/fusiondirectory-insert-schema.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "FUSIONDIRECTORY-INSERT-SCHEMA 1" -.TH FUSIONDIRECTORY-INSERT-SCHEMA 1 "2017-05-29" "FusionDirectory 1.1.1" "FusionDirectory Documentation" +.TH FUSIONDIRECTORY-INSERT-SCHEMA 1 "2017-05-29" "FusionDirectory 1.2" "FusionDirectory Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/contrib/man/fusiondirectory-setup.1 b/contrib/man/fusiondirectory-setup.1 index 40db5e719c69ec120298550c1418ac40a67a8eb7..d7b6dd78404499d8fc98a3c2e46a38efd949640f 100644 --- a/contrib/man/fusiondirectory-setup.1 +++ b/contrib/man/fusiondirectory-setup.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "FUSIONDIRECTORY-SETUP 1" -.TH FUSIONDIRECTORY-SETUP 1 "2017-05-29" "FusionDirectory 1.1.1" "FusionDirectory Documentation" +.TH FUSIONDIRECTORY-SETUP 1 "2017-06-23" "FusionDirectory 1.2" "FusionDirectory Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/contrib/man/fusiondirectory.conf.5 b/contrib/man/fusiondirectory.conf.5 index a7cc56488f24b34dee10f137736b60bf70ab2249..9a8b54e796b2b0552d9daa1d15bbaa3ca3a45976 100644 --- a/contrib/man/fusiondirectory.conf.5 +++ b/contrib/man/fusiondirectory.conf.5 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "FUSIONDIRECTORY.CONF 1" -.TH FUSIONDIRECTORY.CONF 1 "2017-05-29" "FusionDirectory 1.1.1" "FusionDirectory Documentation" +.TH FUSIONDIRECTORY.CONF 1 "2017-05-29" "FusionDirectory 1.2" "FusionDirectory Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/contrib/openldap/core-fd.schema b/contrib/openldap/core-fd.schema index 4f293d4da29757021b9c80af8e101716b4a1cd49..8ce67fc4500f54f7d07ceb1406b6f48cdd6e3b5c 100644 --- a/contrib/openldap/core-fd.schema +++ b/contrib/openldap/core-fd.schema @@ -5,20 +5,6 @@ # Attributes -attributetype ( 1.3.6.1.4.1.10098.1.1.12.2 NAME 'gosaUser' - DESC 'GOsa - DN of a user' - OBSOLETE - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15) - -attributetype ( 1.3.6.1.4.1.10098.1.1.12.3 NAME 'gosaObject' - DESC 'GOsa - DN of an object' - OBSOLETE - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15) - attributetype ( 1.3.6.1.4.1.10098.1.1.12.30 NAME 'gosaGroupObjects' DESC 'GOsa - List of all object types that are in a gosaGroupOfNames' EQUALITY caseIgnoreIA5Match @@ -73,11 +59,6 @@ attributetype ( 1.3.6.1.4.1.38414.62.1.3 NAME 'fdLockTimestamp' # Classes -objectclass ( 1.3.6.1.4.1.10098.1.2.1.19.2 NAME 'gosaLockEntry' SUP top STRUCTURAL - DESC 'GOsa - Class for GOsa locking' - OBSOLETE - MUST ( gosaUser $ gosaObject $ cn )) - objectclass ( 1.3.6.1.4.1.10098.1.2.1.19.4 NAME 'gosaDepartment' SUP top AUXILIARY DESC 'GOsa - Class to mark Departments for GOsa' MUST ( ou $ description ) diff --git a/html/themes/breezy/datepicker.css b/html/themes/breezy/datepicker.css index 5a1d8371e8359e9ed085950b54f3e8de00d8ce81..2793aa8900261e93be2f622452eb7b9e8194714a 100644 --- a/html/themes/breezy/datepicker.css +++ b/html/themes/breezy/datepicker.css @@ -2,7 +2,7 @@ div.datepicker { position: absolute; text-align: center; -border: 1px #AAA solid; +border: 1px #aaa solid; font-family: arial; background: #fcfcfc; font-size: 10px; @@ -20,8 +20,8 @@ text-align: center; div.datepicker .datepicker-header { font-size: 11px; font-weight: bold; -background: #F0F0F0; -border-bottom: 1px solid #AAA; +background: #f0f0f0; +border-bottom: 1px solid #aaa; padding: 2px; text-align: center; } @@ -43,7 +43,7 @@ line-height: 16px; } td.prev:hover,td.prev-year:hover,td.next:hover,td.next-year:hover { -background-color: #D0D0D0; +background-color: #d0d0d0; } td.header { @@ -65,7 +65,7 @@ padding: 0; .datepicker-calendar table tbody tr td { box-sizing: content-box; -border: 1px #EAEAEA solid; +border: 1px #eaeaea solid; margin: 0; padding: 0; text-align: center; @@ -78,15 +78,15 @@ cursor: pointer; .datepicker-calendar table tbody tr td:hover, .datepicker-calendar table tbody tr td.outbound:hover, .datepicker-calendar table tbody tr td.today:hover { -border: 1px #CCE9FF solid; -background: #E9F5FF; +border: 1px #cce9ff solid; +background: #e9f5ff; cursor: pointer; } .datepicker-calendar table tbody tr td.wday { box-sizing: content-box; -border: 1px #AAA solid; -background: #CCC; +border: 1px #aaa solid; +background: #ccc; cursor: text; width: 21px; height: 16px; @@ -95,14 +95,14 @@ font-weight: bold; } .datepicker-calendar table tbody tr td.outbound { -background: #F4F3F3; +background: #f4f3f3; } .datepicker-calendar table tbody tr td.today, .datepicker-calendar table tbody tr td.today:hover { box-sizing: content-box; -border: 1px #CCE9FF solid; -background: #E9F5FF; +border: 1px #cce9ff solid; +background: #e9f5ff; background-image: url(../../images/date_active.png); background-repeat: no-repeat; width: 21px; @@ -120,7 +120,7 @@ line-height: 16px; } .datepicker-calendar table tbody tr td.nclick-outbound { -background: #E8E4E4; +background: #e8e4e4; width: 21px; height: 16px; line-height: 16px; @@ -128,18 +128,18 @@ line-height: 16px; .datepicker-calendar table tbody tr td.nclick:hover, .datepicker-calendar table tbody tr td.nclick-outbound:hover { -border: 1px #EAEAEA solid; +border: 1px #eaeaea solid; background: #fcfcfc; } .datepicker-calendar table tbody tr td.nclick-outbound:hover { -background: #E8E4E4; +background: #e8e4e4; } div.datepicker div.datepicker-footer { font-size: 10px; -background: #F0F0F0; -border-top: 1px solid #AAA; +background: #f0f0f0; +border-top: 1px solid #aaa; cursor: pointer; text-align: center; padding: 2px; diff --git a/html/themes/breezy/dialog.css b/html/themes/breezy/dialog.css index b3d3478137c0733b9a33f281c1d49a60ecb139f6..c18d96f38e34aa64629983da2ce0a70ea561504d 100644 --- a/html/themes/breezy/dialog.css +++ b/html/themes/breezy/dialog.css @@ -1,8 +1,8 @@ div.msgtitle { width: auto; -background-color: #F0F0F0; -border: solid 1px #BBBBBB; +background-color: #f0f0f0; +border: solid 1px #bbbbbb; margin-bottom: 7px; } div.msgtitle h2 { diff --git a/html/themes/breezy/form.css b/html/themes/breezy/form.css index d29e9073cc8a1bea81815b40554f1f1c027e74f3..9942884408d909a6b7e04e168270075ff46f6e8d 100644 --- a/html/themes/breezy/form.css +++ b/html/themes/breezy/form.css @@ -8,12 +8,12 @@ padding: 2px; input[disabled] { color: #888; -background-color: #DDD; +background-color: #ddd; } textarea[disabled], select[disabled] { color: #31363b; -background-color: #DDD; +background-color: #ddd; } /* On small screens */ diff --git a/html/themes/breezy/lists.css b/html/themes/breezy/lists.css index b0ae41b550e34e7837be3a1dadcd12e0f092e157..0e0f2619e8a1b390d20ae9e11691d2ddb2ad17ab 100644 --- a/html/themes/breezy/lists.css +++ b/html/themes/breezy/lists.css @@ -3,9 +3,9 @@ * L i s t s * ********************************/ table.listingTable { -border-top: 1px solid #C0C2C3; -border-bottom: 1px solid #C0C2C3; -border-left: 1px solid #C0C2C3; +border-top: 1px solid #c0c2c3; +border-bottom: 1px solid #c0c2c3; +border-left: 1px solid #c0c2c3; border-spacing: 0; } @@ -19,17 +19,17 @@ white-space: nowrap; table.listingTable > thead > tr > th { box-sizing: content-box; -background: #F0F0F0; +background: #f0f0f0; font-weight: bold; -border-bottom: 1px solid #C0C2C3; +border-bottom: 1px solid #c0c2c3; padding: 3px; height: 22px; } html.ltr table.listingTable > thead > tr > th { -border-right: 1px solid #C0C2C3; +border-right: 1px solid #c0c2c3; } html.rtl table.listingTable > thead > tr > th { -border-left: 1px solid #C0C2C3; +border-left: 1px solid #c0c2c3; } table.listingTable > tbody { @@ -48,15 +48,15 @@ table.listingTable > tbody > tr:nth-child(odd) { } table.listingTable > tbody > tr:nth-child(even) { - background-color: #F5F5F5; + background-color: #f5f5f5; } table.listingTable > tbody > tr.entry-locked:nth-child(odd) { - background-color: #FFC; + background-color: #ffc; } table.listingTable > tbody > tr.entry-locked:nth-child(even) { - background-color: #F5F5CC; + background-color: #f5f5cc; } html.ltr table.listingTable > tbody > tr td:last-child { @@ -67,11 +67,11 @@ padding-left: 5px; } table.listingTable > tbody > tr:hover { - background-color: #DDD; + background-color: #ddd; } table.listingTable > tbody > tr.entry-locked:hover { - background-color: #DDA; + background-color: #dda; } table.listingTable > tbody > tr td { @@ -85,10 +85,10 @@ background: transparent; height: 22px; } html.ltr table.listingTable > tbody > tr td { -border-right: 1px solid #C0C2C3; +border-right: 1px solid #c0c2c3; } html.rtl table.listingTable > tbody > tr td { -border-left: 1px solid #C0C2C3; +border-left: 1px solid #c0c2c3; } table.listingTable > tbody > tr td > input[type=image], @@ -109,7 +109,7 @@ color: #2980b9; /* List border */ div.nlistFooter { -background-color: #E5E5E5; +background-color: #e5e5e5; border-left: 1px solid silver; border-right: 1px solid silver; border-bottom: 1px solid silver; @@ -133,7 +133,7 @@ margin-right: 10px; } ul.treeList a:hover { -background-color: #DDD; +background-color: #ddd; } a.treeList { @@ -144,13 +144,13 @@ cursor: pointer; a.treeListSelected { font-weight: bold; color: #2980b9; -background-color: #DDD; +background-color: #ddd; padding: 2px; cursor: pointer; } a.treeList:hover,a.treeListSelected:hover { -background-color: #DDD; +background-color: #ddd; padding: 2px; } @@ -179,7 +179,7 @@ background: #fcfcfc url(../../images/lists/lastnode.png) no-repeat; div.treeList { background-color: #fcfcfc; -border: 1px solid #C0C2C3; +border: 1px solid #c0c2c3; padding: 5px; position: absolute; z-index: 500; @@ -252,7 +252,7 @@ min-width: 230px; display: block; } table.listing-container > tbody > tr > td.filter input[type=submit] { - border: 1px solid #DDD; + border: 1px solid #ddd; width: 100% !important; padding: 10px; display: inline-block; diff --git a/html/themes/breezy/menu.css b/html/themes/breezy/menu.css index c3737231aa9db1d025b613518b7de45c081d340f..63c1840f0af96e9290085ee3d80736e62ecfdeb2 100644 --- a/html/themes/breezy/menu.css +++ b/html/themes/breezy/menu.css @@ -23,7 +23,7 @@ ul.menu > li > a { font-family: arial,helvetica,sans-serif; font-size: 12px; font-weight: bold; -color: #31363B; +color: #31363b; text-decoration: none; background-color: #eff0f1; text-align: center; @@ -73,7 +73,7 @@ text-decoration: none; /* Main menu */ .iconmenu-section { -border-top: 1px solid #C0C2C3; +border-top: 1px solid #c0c2c3; clear: both; } @@ -151,7 +151,7 @@ clear: right; .iconmenu > a:link, .iconmenu > a:visited { text-decoration: none; -color: #31363B; +color: #31363b; } .iconmenu > a:hover { diff --git a/html/themes/breezy/plugin.css b/html/themes/breezy/plugin.css index c0ab12b52ca84bcb5d18d8aacffcc11239b0daba..6615f8c3f718d00e6dcec33d89629c3b1bc57f8d 100644 --- a/html/themes/breezy/plugin.css +++ b/html/themes/breezy/plugin.css @@ -192,16 +192,16 @@ display: none; fieldset.plugin-section.critical legend span, .plugin-section.critical > span.legend { font-weight: bold; -background-color: #BCF; +background-color: #bcf; } fieldset.plugin-section.critical legend span:after, .plugin-section.critical > span.legend:after { content: " (editing this can break your LDAP)"; -color: #D00; +color: #d00; } .plugin-section.critical > div { -background-color: #DFEFFF; +background-color: #dfefff; } /* On small screens */ diff --git a/html/themes/breezy/setup.css b/html/themes/breezy/setup.css index 435aaf72925a0a254fb069e2e10176dfce8901c8..beeb4b4d7fa3277a2c6f44bc0f0cf05127df7f24 100644 --- a/html/themes/breezy/setup.css +++ b/html/themes/breezy/setup.css @@ -41,7 +41,7 @@ cursor: default; /* Disabled setup steps */ #menucell.setup-navigation li.menuitem.disabled a.navigation-title { cursor: default; -color: #C0C2C3; +color: #c0c2c3; } /* Disabled setup steps */ @@ -95,7 +95,7 @@ cursor: default; /* Container for name and status, when status is failed */ div.step2-entry-container-info { padding: 3px; -border: 1px solid #C0C2C3; +border: 1px solid #c0c2c3; width: 99%; cursor: default; } diff --git a/html/themes/breezy/style.css b/html/themes/breezy/style.css index a3edd35a1210ec82456124323baa0e25bf5203f4..a3617f6b7bdedaeac90972bdc3e482294937ec23 100644 --- a/html/themes/breezy/style.css +++ b/html/themes/breezy/style.css @@ -26,16 +26,16 @@ border: none; a:link { text-decoration: none; -color: #31363B; +color: #31363b; } a:visited { text-decoration: none; -color: #31363B; +color: #31363b; } td.listfooter { -background: #E5E5E5; +background: #e5e5e5; border-top: 1px solid #c0c2c3; padding: 3px; height: 16px; @@ -64,7 +64,7 @@ text-align: right; a.maintitlebar,div.maintitlebar { font-family: arial,helvetica,sans-serif; text-decoration: none; -/*color:#FFFFFF;*/ +/*color:#ffffff;*/ font-size: 12px; text-align: center; vertical-align: middle; @@ -129,7 +129,7 @@ text-align: left; hr { width: 100%; border: none; -background-color: #C0C2C3; +background-color: #c0c2c3; height: 1px; } @@ -208,12 +208,12 @@ border: 0; border-spacing: 0; padding: 0; margin: 0; -background-color: #507AAA; +background-color: #507aaa; vertical-align: top; } div.contentboxh { -background-color: #F0F0F0; +background-color: #f0f0f0; border: 1px solid #c0c2c3; border-bottom: none; height: 26px; @@ -246,7 +246,7 @@ margin: 1px; } .filter div.contentboxb > div { width: 100%; -background: #EEEEEE; +background: #eeeeee; border-top: 1px solid #c0c2c3; text-align: right; margin: 0; @@ -394,11 +394,11 @@ padding-right: 4px; div.autocomplete li:hover { -background-color: #F0F0F0; +background-color: #f0f0f0; } div.autocomplete ul li.selected { -background-color: #F0F0F0; +background-color: #f0f0f0; } #pulldown { @@ -455,7 +455,7 @@ text-decoration: none; } #pulldown ul li.sep { -color: #C0C2C3; +color: #c0c2c3; padding: .8em 0 .5em; } @@ -491,7 +491,7 @@ padding: 5px 9px 5px 5px; #pulldown ul ul li a:hover { font-weight: normal; -background-color: #D5EAF7; +background-color: #d5eaf7; background-image: none; } @@ -501,7 +501,7 @@ font-style: italic; } span.mark { -color: #B22; +color: #b22; } #debug-handling { diff --git a/html/themes/breezy/tabs.css b/html/themes/breezy/tabs.css index 3f1f123f314525bf5250b077a10eb1a255a0c44b..9331980973701b5aa90f80cf0223da758e506ba7 100644 --- a/html/themes/breezy/tabs.css +++ b/html/themes/breezy/tabs.css @@ -24,7 +24,7 @@ table.tabs-header > tbody > tr > td > div > a { display: inline-block; border-radius: 5px 5px 0 0; text-align: center; -background-color: #D0D0D0; +background-color: #d0d0d0; border: 1px solid #999; margin-top: 5px; padding-top: 1px; @@ -95,9 +95,9 @@ border-bottom: 1px solid #999; div.tab-content { padding: 4px; width: auto; -background-color: #F8F8F8; +background-color: #f8f8f8; border-style: solid; -border-color: #C0C2C3; +border-color: #c0c2c3; border-top-width: 0; border-bottom-width: 1px; border-left-width: 1px; diff --git a/html/themes/legacy/lists.css b/html/themes/legacy/lists.css index d6465067dbe75afef50a66f4e08eb6e262e55237..ebf60d5fe91a24de728e6344b0d75fd51c3bbdf3 100644 --- a/html/themes/legacy/lists.css +++ b/html/themes/legacy/lists.css @@ -3,9 +3,9 @@ * L i s t s * ********************************/ table.listingTable { -border-top: 1px solid #AAA; -border-bottom: 1px solid #AAA; -border-left: 1px solid #AAA; +border-top: 1px solid #aaa; +border-bottom: 1px solid #aaa; +border-left: 1px solid #aaa; border-spacing: 0; } @@ -19,17 +19,17 @@ white-space: nowrap; table.listingTable > thead > tr > th { box-sizing: content-box; -background: #F0F0F0; +background: #f0f0f0; font-weight: bold; -border-bottom: 1px solid #AAA; +border-bottom: 1px solid #aaa; padding: 3px; height: 22px; } html.ltr table.listingTable > thead > tr > th { -border-right: 1px solid #AAA; +border-right: 1px solid #aaa; } html.rtl table.listingTable > thead > tr > th { -border-left: 1px solid #AAA; +border-left: 1px solid #aaa; } table.listingTable > tbody { @@ -44,19 +44,19 @@ white-space: nowrap; } table.listingTable > tbody > tr:nth-child(odd) { - background-color: #FFF; + background-color: #fff; } table.listingTable > tbody > tr:nth-child(even) { - background-color: #F5F5F5; + background-color: #f5f5f5; } table.listingTable > tbody > tr.entry-locked:nth-child(odd) { - background-color: #FFC; + background-color: #ffc; } table.listingTable > tbody > tr.entry-locked:nth-child(even) { - background-color: #F5F5CC; + background-color: #f5f5cc; } html.ltr table.listingTable > tbody > tr td:last-child { @@ -67,11 +67,11 @@ padding-left: 5px; } table.listingTable > tbody > tr:hover { - background-color: #DDD; + background-color: #ddd; } table.listingTable > tbody > tr.entry-locked:hover { - background-color: #DDA; + background-color: #dda; } table.listingTable > tbody > tr td { @@ -85,10 +85,10 @@ background: transparent; height: 22px; } html.ltr table.listingTable > tbody > tr td { -border-right: 1px solid #AAA; +border-right: 1px solid #aaa; } html.rtl table.listingTable > tbody > tr td { -border-left: 1px solid #AAA; +border-left: 1px solid #aaa; } table.listingTable > tbody > tr td > input[type=image], @@ -100,7 +100,7 @@ padding: 2px; /* List border */ div.nlistFooter { -background-color: #E5E5E5; +background-color: #e5e5e5; border-left: 1px solid silver; border-right: 1px solid silver; border-bottom: 1px solid silver; @@ -124,7 +124,7 @@ margin-right: 10px; } ul.treeList a:hover { -background-color: #DDD; +background-color: #ddd; } a.treeList { @@ -134,14 +134,14 @@ cursor: pointer; a.treeListSelected { font-weight: bold; -color: #1010AF; -background-color: #DDD; +color: #1010af; +background-color: #ddd; padding: 2px; cursor: pointer; } a.treeList:hover,a.treeListSelected:hover { -background-color: #DDD; +background-color: #ddd; padding: 2px; } @@ -159,7 +159,7 @@ background: url(../../images/lists/node.png) no-repeat; li.treeListSelected a { font-weight: bold; -color: #1010AF; +color: #1010af; padding: 2px; } @@ -169,8 +169,8 @@ background: #fff url(../../images/lists/lastnode.png) no-repeat; } div.treeList { -background-color: #FFF; -border: 1px solid #AAA; +background-color: #fff; +border: 1px solid #aaa; padding: 5px; position: absolute; z-index: 500; @@ -243,7 +243,7 @@ min-width: 230px; display: block; } table.listing-container > tbody > tr > td.filter input[type=submit] { - border: 1px solid #DDD; + border: 1px solid #ddd; width: 100% !important; padding: 10px; display: inline-block; diff --git a/html/themes/legacy/login.css b/html/themes/legacy/login.css index e1d44419a7afd3c8392e713392f1c6f851f5880b..bd516a3e44ae8ff55e2d0be519d990238cdeb510 100644 --- a/html/themes/legacy/login.css +++ b/html/themes/legacy/login.css @@ -22,7 +22,7 @@ position: absolute; div#window-div { min-width: 50%; margin-top: 100px; -border: 1px solid #AAAAAA; +border: 1px solid #aaaaaa; background-color: white; display: inline-block; border-radius: 10px; @@ -31,9 +31,9 @@ box-shadow: 0 0 3px black inset; div#window-titlebar { text-align: center; -border-bottom: 1px solid #AAAAAA; +border-bottom: 1px solid #aaaaaa; padding: 8px; -background-color: #DBE6C6; +background-color: #dbe6c6; border-radius: 10px 10px 0 0; } diff --git a/html/themes/legacy/menu.css b/html/themes/legacy/menu.css index 3cefcd2652022ba03a527b58586d5058f44b5209..0bd7e39e962b18ddbfa3f7aa5a8249ee18704059 100644 --- a/html/themes/legacy/menu.css +++ b/html/themes/legacy/menu.css @@ -25,7 +25,7 @@ ul.menu > li > a { font-family: arial,helvetica,sans-serif; font-size: 12px; font-weight: bold; -color: #00008F; +color: #00008f; text-decoration: none; background-color: #dbe6c6; text-align: center; @@ -34,11 +34,11 @@ margin-bottom: 3px; padding-bottom: 5px; padding-top: 5px; border-radius: 5px 5px 0 0; -border: 1px solid #AAA; +border: 1px solid #aaa; } ul.menu ul > li > a { -color: #00008F; +color: #00008f; text-decoration: none; font-weight: normal; font-size: 12px; @@ -57,11 +57,11 @@ padding-right: 15px; } .menuitem.menucurrent { -background-color: #E5F5D5; +background-color: #e5f5d5; box-shadow: 0px 0px 2px black inset; } .menuitem:hover { -background-color: #F0F0F0; +background-color: #f0f0f0; box-shadow: 0px 0px 2px black inset; } @@ -79,7 +79,7 @@ text-decoration: none; /* Main menu */ .iconmenu-section { -border-top: 1px solid #AAAAAA; +border-top: 1px solid #aaaaaa; clear: both; } @@ -111,16 +111,16 @@ h1.menuheader { margin: 0; padding: 10px; display: block; -border-bottom: 1px solid #AAAAAA; -background-color: #DBE6C6; +border-bottom: 1px solid #aaaaaa; +background-color: #dbe6c6; } html.ltr h1.menuheader { -border-right: 1px solid #AAAAAA; +border-right: 1px solid #aaaaaa; border-radius: 0 0 5px 0; float: left; } html.rtl h1.menuheader { -border-left: 1px solid #AAAAAA; +border-left: 1px solid #aaaaaa; border-radius: 0 0 0 5px; float: right; } @@ -165,7 +165,7 @@ text-decoration: none; } div.iconmenu:hover { -background-color: #F0F0F0; +background-color: #f0f0f0; } /* On small screens */ diff --git a/html/themes/legacy/plugin.css b/html/themes/legacy/plugin.css index efa4aa80487fa73ac6920bbdda8a6c7b8b73c8e2..fdcc00827f9e6479e93632437356930f6497f3de 100644 --- a/html/themes/legacy/plugin.css +++ b/html/themes/legacy/plugin.css @@ -6,12 +6,12 @@ margin-top: 0; margin-left: 0; margin-right: 0; width: auto; -border: 1px solid #AAA; +border: 1px solid #aaa; padding: 0; } div.pluginfo { -border-bottom: 1px solid #AAA; +border-bottom: 1px solid #aaa; width: 100%; padding-top: 2px; padding-bottom: 2px; @@ -52,7 +52,7 @@ padding-left: 10px; padding-right: 10px; padding-bottom: 5px; padding-top: 5px; -background: #BC9; +background: #bc9; } html.rtl .plugbottom { text-align: left; @@ -72,7 +72,7 @@ float: left; clear: left; width: 49%; vertical-align: top; -border: 1px solid #B0B0B0; +border: 1px solid #b0b0b0; padding: 0; margin-top: 0.5%; margin-left: 0.5%; @@ -123,8 +123,8 @@ float: right; fieldset.plugin-section legend span, .plugin-section > span.legend { font-weight: bold; -background-color: #DBE6C6; -border: 1px solid #B0B0B0; +background-color: #dbe6c6; +border: 1px solid #b0b0b0; width: 100%; padding-top: 5px; padding-bottom: 5px; @@ -194,16 +194,16 @@ display: none; fieldset.plugin-section.critical legend span, .plugin-section.critical > span.legend { font-weight: bold; -background-color: #BCF; +background-color: #bcf; } fieldset.plugin-section.critical legend span:after, .plugin-section.critical > span.legend:after { content: " (editing this can break your LDAP)"; -color: #D00; +color: #d00; } .plugin-section.critical > div { -background-color: #DFEFFF; +background-color: #dfefff; } /* On small screens */ @@ -240,7 +240,7 @@ background-color: #DFEFFF; right: 5px; } .plugbottom input[type=submit], .plugbottom input[type=button] { - border: 1px solid #DDD; + border: 1px solid #ddd; width: 30% !important; padding: 10px; display: inline-block; diff --git a/html/themes/legacy/setup.css b/html/themes/legacy/setup.css index 66d920e988744e60b0d7f1aa5da195374f3691ae..ab9f53ee5be1627a029da022230619d7b4e214dc 100644 --- a/html/themes/legacy/setup.css +++ b/html/themes/legacy/setup.css @@ -41,7 +41,7 @@ cursor: default; /* Disabled setup steps */ #menucell.setup-navigation li.menuitem.disabled a.navigation-title { cursor: default; -color: #AAA; +color: #aaa; } /* Disabled setup steps */ @@ -95,7 +95,7 @@ cursor: default; /* Container for name and status, when status is failed */ div.step2-entry-container-info { padding: 3px; -border: 1px solid #AAA; +border: 1px solid #aaa; width: 99%; cursor: default; } diff --git a/html/themes/legacy/style.css b/html/themes/legacy/style.css index 3b06d336243196b4d739e8e97f0aef346828ce80..f94556b41a385bc85b60874a9f27ac1bd8321c2b 100644 --- a/html/themes/legacy/style.css +++ b/html/themes/legacy/style.css @@ -1,7 +1,7 @@ body { margin: 0; -background-color: #FFF; -color: #00008F; +background-color: #fff; +color: #00008f; font-family: arial,helvetica,sans-serif; font-size: 12px; } @@ -26,7 +26,7 @@ border: none; a:link { text-decoration: none; -color: #00008F; +color: #00008f; } a:visited { @@ -35,7 +35,7 @@ color: #00008f; } td.listfooter { -background: #E5E5E5; +background: #e5e5e5; border-top: 1px solid silver; padding: 3px; height: 16px; @@ -52,7 +52,7 @@ padding: 0; } div.scrollbody { -background-color: #FFF; +background-color: #fff; overflow: auto; text-align: left; } @@ -64,7 +64,7 @@ text-align: right; a.maintitlebar,div.maintitlebar { font-family: arial,helvetica,sans-serif; text-decoration: none; -/*color:#FFFFFF;*/ +/*color:#ffffff;*/ font-size: 12px; text-align: center; vertical-align: middle; @@ -93,12 +93,12 @@ background-color: #d2d2d2; } td.phonelist { -border-right: 1px solid #B0B0B0; +border-right: 1px solid #b0b0b0; } div.copynotice { border-style: solid; -border-color: #AAA; +border-color: #aaa; width: 100%; border-top-width: 1px; border-bottom-width: 0; @@ -117,7 +117,7 @@ text-align: left; hr { width: 100%; border: none; -background-color: #AAA; +background-color: #aaa; height: 1px; } @@ -197,13 +197,13 @@ border: 0; border-spacing: 0; padding: 0; margin: 0; -background-color: #507AAA; +background-color: #507aaa; vertical-align: top; } div.contentboxh { -background-color: #F0F0F0; -border: 1px solid #AAA; +background-color: #f0f0f0; +border: 1px solid #aaa; border-bottom: none; height: 26px; vertical-align: middle; @@ -235,8 +235,8 @@ margin: 1px; } .filter div.contentboxb > div { width: 100%; -background: #EEEEEE; -border-top: 1px solid #B0B0B0; +background: #eeeeee; +border-top: 1px solid #b0b0b0; text-align: right; margin: 0; padding: 3px; @@ -264,13 +264,13 @@ vertical-align: middle; a.alphaselect:hover { text-decoration: none; background-color: #a0a0a0; -color: #FFF; +color: #fff; } table.check { background-color: #e1e1f1; color: #000; -border: 1px solid #AAA; +border: 1px solid #aaa; width: 95%; } html.ltr table.check { @@ -281,10 +281,10 @@ margin-right: 20px; } html.ltr td.check { -border-right: 1px solid #AAA; +border-right: 1px solid #aaa; } html.rtl td.check { -border-left: 1px solid #AAA; +border-left: 1px solid #aaa; } option.select { @@ -303,17 +303,17 @@ padding-right: 20px; td.tbhead { -border-bottom: 1px solid #B0B0B0; +border-bottom: 1px solid #b0b0b0; } html.ltr td.tbhead { -border-right: 1px solid #B0B0B0; +border-right: 1px solid #b0b0b0; } html.rtl td.tbhead { -border-left: 1px solid #B0B0B0; +border-left: 1px solid #b0b0b0; } td.tbrhead { -border-bottom: 1px solid #B0B0B0; +border-bottom: 1px solid #b0b0b0; } .item { @@ -334,7 +334,7 @@ text-decoration: none; } .item :hover { -color: #FFF; +color: #fff; background-color: #4b6983; text-decoration: none; } @@ -342,7 +342,7 @@ text-decoration: none; .separator { background-color: red; border-top: 1px solid #c6c6bf; -border-bottom: 1px solid #FFF; +border-bottom: 1px solid #fff; margin: 2px 5px; /* top right bottom left */ height: 0; @@ -352,8 +352,8 @@ line-height: 0; div.autocomplete { position: absolute; -background-color: #FFF; -border: 1px solid #AAA; +background-color: #fff; +border: 1px solid #aaa; margin: 0; padding: 0; z-index: 600; @@ -383,25 +383,25 @@ padding-right: 4px; div.autocomplete li:hover { -background-color: #F0F0F0; +background-color: #f0f0f0; } div.autocomplete ul li.selected { -background-color: #F0F0F0; +background-color: #f0f0f0; } #pulldown { -background: #FFF; +background: #fff; height: 23px; -border-top: 1px #D0D0D0 solid; +border-top: 1px #d0d0d0 solid; border-bottom: 1px gray solid; } html.ltr #pulldown { -border-left: 1px #D0D0D0 solid; +border-left: 1px #d0d0d0 solid; border-right: 1px gray solid; } html.rtl #pulldown { -border-right: 1px #D0D0D0 solid; +border-right: 1px #d0d0d0 solid; border-left: 1px gray solid; } @@ -444,7 +444,7 @@ text-decoration: none; } #pulldown ul li.sep { -color: #AAA; +color: #aaa; padding: .8em 0 .5em; } @@ -459,11 +459,11 @@ position: absolute; top: 0; left: 0; visibility: hidden; -border-top: 1px #D0D0D0 solid; -border-left: 1px #D0D0D0 solid; +border-top: 1px #d0d0d0 solid; +border-left: 1px #d0d0d0 solid; border-bottom: 1px gray solid; border-right: 1px gray solid; -background: #FFF; +background: #fff; } #pulldown ul ul li { @@ -480,7 +480,7 @@ padding: 5px 9px 5px 5px; #pulldown ul ul li a:hover { font-weight: normal; -background-color: #418DD4; +background-color: #418dd4; background-image: none; } @@ -490,7 +490,7 @@ font-style: italic; } span.mark { -color: #B22; +color: #b22; } #debug-handling { diff --git a/html/themes/legacy/tabs.css b/html/themes/legacy/tabs.css index 096c7dfa9bbc424a87a1468c30ab3d2b9631d61c..834ee3602468785f697d24bd6b224301f9eeb3d5 100644 --- a/html/themes/legacy/tabs.css +++ b/html/themes/legacy/tabs.css @@ -4,7 +4,7 @@ border: none; border-spacing: 0; font-family: arial,helvetica,sans-serif; text-decoration: none; -color: #00008F; +color: #00008f; font-size: 13px; font-weight: bold; } @@ -24,7 +24,7 @@ table.tabs-header > tbody > tr > td > div > a { display: inline-block; border-radius: 5px 5px 0 0; text-align: center; -background-color: #D0D0D0; +background-color: #d0d0d0; border: 1px solid #999; margin-top: 5px; padding-top: 1px; @@ -95,9 +95,9 @@ border-bottom: 1px solid #999; div.tab-content { padding: 4px; width: auto; -background-color: #F8F8F8; +background-color: #f8f8f8; border-style: solid; -border-color: #AAA; +border-color: #aaa; border-top-width: 0; border-bottom-width: 1px; border-left-width: 1px; diff --git a/ihtml/themes/breezy/acl.tpl b/ihtml/themes/breezy/acl.tpl deleted file mode 100644 index 473fc121765e52bbc5fb144f3353c52f20ae71a2..0000000000000000000000000000000000000000 --- a/ihtml/themes/breezy/acl.tpl +++ /dev/null @@ -1,142 +0,0 @@ -{if !$acl_readable} - - <h2>{msgPool type=permView}</h2> - -{else} - {if $dialogState eq 'head'} - <h1>{t}Assigned ACL for current entry{/t}</h1> - {$aclList} - - - {if $acl_createable} - <input type="submit" name="new_acl" value="{t}New ACL{/t}" > - {/if} - {/if} - - {if $dialogState eq 'create'} - <h1>{t}ACL type{/t} - {if !$acl_writeable} - <select size="1" name="dummy_t" title="{t}Select an acl type{/t}" disabled> - {html_options options=$aclTypes selected=$aclType} - <option disabled> </option> - </select> - {else} - <select size="1" name="aclType" title="{t}Select an acl type{/t}" onChange="document.mainform.submit()"> - {html_options options=$aclTypes selected=$aclType} - <option disabled> </option> - </select> - {/if} - </h1> - - <hr/> - <div style='padding:3px;'> - {t}Additional filter options{/t} - {if !$acl_writeable} - <input type='text' value='{$aclFilter}' disabled name='dummy_f' style='width:600px;'> - {else} - <input type='text' value='{$aclFilter}' name='aclFilter' style='width:600px;'> - {/if} - </div> - - <table style="width:100%"> - <tr> - <td style="width:48%; vertical-align:top;"> - {t}Use members from{/t} - <select name="target" onChange="document.mainform.submit()"> - {html_options options=$targets selected=$target} - <option disabled> </option> - </select> - <br><br> - </td> - <td> - </td> - <td> - </td> - </tr> - <tr> - <td style="width:48%"> - {t}Available members{/t}<br> - {if !$acl_writeable} - <select style="width:100%;height:180px;" disabled name="dummy_s[]" size="20" multiple title="{t}List message possible targets{/t}"> - {html_options options=$sources} - <option disabled> </option> - </select> - {else} - <select style="width:100%;height:180px;" name="source[]" size="20" multiple title="{t}List message possible targets{/t}"> - {html_options options=$sources} - <option disabled> </option> - </select> - {/if} - </td> - <td style="vertical-align:center; text-align:center"> - {if $acl_writeable} - <input type="submit" value=">" name="add"> - <br><br> - <input type="submit" value="<" name="del"> - {/if} - </td> - <td style="width:48%; vertical-align:top;"> - {t}Members{/t}<br> - {if !$acl_writeable} - <select style="width:100%;height:180px;" disabled name="dummy_r[]" size="20" multiple title="{t}List message recipients{/t}"> - {html_options options=$recipients} - <option disabled> </option> - </select> - - {else} - <select style="width:100%;height:180px;" name="recipient[]" size="20" multiple title="{t}List message recipients{/t}"> - {html_options options=$recipients} - <option disabled> </option> - </select> - {/if} - </td> - </tr> - </table> - - {if $aclType ne 'reset'} - {if $aclType ne 'role'} - {if $aclType ne 'base'} - <hr/> - - <h1>{t}List of available ACL categories{/t}</h1> - {$aclList} - {/if} - {/if} - {/if} - - {if $aclType eq 'base'} - <hr/> - <h1>{t}ACL for this object{/t}</h1> - {$aclSelector} - {/if} - - {if $aclType eq 'role'} - <hr/> - <h1>{t}Available roles{/t}</h1> - {$roleSelector} - {/if} - - <hr/> - <div style='text-align:right;margin-top:5px'> - {if $acl_writeable} - <input type="submit" name="submit_new_acl" value="{t}Apply{/t}"> - - {/if} - <input type="submit" name="cancel_new_acl" value="{t}Cancel{/t}"> - </div> - {/if} - - {if $dialogState eq 'edit'} - - <h1>{$headline}</h1> - - {$aclSelector} - - <hr/> - <div style='text-align:right;margin-top:5px'> - <input type="submit" name="submit_edit_acl" value="{t}Apply{/t}"> - - <input type="submit" name="cancel_edit_acl" value="{t}Cancel{/t}"> - </div> - {/if} -{/if} diff --git a/ihtml/themes/breezy/copyPasteDialog.tpl b/ihtml/themes/breezy/copyPasteDialog.tpl deleted file mode 100644 index fe36f22cda2bb7d6451656dcab0a4f6fdc9bf744..0000000000000000000000000000000000000000 --- a/ihtml/themes/breezy/copyPasteDialog.tpl +++ /dev/null @@ -1,34 +0,0 @@ -<h2>{t}Copy & paste wizard{/t}</h2> - -<b>{$message}</b> -<br> -<br> -{if $Complete == false} - {t}Some values need to be unique in the complete directory while some combinations make no sense. FusionDirectory shows the relevant attributes. Please maintain the values below to fulfill the policies.{/t} - <br> -{t}Remember that some properties like taken snapshots will not be copied!{/t} -{t}Or if you copy or cut an entry within FusionDirectory and delete the source object, you may get errors while pasting this object again!{/t} - - <hr/> - <br> - {$AttributesToFix} - {if $SubDialog == false} - <br> - - <div style='text-align:right;width:100%;'> - <input type="submit" name="PerformCopyPaste" value="{t}Save{/t}"> - {if $type == "modified"} - <input type="submit" name="abort_current_cut-copy_operation" value="{t}Cancel{/t}"> - {/if} - - <input type="submit" name="abort_all_cut-copy_operations" value="{t}Cancel all{/t}"> - </div> - {/if} -{else} - <hr/> - <br> - <h2>{t}Operation complete{/t}</h2> - <div style="text-align:right;width:100%;"> - <input type="submit" name="Back" value="{t}Finish{/t}"> - </div> -{/if} diff --git a/ihtml/themes/breezy/remove.tpl b/ihtml/themes/breezy/remove.tpl deleted file mode 100644 index c3cbaf13b685ac7a65fcbb03a6f85d91947e45c0..0000000000000000000000000000000000000000 --- a/ihtml/themes/breezy/remove.tpl +++ /dev/null @@ -1,16 +0,0 @@ -<div style="font-size:18px;"> - <img alt="" src="geticon.php?context=status&icon=dialog-warning&size=32" class="center"/> {t}Warning{/t} -</div> -<p> - {$intro} - {t}This may be used by several groups. Please double check if you really want to do this since there is no way for FusionDirectory to get your data back.{/t} -</p> -<p> - {t}So - if you're sure - press 'Delete' to continue or 'Cancel' to abort.{/t} -</p> - -<p class="plugbottom"> - <input type="submit" name="delete_confirm" value="{msgPool type=delButton}"/> - - <input type="submit" name="delete_cancel" value="{msgPool type=cancelButton}"/> -</p> diff --git a/ihtml/themes/breezy/simpleplugin.tpl b/ihtml/themes/breezy/simpleplugin.tpl index aa9cb63975e8932a6cde51c1050e3a125b7fef0d..c51a181b3e5e15310e292bf4af7c877068ca2180 100644 --- a/ihtml/themes/breezy/simpleplugin.tpl +++ b/ihtml/themes/breezy/simpleplugin.tpl @@ -12,9 +12,11 @@ <input name="{$hiddenPostedInput}" value="1" type="hidden"/> {/if} -<!-- Place cursor --> -<script type="text/javascript"> - <!-- // First input field on page - focus_field('{$focusedField}'); - --> -</script> +{if isset($focusedField)} + <!-- Place cursor --> + <script type="text/javascript"> + <!-- // First input field on page + focus_field('{$focusedField}'); + --> + </script> +{/if} diff --git a/include/class_IconTheme.inc b/include/class_IconTheme.inc index ea416e0b454e7ca579d45016e3955af79637348f..5be5c0c6aeb67a0443701be7f125fcfbecfe9e2f 100644 --- a/include/class_IconTheme.inc +++ b/include/class_IconTheme.inc @@ -374,6 +374,9 @@ class IconTheme array('applications','os-windows'), array('applications','windows'), ), + 'devices/template' => array( + array('actions','document-new'), + ), 'status/object-locked' => array( array('status','changes-prevent'), ), @@ -381,7 +384,7 @@ class IconTheme array('status','changes-allow'), ), 'status/task-waiting' => array( - array('status','task-schedule'), + array('actions','task-schedule'), ), 'places/folder-network' => array( array('places','folder-remote'), diff --git a/include/class_config.inc b/include/class_config.inc index d63109e729f238cddf34e701199bdd3a13abf577..5abea57a113a2a41f21e0967a6bb9f7b44018554 100644 --- a/include/class_config.inc +++ b/include/class_config.inc @@ -398,10 +398,6 @@ class config /* Load in-ldap configuration */ $this->load_inldap_config(); - /* Remove possibly added ',' from end of group and people ou */ - $this->current['GROUPRDN'] = preg_replace("/,*$/", "", $this->current['GROUPRDN']); - $this->current['USERRDN'] = preg_replace("/,*$/", "", $this->current['USERRDN']); - /* We update LDAPSIZELIMIT as it may have been changed by ldap config */ session::global_set('size_limit', $this->current['LDAPSIZELIMIT']); @@ -984,6 +980,7 @@ class config $this->data['OBJECTS'][$obj]['management'] = $class; if (isset($class::$skipTemplates) && ($class::$skipTemplates == FALSE)) { $this->data['OBJECTS'][$obj]['templateActive'] = TRUE; + $this->data['CATEGORIES'][$cat]['classes'][] = 'template'; } } } diff --git a/include/class_objects.inc b/include/class_objects.inc index 9acf7d62675d419b386bcc60ca31e92968a6b110..fe2483c73f920572e128d098cc99d5e35b334cb0 100644 --- a/include/class_objects.inc +++ b/include/class_objects.inc @@ -125,7 +125,7 @@ class objects return $ldap->count(); } - private static function search ($types, $search_attrs, $ou = NULL, $filter = '', $scope = 'subtree') + private static function search ($types, $search_attrs, $ou = NULL, $filter = '', $scope = 'subtree', $templateSearch = FALSE) { global $config; @@ -162,6 +162,16 @@ class objects } $filter = '(&'.$filter.'(|'.implode($typeFilters).'))'; } + if ($templateSearch) { + $templateFilterObject = new ldapFilter( + '&', + array( + new ldapFilterLeaf('objectClass', '=', 'fdTemplate'), + fdTemplateFilter(ldapFilter::parse($filter)), + ) + ); + $filter = "$templateFilterObject"; + } $ldap->cd($ou); $ldap->search($filter, $search_attrs, $scope); if (!$ldap->success()) { @@ -276,7 +286,7 @@ class objects /* !\brief This method returns a list of all available templates for the given type */ - static function getTemplates ($type, $requiredPermissions = 'r') + static function getTemplates ($type, $requiredPermissions = 'r', $filter = '') { global $config, $ui; @@ -286,9 +296,11 @@ class objects $ldap = $config->get_ldap_link(); foreach ($config->departments as $key => $value) { // Search all templates from the current dn. - $ldap->cd($infos['ou'].$value); - // We could also adapt object filter to match templates - $ldap->search('(objectClass=fdTemplate)', array('cn')); + try { + $ldap = static::search($type, array('cn'), $infos['ou'].$value, $filter, 'subtree', TRUE); + } catch (NonExistingBranchException $e) { + continue; + } if ($ldap->count() != 0) { while ($attrs = $ldap->fetch()) { $dn = $attrs['dn']; diff --git a/include/class_pluglist.inc b/include/class_pluglist.inc index c8248aa3a9b0de02d22e223e67befd164c592fa2..974580ead2de819207ad130cbc659f9ec97c83e3 100644 --- a/include/class_pluglist.inc +++ b/include/class_pluglist.inc @@ -62,6 +62,8 @@ class pluglist { /* Fill info part of pluglist */ $classes = get_declared_classes(); + /* To avoid plugins changing index when reloading */ + sort($classes); $index = 0; $depends_infos = array(); @@ -477,16 +479,6 @@ class pluglist { return isset($this->allowed_plugins[$plug_id]); } - - /*! - * \brief Force the menu to be recreated - */ - function reset_menus() - { - $this->menu = ""; - $this->iconmenu = ""; - } - static function pluginInfos($cname) { $plist = session::global_get('plist'); diff --git a/include/class_template.inc b/include/class_template.inc index c6ba99e999aa64fa38e7a39de60ca0b43eaa07aa..20170011ec5d900e3e8bf29f624dff2e04f80681 100644 --- a/include/class_template.inc +++ b/include/class_template.inc @@ -40,7 +40,8 @@ class template return array( 'plShortName' => _('Template'), 'plDescription' => _('Object template, used to create several objects with similar values'), - 'plCategory' => array('user'), + /* Categories for templates are computed in config class */ + 'plCategory' => array(), 'plProvidedAcls' => array( 'template_cn' => _('Template name') @@ -48,6 +49,23 @@ class template ); } + static function getTemplatedTypes() + { + $result = array(); + $types = objects::types(); + foreach ($types as $type) { + if (in_array($type, departmentManagement::getDepartmentTypes())) { + continue; + } + $infos = objects::infos($type); + if ($infos['templateActive']) { + $result[$type] = $infos['name']; + } + } + asort($result); + return $result; + } + function __construct($type, $dn, $targetdn = NULL) { $this->type = $type; diff --git a/include/class_templateHandling.inc b/include/class_templateHandling.inc index c40bb6053ac4eaaa9405715aba3e1e5d4add5553..6752459c402ab58f7f59b02967b99d8e592c1095 100644 --- a/include/class_templateHandling.inc +++ b/include/class_templateHandling.inc @@ -379,15 +379,15 @@ class templateHandling { mb_internal_encoding('UTF-8'); mb_regex_encoding('UTF-8'); - if (is_array($str) && (strtolower($m) == $m)) { + if (is_array($str) && (!is_numeric($m)) && (strtolower($m) == $m)) { /* $str is an array and $m is lowercase, so it's a string modifier */ - $str = $str[0]; + $str = reset($str); } $result = array($str); switch ($m) { case 'F': // First - $result = array($str[0]); + $result = array(reset($str)); break; case 'L': // Last @@ -405,6 +405,22 @@ class templateHandling // Count $result = array(count($str)); break; + case 'M': + // Match + if (count($args) < 1) { + trigger_error('Missing "M" match modifier parameter'); + $args[] = '/.*/'; + } + $result = array(array_filter($str, function ($s) use ($args) { return preg_match($args[0], $s); })); + break; + case '4': + // IPv4 + $result = array(array_filter($str, 'tests::is_ipv4')); + break; + case '6': + // IPv6 + $result = array(array_filter($str, 'tests::is_ipv6')); + break; case 'c': // comment $result = array(''); diff --git a/include/functions.inc b/include/functions.inc index a120472697cca7ed6080fa00ac1e67958048da74..812bef3f77d820f6181ae07e54d5517c09476c21 100644 --- a/include/functions.inc +++ b/include/functions.inc @@ -159,7 +159,7 @@ function plugin_available($plugin) */ function load_plist ($ldap_available = TRUE) { - global $config; + global $config, $plist; if (!session::global_is_set('plist')) { /* Initially load all classes */ load_all_classes(); @@ -1116,17 +1116,6 @@ function get_people_ou() return get_ou('userRDN'); } -/*! \brief Get the OU for groups - * - * Function for getting the groupRDN - * - * \return the ou of the groupRDN - */ -function get_groups_ou() -{ - return get_ou('groupRDN'); -} - /*! \brief Return a base from a given user DN * * \code @@ -1328,8 +1317,8 @@ function dn2base($dn, $ou = NULL) if (get_people_ou() != '') { $dn = preg_replace('/,'.get_people_ou().'/i', ',', $dn); } - if (get_groups_ou() != '') { - $dn = preg_replace('/,'.get_groups_ou().'/i', ',', $dn); + if (get_ou('groupRDN') != '') { + $dn = preg_replace('/,'.get_ou('groupRDN').'/i', ',', $dn); } } else { $dn = preg_replace("/,$ou/i", ',', $dn); @@ -2581,15 +2570,16 @@ function initLanguage($lang = NULL) $ret = FALSE; - /* Reset menu cache if language changed */ + /* Reset plist cache if language changed */ if ((!session::global_is_set('lang')) || (session::global_get('lang') != $lang)) { $ret = TRUE; if (session::global_is_set('plist')) { if ($_SERVER['REQUEST_METHOD'] != 'POST') { - @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, session::global_get('lang'), 'Plist already loaded with language '); + @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, session::global_get('lang'), 'Plist already loaded with language'); } - $plist = session::global_get('plist'); - $plist->reset_menus(); + session::global_un_set('plist'); + session::global_set('lang', $lang); + load_plist(); } } diff --git a/include/select/objectSelect/class_objectSelect.inc b/include/select/objectSelect/class_objectSelect.inc index 792199c7f0ea0244420a3c93a6b59aa945b1cb59..dd9761f9988d05648ab25b2f3d1496470a827085 100644 --- a/include/select/objectSelect/class_objectSelect.inc +++ b/include/select/objectSelect/class_objectSelect.inc @@ -22,8 +22,10 @@ class objectSelect extends userSelect { protected $objectTypes = array( - 'user', 'application', 'terminal', 'workstation', - 'winstation', 'server', 'printer', 'phone', 'simpleSecurityObject' + 'user', 'ogroup', + 'application', + 'terminal', 'workstation', 'server', 'printer', 'phone', + 'simpleSecurityObject' ); protected $autoFilterAttributes = array('dn', 'cn', 'uid', 'description'); } diff --git a/include/simpleplugin/attributes/class_CompositeAttribute.inc b/include/simpleplugin/attributes/class_CompositeAttribute.inc index cbe332fa04a67a5ce7abb716266083a1728f2c35..522a14f539e0dc451ca9232322398e41eda01c7b 100644 --- a/include/simpleplugin/attributes/class_CompositeAttribute.inc +++ b/include/simpleplugin/attributes/class_CompositeAttribute.inc @@ -144,6 +144,7 @@ class CompositeAttribute extends Attribute function loadPostValue () { foreach ($this->attributes as &$attribute) { + $attribute->setDisabled($this->disabled); $attribute->loadPostValue(); } unset($attribute); @@ -152,6 +153,7 @@ class CompositeAttribute extends Attribute function applyPostValue () { foreach ($this->attributes as &$attribute) { + $attribute->setDisabled($this->disabled); $attribute->applyPostValue(); } unset($attribute); diff --git a/include/simpleplugin/attributes/class_SelectAttribute.inc b/include/simpleplugin/attributes/class_SelectAttribute.inc index 50156bd67880693ad999b18ef1a3c0faec513995..e288bbbe7e6c1f6acc809328f5a88621ce4fdb54 100644 --- a/include/simpleplugin/attributes/class_SelectAttribute.inc +++ b/include/simpleplugin/attributes/class_SelectAttribute.inc @@ -85,6 +85,7 @@ class SelectAttribute extends Attribute function setDisplayChoices ($values) { $this->outputs = array(); + $values = array_values($values); $i = 0; foreach ($this->choices as $choice) { $this->outputs[$choice] = $values[$i++]; @@ -98,6 +99,13 @@ class SelectAttribute extends Attribute return $this->choices; } + /*! \brief Get the displayed choices (keys are choices) + */ + function getDisplayChoices () + { + return $this->outputs; + } + function setRequired ($bool) { parent::setRequired($bool); diff --git a/include/simpleplugin/class_Attribute.inc b/include/simpleplugin/class_Attribute.inc index 5e6328658d443e8c4ceb871e8f01f89458b21e3b..146a414b0fce2b9a44f0f7d6e7be97482e3f24e4 100644 --- a/include/simpleplugin/class_Attribute.inc +++ b/include/simpleplugin/class_Attribute.inc @@ -38,6 +38,7 @@ class Attribute private $required; /* \brief Should this attribute be saved into the LDAP */ private $inLdap = TRUE; + /* \brief Should this attribute be unique * FALSE -> no unicity check * one -> unicity check in the same base -> broken right now because of object ous @@ -47,6 +48,10 @@ class Attribute */ private $unique = FALSE; + /* \brief Filter to use when checking unicity + * Most of the time this is NULL and filter is computed from plugin objectTypes and objectClasses */ + private $uniqueFilter = NULL; + /* \brief Prefix for the html id */ protected $htmlid_prefix = ''; /* \brief Should this attribute be shown */ @@ -124,13 +129,14 @@ class Attribute return $this->visible; } - function setUnique ($unique) + function setUnique ($unique, $filter = NULL) { if ($unique === TRUE) { $this->unique = 'one'; } else { $this->unique = $unique; } + $this->uniqueFilter = $filter; } function getUnique () @@ -458,25 +464,29 @@ class Attribute $filter = '('.$this->getLdapName().'='.ldap_escape_f($value).')'; } $infos = pluglist::pluginInfos(get_class($this->plugin)); - $filters = array_map( - function ($key, $ot) - { - if (!is_numeric($key)) { - $ot = $key; - } - try { - $oinfos = objects::infos($ot); - return $oinfos['filter']; - } catch (NonExistingObjectTypeException $e) { - return ''; - } - }, - array_keys($infos['plObjectType']), - array_values($infos['plObjectType']) - ); - $pluginFilter = $this->plugin->getObjectClassFilter(); - if (!empty($pluginFilter)) { - $filters[] = $pluginFilter; + if ($this->uniqueFilter === NULL) { + $filters = array_map( + function ($key, $ot) + { + if (!is_numeric($key)) { + $ot = $key; + } + try { + $oinfos = objects::infos($ot); + return $oinfos['filter']; + } catch (NonExistingObjectTypeException $e) { + return ''; + } + }, + array_keys($infos['plObjectType']), + array_values($infos['plObjectType']) + ); + $pluginFilter = $this->plugin->getObjectClassFilter(); + if (!empty($pluginFilter)) { + $filters[] = $pluginFilter; + } + } else { + $filters = array($this->uniqueFilter); } $filter = '(&'.$filter.implode($filters).')'; $ldap->search($filter, array($this->getLdapName())); @@ -515,7 +525,7 @@ class Attribute break; } } - } else { /* whole (or sub) */ + } elseif ($this->uniqueFilter === NULL) { /* whole (or sub) */ /* Check that this entry is in a concerned branch */ foreach ($branches as $branch) { if (preg_match('/^'.preg_quote($branch, '/').'/', $dn_base)) { @@ -527,6 +537,8 @@ class Attribute if (!in_array($dn_base, $config->departments)) { continue; } + } else { + $found = TRUE; } if (!$found) { continue; diff --git a/include/simpleplugin/class_simpleManagement.inc b/include/simpleplugin/class_simpleManagement.inc index a2a23fd955ef394dbdbe568986ce7733729b564e..10e1de5171e71bf27c9aca9b9da38356d940b37b 100644 --- a/include/simpleplugin/class_simpleManagement.inc +++ b/include/simpleplugin/class_simpleManagement.inc @@ -278,7 +278,7 @@ class simpleManagement $this->headpage->xmlData['actionmenu']['action'][0]['action'] = array( array( 'type' => 'sub', - 'image' => 'geticon.php?context=actions&icon=document-new&size=16', + 'image' => 'geticon.php?context=devices&icon=template&size=16', 'label' => _('Template'), 'action' => array(), ), @@ -316,7 +316,7 @@ class simpleManagement 'label' => sprintf(_('%s template'), $i['name']), 'category' => $i['aclCategory'], 'class' => 'template', - 'image' => $i['icon'], + 'image' => 'geticon.php?context=devices&icon=template&size=16', 'filter' => new ldapFilter( '&', @@ -355,7 +355,7 @@ class simpleManagement 'type' => 'entry', 'image' => $icon, 'label' => $i['name'], - 'acl' => $i['aclCategory'].'/'.$i['mainTab'].'[c]', + 'acl' => $i['aclCategory'].'/template[c]', ); $this->headpage->xmlData['actionmenu']['action'][0]['action'][1]['action'][] = array( 'name' => 'template_apply_'.$object, diff --git a/include/simpleplugin/class_simplePlugin.inc b/include/simpleplugin/class_simplePlugin.inc index eced6906349253acc977f396ffc04e7dd82559f0..a09f7317b4dc168fc76674010751434d39ab0326 100644 --- a/include/simpleplugin/class_simplePlugin.inc +++ b/include/simpleplugin/class_simplePlugin.inc @@ -701,7 +701,7 @@ class simplePlugin } else { if (isset($plInfo['plDepends'])) { foreach ($plInfo['plDepends'] as $plugin) { - if (!isset($this->parent->by_object[$plugin]) || + if (isset($this->parent->by_object[$plugin]) && !$this->parent->by_object[$plugin]->is_account) { $disabled = TRUE; $dependPlInfos = pluglist::pluginInfos($plugin); @@ -942,6 +942,9 @@ class simplePlugin /*! \brief Get the acl permissions for an attribute or the plugin itself */ function aclGetPermissions($attribute = '0', $base = NULL, $skipWrite = FALSE) { + if (isset($this->parent) && isset($this->parent->ignoreAcls) && $this->parent->ignoreAcls) { + return 'cdmr'.($skipWrite ? '' : 'w'); + } $ui = get_userinfo(); $skipWrite |= $this->readOnly(); if ($base === NULL) { diff --git a/include/simpleplugin/class_simpleTabs.inc b/include/simpleplugin/class_simpleTabs.inc index eac23ff644bf384dc2e9ef327e3c424ca42e889d..02bd7bf91a04c843fe74a0de9b0e899a15c250d6 100644 --- a/include/simpleplugin/class_simpleTabs.inc +++ b/include/simpleplugin/class_simpleTabs.inc @@ -49,6 +49,8 @@ class simpleTabs var $baseclass = ""; + public $ignoreAcls = FALSE; + /*! * \brief Tabs classes constructor * */ @@ -512,6 +514,11 @@ class simpleTabs unset($obj); } + public function setIgnoreAcls($bool) + { + $this->ignoreAcls = $bool; + } + public function dialogOpened () { return $this->by_object[$this->current]->is_modal_dialog(); diff --git a/include/variables_common.inc b/include/variables_common.inc index cea9bd184cdbafac719284392ce0e2e10a37747b..30c46e1f89038aa974b39d9c5f0f3bd861820028 100644 --- a/include/variables_common.inc +++ b/include/variables_common.inc @@ -2,7 +2,7 @@ /* This code is part of FusionDirectory (http://www.fusiondirectory.org/) Copyright (C) 2003-2010 Cajus Pollmeier - Copyright (C) 2011-2016 FusionDirectory + Copyright (C) 2011-2017 FusionDirectory 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 @@ -63,7 +63,7 @@ define("FPDF_FONTPATH", "/usr/share/php/fpdf/font/"); /*! Define fpdf font path /*! * \brief FusionDirectory Version */ -define ("FD_VERSION", "1.1.1"); /*! Define FusionDirectory version */ +define ("FD_VERSION", "1.2"); /*! Define FusionDirectory version */ /*! * \brief FusionDirectory config object RDN diff --git a/locale/ar/fusiondirectory.po b/locale/ar/fusiondirectory.po index 265e23b640a4a6fdad68bfc1cb944383d33f1be1..df3f3602fb94112c84b8568e6bf2a25c4e648489 100644 --- a/locale/ar/fusiondirectory.po +++ b/locale/ar/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "تØذير" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -910,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1952,7 +1945,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1994,13 +1987,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2011,7 +2004,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2047,51 +2040,51 @@ msgstr "" msgid "Remove" msgstr "إزالة" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2163,38 +2156,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2204,7 +2197,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2545,22 +2538,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2578,7 +2571,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2619,7 +2611,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "الإسم العائلي" @@ -2628,7 +2619,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "الإسم الأول" @@ -2835,53 +2825,53 @@ msgstr "" msgid "Postal code" msgstr "الرقم البريدي" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3431,179 +3421,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3630,7 +3612,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4197,7 +4179,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4249,7 +4230,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4628,7 +4608,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4686,85 +4665,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4783,44 +4687,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/ca/fusiondirectory.po b/locale/ca/fusiondirectory.po index d99c49c64dc5254dd1e624fcd0b471e07e6be9ce..53cd7fb3fad7494717f673e2fb5fdcdf741089e2 100644 --- a/locale/ca/fusiondirectory.po +++ b/locale/ca/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "AvÃs" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Finalitza" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Error de la configuració" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "CanceÅ€la-ho tot" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Entrada" @@ -910,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nom de la plantilla" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "El meu compte" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "CanceÅ€la" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Aplica" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Desa" @@ -1954,7 +1947,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1996,13 +1989,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2013,7 +2006,7 @@ msgstr "Grup de l'usuari" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2049,51 +2042,51 @@ msgstr "" msgid "Remove" msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2165,38 +2158,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2206,7 +2199,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2550,22 +2543,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2583,7 +2576,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Contrasenya" @@ -2624,7 +2616,6 @@ msgid "Personal information" msgstr "Informació personal" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Cognoms" @@ -2633,7 +2624,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Nom" @@ -2840,53 +2830,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Contrasenya nova" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "La contrasenya nova i l'actual són massa similars." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3436,179 +3426,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3635,7 +3617,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4202,7 +4184,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4254,7 +4235,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4633,7 +4613,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4691,85 +4670,10 @@ msgstr "" msgid "Read only" msgstr "Només lectura" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "S'ha completat l'operació" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "ACL nou" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Tipus d'ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4788,44 +4692,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Parà metres de l'usuari" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Neteja la contrasenya" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Estableix una contrasenya nova" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Imatge personal" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Imatge de l'usuari" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Suprimeix la imatge" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/cs_CZ/fusiondirectory.po b/locale/cs_CZ/fusiondirectory.po index 073f6b1d929d1de692fc03f185226a34a31e5871..244c123498154b8f5b87fe74d4760b7f778a08f4 100644 --- a/locale/cs_CZ/fusiondirectory.po +++ b/locale/cs_CZ/fusiondirectory.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" +"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2017\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +42,7 @@ msgstr "" "nastavenà může být pÅ™ebito." #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "automaticky" @@ -184,8 +184,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "varovánÃ" @@ -207,7 +206,6 @@ msgid "Welcome" msgstr "vÃtejte" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "dokonÄit" @@ -248,8 +246,8 @@ msgstr "kontroly PHP a jeho rozÅ¡iÅ™ujÃcÃch modulů" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" -msgstr "Nastavenà PHP (<a href=\"?info\" target=\"_blank\">zobrazit informace)</a>)" +"information</a>)" +msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 msgid "Installation check" @@ -750,8 +748,8 @@ msgstr "uvÃtacà zpráva" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -813,7 +811,7 @@ msgstr "vybrat vÅ¡e" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -915,7 +913,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "chyba v nastavenÃ" @@ -954,7 +952,6 @@ msgid "Permission" msgstr "oprávnÄ›nÃ" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "zruÅ¡it vÅ¡e" @@ -966,7 +963,6 @@ msgstr "nemohu vložit" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "uživatelské jméno" @@ -983,7 +979,7 @@ msgstr "Å¡ablona" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "název Å¡ablony" @@ -1003,7 +999,7 @@ msgstr "" "spuÅ¡tÄ›nÃm '%s' --update-cache (na serveru) a restartujte svůj webový " "prohlÞeÄ" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1085,69 +1081,69 @@ msgstr "nastavit" msgid "incomplete" msgstr "neúplné" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "pÅ™esto pokraÄovat" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "pÅ™esto upravit" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "chystáte se upravit položky LDAPu %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sB" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "%sKiB" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "%sMiB" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "%sGiB" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "%sTiB" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "%sPiB" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "%sEiB" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "%sZiB" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "%sYiB" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1156,60 +1152,60 @@ msgstr "" "Soubor %s nebylo možné smazat. Zkuste opravit pÅ™Ãstupová práva spuÅ¡tÄ›nÃm " "pÅ™Ãkazu fusiondirectory-setup --check-directories" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "Nelze zapsat do souboru s revizemi!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "varovánà LDAPu" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Nedařà se zÃskat informace o schématech ze serveru. Schémata proto nelze " "ověřit!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "dostupné tÅ™Ãdy" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." @@ -1217,7 +1213,7 @@ msgstr "" "Zásuvný modul smÃÅ¡ených skupin je nainstalován, ale vaÅ¡e nastavenà schématu " "ho nepodporuje." -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" @@ -1225,7 +1221,7 @@ msgstr "" "Aby bylo možné použÃt smÃÅ¡ené skupiny v objectClass posixGroup, je tÅ™eba aby" " byly POMOCNÉ" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." @@ -1233,17 +1229,17 @@ msgstr "" "StávajÃcà schéma je nastaveno pro smÃÅ¡ené skupiny, ale nenà pÅ™Ãtomen " "pÅ™ÃsluÅ¡ný zásuvný modul." -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "Je tÅ™eba, aby ObjectClass posixGroup bylo STRUKTURÃLNÃ" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Nemohu nalézt soubor '%s' – opravte to prosÃm spuÅ¡tÄ›nÃm '%s' (na serveru)." -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "vÅ¡echny objekty v této kategorii" @@ -1277,25 +1273,25 @@ msgstr "Nedařà se pÅ™ihlášenà do LDAPu. Kontaktujte prosÃm správce systé msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "vÅ¡echny kategorie" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "můj úÄet" @@ -1569,19 +1565,16 @@ msgstr "ChybÄ›jÃcà rozÅ¡ÃÅ™enà PHP %s!" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "zruÅ¡it" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "použÃt" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "uložit" @@ -2067,7 +2060,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2109,13 +2102,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "Role %s" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "Skupina %s" @@ -2126,7 +2119,7 @@ msgstr "skupina uživatelů" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "žádné" @@ -2162,51 +2155,51 @@ msgstr "upravit" msgid "Remove" msgstr "odebrat" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KiB" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MiB" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GiB" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TiB" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "vteÅ™iny" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "minuty" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "hodiny" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "dny" @@ -2281,38 +2274,38 @@ msgstr "" "Nedařà se spoÄÃtat dn: nedařà se nalézt objectType informace z panelu tÅ™Ãdy " "%s" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "Položka s takovým rozliÅ¡eným názvem již existuje: %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "Položka %s neexistuje" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "Panel %s" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2322,7 +2315,7 @@ msgstr "%s (vyžadováno)" msgid "Object base" msgstr "Základ objektu" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2682,22 +2675,22 @@ msgstr "VÃtejte, %s!" msgid "References" msgstr "odkazy" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "Skupiny a role" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "Upravit skupiny a role uživatele" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "ÄŒlenstvà ve skupinách" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "ÄŒlenstvà v rolÃch" @@ -2715,7 +2708,6 @@ msgstr "Metoda otisku hesla" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "heslo" @@ -2756,7 +2748,6 @@ msgid "Personal information" msgstr "osobnà informace" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "pÅ™ÃjmenÃ" @@ -2765,7 +2756,6 @@ msgid "Last name of this user" msgstr "PÅ™Ãjmenà uživatele" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "jméno" @@ -2975,54 +2965,54 @@ msgstr "" msgid "Postal code" msgstr "PoÅ¡tovnà smÄ›rovacà ÄÃslo (PSÄŒ)" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "Ppolicy %s nebyla nalezena v LDAP!" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "Nejste oprávnÄ›ni ke zmÄ›nÄ› svého hesla" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" "Je tÅ™eba, abyste poÄkali %d sekund než budete moci znovu mÄ›nit své heslo" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "Toto heslo už bylo nedávno použito" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "Bylo zadáno naprosto stejné heslo, jako je to stávajÃcÃ" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Pro pokraÄovánà je tÅ™eba zadat své stávajÃcà heslo." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "Zadánà v kolonkách Nové heslo a Zopakovánà nového hesla se neshodujÃ." -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "nové heslo" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "Nové a staré heslo jsou si pÅ™ÃliÅ¡ podobné." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" "Heslo obsahuje znaky, které mohou být problematické (napÅ™. se nenacházejà " @@ -3601,59 +3591,51 @@ msgid "The branch where users are stored." msgstr "VÄ›tev, ve které jsou uloženi uživatelé." #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "Relativnà rozliÅ¡ený název skupin" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "VÄ›tev, ve které jsou uloženy skupiny." - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "Relativnà rozliÅ¡ený název ACL úlohy" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "VÄ›tev, ve které jsou uloženy ACL úlohy." -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "diagnostika" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Zobrazit chyby" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." @@ -3661,11 +3643,11 @@ msgstr "" "V hornà Äásti obrazovky vypisuje chyby, ke kterým doÅ¡lo v PHP. V produkÄnÃm " "nasazenà by toto mÄ›lo být vypnuto, protože se zde mohou objevovat hesla." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "maximálnà prodleva odpovÄ›di LDAPu" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." @@ -3673,11 +3655,11 @@ msgstr "" "Zastavit LDAP akce pokud nenà obdržena odpovÄ›Ä v rámci zadaného poÄtu " "sekund." -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "zaznamenávat statistiky LDAPu" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." @@ -3685,23 +3667,23 @@ msgstr "" "Sledovat statistiky Äasovánà LDAP do systémového protokolu. Může pomoci s " "hledánÃm problémů s indexovánÃm Äi chybnými filtry hledánÃ." -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "úroveň podrobnostà diagnostických informacÃ" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "Zobrazit urÄité údaje pÅ™i každém naÄtenà stránky." -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "různé" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "ve výpisech zobrazovat souhrny" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3709,11 +3691,11 @@ msgstr "" "UrÄuje, zda bude na konci seznamů zobrazována stavová liÅ¡ta, ve které bude " "uveden krátký souhrn typu a poÄtu prvků na seznamu." -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "Zobrazit panel ACL u vÅ¡ech objektů" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." @@ -3721,69 +3703,69 @@ msgstr "" "Pro velmi specifická nastavenà ACL práv, kde je zapotÅ™ebà udÄ›lit právo na " "jediném objektu." -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "háÄky" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "HáÄky, které jsou volány pokud nastane konkrétnà událost" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "Panel, kterého se týká tento háÄek" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "režim" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "Kdy spouÅ¡tÄ›t tento pÅ™Ãkaz" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "PÅ™Ãkaz" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "PÅ™Ãkaz, který bude spouÅ¡tÄ›n" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "Zobrazit výstup háÄku" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3812,8 +3794,8 @@ msgid "Object groups" msgstr "skupiny objektů" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" -msgstr "Relativnà rozliÅ¡ený název OGroup" +msgid "Groups RDN" +msgstr "Relativnà rozliÅ¡ený název skupin" #: plugins/config/class_mainPluginsConfig.inc:45 msgid "Branch in which object groups will be stored" @@ -4385,7 +4367,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "PoužÃt tento ACL seznam pro vÅ¡echny uživatele LDAP" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Älenové" @@ -4437,7 +4418,6 @@ msgid "Reset category ACL" msgstr "resetovat ACL kategorie" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "seznam dostupných katergorià ACL" @@ -4861,7 +4841,6 @@ msgstr "" "záloh, pokud existujà a obsahujà potÅ™ebná data)!" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Tedy – pokud jste si jist(a), stisknÄ›te 'smazat'. V opaÄném pÅ™ÃpadÄ› operaci " @@ -4925,93 +4904,10 @@ msgstr "" msgid "Read only" msgstr "pouze pro ÄtenÃ" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "průvodce pro zkopÃruj a vlož" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"NÄ›které hodnoty musà být jedineÄné v rámci celého adresáře, nÄ›které " -"kombinace jsou zase nesmyslné. FusionDirectory zobrazuje pÅ™ÃsluÅ¡né atributy." -" Upravte prosÃm nÞe uvedené hodnoty tak, aby odpovÃdaly tÄ›mto pravidlům." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Pamatujte, že nÄ›které vlastnosti, jako napÅ™Ãklad záznam o poÅ™Ãzených " -"snÃmcÃch, nebudou zkopÃrovány!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"PÅ™ÃpadnÄ› když bÄ›hem kopÃrovánÃm Äi pÅ™esouvánà objektu v rámci " -"FusionDirectory smažete zdrojový objekt, může to vést k selhánà vkládánà " -"objektů do nového umÃstÄ›nÃ!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "operace byla dokonÄena" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "Vytvářenà nového objektu s použitÃm Å¡ablon" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "ACL pÅ™iÅ™azené k této položce" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "nový ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "typ / rozsah ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "zvolte typ / rozsah ACL" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "dalÅ¡Ã volby filtru" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "použÃt Äleny z" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "dostupnà Älenové" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "vypsat možné cÃle zprávy" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "vypsat pÅ™Ãjemce zprávy" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL pro tento objekt" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "dostupné role" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "tým tvůrců FusionDirectory" @@ -5032,46 +4928,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "tento objekt nemá žádné propojenà s dalÅ¡Ãmi objekty" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "nastavenà uživatele" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "odebrat heslo" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "nastavit nové heslo" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "fotografie" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "fotografie uživatele" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "odebrat fotografii" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "V tomto okamžiku nejste oprávnÄ›n(a) zmÄ›nit si své heslo." - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "Způsob uloženà VaÅ¡eho hesla nebyl zmÄ›nÄ›n!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"VaÅ¡e heslo bylo úspěšnÄ› zmÄ›nÄ›no. Nezapomeňte ho zmÄ›nit též ve vÅ¡ech " -"aplikacÃch, které ho použÃvajÃ." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/de/fusiondirectory.po b/locale/de/fusiondirectory.po index 8b5393d81b22ebd2e1c59126a5dcd2b17e7afdfa..027563d0d74cbaeada488725612d55d2b1ac5823 100644 --- a/locale/de/fusiondirectory.po +++ b/locale/de/fusiondirectory.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" +"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2017\n" "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatisch" @@ -177,8 +177,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Warnung" @@ -200,7 +199,6 @@ msgid "Welcome" msgstr "Willkommen" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Speichern" @@ -242,10 +240,8 @@ msgstr "PHP Modul- und Erweiterungsprüfung" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" -"PHP-Einrichtungskonfiguration (<a href=\"?info\" " -"target=\"_blank\">Information anzeigen)</a>)" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 msgid "Installation check" @@ -743,8 +739,8 @@ msgstr "Die Willkommensnachricht" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -805,7 +801,7 @@ msgstr "Alle auswählen" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -905,7 +901,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Konfigurationsfehler" @@ -944,7 +940,6 @@ msgid "Permission" msgstr "Berechtigung" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Alle abbrechen" @@ -956,7 +951,6 @@ msgstr "Kann nicht einfügen" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Kennung" @@ -973,7 +967,7 @@ msgstr "Vorlage" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Name der Vorlage" @@ -993,7 +987,7 @@ msgstr "" "Schwerer Fehler: Kann Klasse '%s' nicht instanziieren - bitte führen Sie " "'%s' aus um das Problem zu beheben" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1072,69 +1066,69 @@ msgstr "Konfigurieren" msgid "incomplete" msgstr "unvollständig" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Trotzdem Fortsetzen" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Trotzdem bearbeiten" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Sie bearbeiten gerade den/die LDAP Eintrag/Einträge %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sB" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "%sKiB" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "%sMiB" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "%sGiB" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "%sTiB" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "%sPiB" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "%sEiB" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "%sZiB" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "%sYiB" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1143,89 +1137,89 @@ msgstr "" "Datei '%s' konnte nicht gelöscht werden. Versuchen Sie fusiondirectory-setup" " --check-directories um die Rechte zu beheben." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "Kann nicht in Revisions-Datei schreiben!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "LDAP-Warnung" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Kann die Schema-Informationen nicht vom Server beziehen. Keine Schemaprüfung" " möglich!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Verfügbare Klasse(n)" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Konnte Datei '%s' nicht finden - bitte führen Sie '%s' aus um das Problem zu" " beseitigen" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Keine Objekte dieser Kategorie" @@ -1261,25 +1255,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Alle Kategorien" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Mein Konto" @@ -1553,19 +1547,16 @@ msgstr "Fehlenden %s PHP-Erweiterung!" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Abbrechen" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Anwenden" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Speichern" @@ -2053,7 +2044,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2095,13 +2086,13 @@ msgid "POSIX group %s" msgstr "POSIX-Gruppe %s" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "Rolle %s" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "Gruppe %s" @@ -2112,7 +2103,7 @@ msgstr "Gruppe des Benutzers" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Keine" @@ -2148,51 +2139,51 @@ msgstr "Bearbeiten" msgid "Remove" msgstr "Entfernen" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KiB" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MiB" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GiB" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TiB" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "Sekunden" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "Minuten" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "Stunden" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "Tage" @@ -2264,38 +2255,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "Es gibt bereits einen Eintrag mit dem selben dn: %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "Der Eintrag %s existiert nicht" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "Tab \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "Unbekanntes Feld \"%s\"" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2305,7 +2296,7 @@ msgstr "%s (benötigt)" msgid "Object base" msgstr "Objektbasis" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2661,22 +2652,22 @@ msgstr "Willkommen %s!" msgid "References" msgstr "Referenzen" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "Gruppen und Rollen" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "Gruppen und Rollen des Benutzers bearbeiten" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "Gruppenmitgliedschaft" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "Rollenmitgliedschaft" @@ -2694,7 +2685,6 @@ msgstr "Zu verwendende Passworthash-Methode" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Passwort" @@ -2735,7 +2725,6 @@ msgid "Personal information" msgstr "Persönliche Informationen" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Nachname" @@ -2744,7 +2733,6 @@ msgid "Last name of this user" msgstr "Nachname von diesem Benutzer" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Vorname" @@ -2951,53 +2939,53 @@ msgstr "" msgid "Postal code" msgstr "Postleitzahl" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "Passwörter ist im Verlauf alter Passwörter" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "Bestehender Wert das Passworts wurde nicht geändert" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Sie müssen das aktuelle Passwort eingeben, um fortfahren zu können." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Neues Passwort" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "Das alte und neue Passwort sind sich zu ähnlich." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" "Das Passwort beinhaltet möglicherweise problematische Unicode-Zeichen!" @@ -3578,59 +3566,51 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "Groups RDN" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "Der Zweig in welchem Gruppen gespeichert werden." - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Debugging" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Fehler anzeigen" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." @@ -3639,11 +3619,11 @@ msgstr "" "produktiven Einrichtungen deaktiviert werden, da einige Passwörter enthalten" " sein könnten." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Maximale LDAP Abfragedauer" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." @@ -3651,11 +3631,11 @@ msgstr "" "Anhalten von LDAP-Aktionen wenn keine Antwort innerhalb der angegeben Anzahl" " von Sekunden erfolgt." -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Protokolliere LDAP-Statistiken" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." @@ -3663,23 +3643,23 @@ msgstr "" "LDAP Timingstatistiken mit dem Syslog verfolgen. Dies kann helfen, " "Indexproblem oder schlechte Suchfilter zu finden." -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Debug Level" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "Gewisse Informationen bei jedem Seitenladen anzeigen." -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Verschiedenes" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Zeige Zusammenfassung in Listen" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3688,79 +3668,79 @@ msgstr "" " eine kurze Zusammenfassung von Typ und Anzahl der Elemente in der Liste " "zeigt." -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "ACL-Reiter auf allen Objekten anzeigen" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Hooks" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "Hooks die aufgerufen werden wenn spezifische Aktionen passieren" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "Der Tab, der diesen hook betrifft" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Modus" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "Wann dieser Befehl aufgerufen wird" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "Der zu aufrufende Befehl" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3787,8 +3767,8 @@ msgid "Object groups" msgstr "Objektgruppen" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" -msgstr "OGroup RDN" +msgid "Groups RDN" +msgstr "Groups RDN" #: plugins/config/class_mainPluginsConfig.inc:45 msgid "Branch in which object groups will be stored" @@ -4354,7 +4334,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "Diese ACL für alle LDAP-Benutzer übernehmen" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Mitglieder" @@ -4406,7 +4385,6 @@ msgid "Reset category ACL" msgstr "ACL-Kategorie zurücksetzen" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Liste verfügbarer ACL-Kategorien" @@ -4819,7 +4797,6 @@ msgstr "" "gibt, für FusionDirectory die Daten wieder herzustellen." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Wenn Sie sicher sind, drücken Sie 'Entfernen' um fortzufahren oder " @@ -4879,94 +4856,10 @@ msgstr "" msgid "Read only" msgstr "Nur Lesen" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Kopieren & Einfügen - Assistent" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Einige Werte müssen einmalig im vollständigen Verzeichnis sein während " -"einige Kombinationen keinen Sinn machen. FusionDirectory zeigt die " -"relevanten Attribute. Bitte halten Sie die unten stehenden Werte bei um die " -"Policies zu erfüllen." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Beachten Sie, dass manche Einstellungen wie z.B. erstellte Snapshots nicht " -"kopiert werden!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"Oder wenn Sie kopieren oder einen Eintrag ausschneiden und das Quellobjekt " -"löschen, können Sie Fehler bekommen wenn dieses Objekt wieder eingefügt " -"werden soll!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Vorgang abgeschlossen" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "Zugewiesene ACL für aktuellen Eintrag" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Neue ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "ACL-Typ" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Wählen Sie einen ACL-Typ" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Zusätzliche Filteroptionen" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Verwende Mitglieder von" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Verfügbare Mitglieder" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Zeige mögliche Empfänger dieser Nachricht" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Zeige Nachrichtenempfänger" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL für dieses Objekt" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Verfügbare Rollen" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "Das FusionDirectory Team" @@ -4985,46 +4878,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Dieses Objekt hat keine Referenzen zu anderen Objekten." -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Benutzer-Einstellungen" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Passwort löschen" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Neues Passwort setzen" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Bild" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Benutzerbild" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Bild entfernen" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "Sie haben keine Berechtigung Ihr Passwort zu ändern" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "Ihr Passwort-Hash wird nicht geändert!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Sie haben erfolgreich Ihr Passwort geändert. Bitte denken Sie daran alle " -"Programme anzupassen, die dieses Passwort auch benutzen." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/el_GR/fusiondirectory.po b/locale/el_GR/fusiondirectory.po index 73bdf987dfd15a078cb9164b8deaae3279bfc29c..d15f45eb67758970a31e7c23139ce558b914c6d3 100644 --- a/locale/el_GR/fusiondirectory.po +++ b/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Î Ïοειδοποίηση" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "Επιλογή όλων" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Σφάλμα ÏÏθμισης" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "Άδεια" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "ΑκÏÏωση όλων" @@ -893,7 +890,6 @@ msgstr "Αδυναμία επικόλλησης" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "ΣÏνδεση" @@ -910,7 +906,7 @@ msgstr "Î Ïότυπο" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Όνομα Ï€ÏοτÏπου" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1003,158 +999,158 @@ msgstr "ΡÏθμιση" msgid "incomplete" msgstr "ελλιπής" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "ΣυνÎχεια οπωσδήποτε" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "ΕπεξεÏγασία οπωσδήποτε" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sB" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "ΑδÏνατη η εγγÏαφή σε αÏχείο αναθεώÏησης!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Î Ïοειδοποίηση LDAP " -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Αδυναμία λήψης πληÏοφοÏιών σχήματος για τον εξυπηÏετητή. Δεν υπάÏχει η " "δυνατότητα ελÎγχου σχήματος!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "ΔαθÎσιμες κλάσεις" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Î±Ïχείου '%s' - παÏακαλώ εκτελÎστε το '%s' για να το " "διοÏθώσετε" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1189,25 +1185,25 @@ msgstr "Αδυναμία bind σε LDAP. Επικοινωνήστε με τον msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Όλες οι κατηγοÏίες" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Ο λογαÏιασμός μου" @@ -1480,19 +1476,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "ΑκÏÏωση" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "ΕφαÏμογή" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Αποθήκευση" @@ -1963,7 +1956,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2005,13 +1998,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "Ρόλος %s" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "Ομάδα %s" @@ -2022,7 +2015,7 @@ msgstr "Ομάδα του χÏήστη" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "ΚανÎνα" @@ -2058,51 +2051,51 @@ msgstr "ΕπεξεÏγασία" msgid "Remove" msgstr "ΑφαίÏεση" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KiB" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MiB" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GiB" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TiB" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "δευτεÏόλεπτα" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "λεπτά" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "ÏŽÏες" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "ημÎÏες" @@ -2174,38 +2167,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "ΥπάÏχει ήδη μια καταχώÏιση με το ίδιο dn : %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "Η καταχώÏιση %s δεν υπάÏχει." -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "Tab \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2215,7 +2208,7 @@ msgstr "%s (απαιτείται)" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2557,22 +2550,22 @@ msgstr "Καλώς ήλθατε στο %s!" msgid "References" msgstr "ΑναφοÏÎÏ‚" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "Ομάδες και Ïόλοι" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "ΕπεξεÏγασία ομάδων και Ïόλων του χÏήστη" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2590,7 +2583,6 @@ msgstr "ÎœÎθοδος hash για χÏήση κωδικοÏ" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Κωδικός Ï€Ïόσβασης:" @@ -2631,7 +2623,6 @@ msgid "Personal information" msgstr "Î ÏοσωπικÎÏ‚ πληÏοφοÏίες" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Επίθετο" @@ -2640,7 +2631,6 @@ msgid "Last name of this user" msgstr "Το επίθετο του χÏήστη." #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Όνομα" @@ -2851,34 +2841,34 @@ msgstr "" msgid "Postal code" msgstr "ΤαχυδÏομικός κώδικας" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "Δεν ήταν δυνατή η εÏÏεση του Ppolicy \"%s\" στο LDAP!" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "Δεν Îχετε δικαίωμα αλλαγής του ÎºÏ‰Î´Î¹ÎºÎ¿Ï ÏƒÎ±Ï‚" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "Θα Ï€ÏÎπει να πεÏιμÎνετε %d δευτεÏόλεπτα για να αλλάξετε το κωδικό σας" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "Ο κωδικός είναι στο ιστοÏικό παλιών κωδικών Ï€Ïόσβασης." -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "Ο κωδικός Ï€Ïόσβασής σας δεν Îχει αλλάξει από την Ï„ÏÎχουσα τιμή" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Θα Ï€ÏÎπει να εισάγετε τον κÏÏιο κωδικό σας για να συνεχίσετε" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." @@ -2886,20 +2876,20 @@ msgstr "" "Οι κωδικοί εισάγατε ως \"ÎÎο κωδικό\" και \"Επανάληψη νÎου κωδικοÏ\" δεν " "ταιÏιάζουν." -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "ÎÎος κωδικός " -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "Ο παλιός και ο νÎος κωδικός Ï€Ïόσβασης μοιάζουν πολÏ" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "Ο νÎος κωδικός Ï€Ïόσβασης πεÏιÎχει Ï€ÏοβληματικοÏÏ‚ χαÏακτήÏες Unicode!" @@ -3463,101 +3453,93 @@ msgid "The branch where users are stored." msgstr "Κλάδος στον οποίο αποθηκεÏονται χÏήστες." #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "Κλάδος στον οποίο αποθηκεÏονται ομάδες." - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "Κλάδος στον οποίο αποθηκεÏονται Ïόλοι ACL." -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Αποσφαλμάτωση" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Î Ïοβολή σφαλμάτων" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "ΔιάφοÏα" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3566,79 +3548,79 @@ msgstr "" "εμφανίζοντας μια σÏντομη πεÏίληψη του Ï„Ïπου και του αÏÎ¹Î¸Î¼Î¿Ï Ï„Ï‰Î½ στοιχείων " "στη λίστα." -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Hooks" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "ΛειτουÏγία" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "Πότε καλείται αυτή η εντολή" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "Η εντολή που θα κληθεί" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3665,7 +3647,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4236,7 +4218,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "ΕφαÏμογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… ACL για όλους τους χÏήστες LDAP" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "ÎœÎλη" @@ -4288,7 +4269,6 @@ msgid "Reset category ACL" msgstr "ΕπαναφοÏά κατηγοÏίας ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4672,7 +4652,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Αν είστε σίγουÏοι, πατήστε \"ΔιαγÏαφή\" για να συνεχίσετε ή \"ΑκÏÏωση\" για " @@ -4732,85 +4711,10 @@ msgstr "" msgid "Read only" msgstr "Μόνο για ανάγνωση" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Οδηγός αντιγÏαφής και επικόλλησης" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Η ενÎÏγεια ολοκληÏώθηκε" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "ΕκχωÏημÎνο ACL για την Ï„ÏÎχουσα εγγÏαφή" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "ÎÎο ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "ΤÏπος ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "ΕπιλÎξτε Îνα Ï„Ïπο acl" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Î Ïόσθετες επιλογÎÏ‚ φίλτÏου" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "ΧÏήση μελών από" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "ΔιαθÎσιμα μÎλη" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Λίστα πιθανών στόχων μηνυμάτων" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Λίστα παÏαληπτών μηνυμάτων" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr " ACL για αυτό το Ï€Ïοϊόν." - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "ΔιαθÎσιμοι Ïόλοι" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4829,44 +4733,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Ρυθμίσεις χÏηστών" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "ΕκκαθάÏιση κωδικοÏ" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "ΟÏισμός νÎου κωδικοÏ" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Î Ïοσωπική εικόνα" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Εικόνα χÏήστη" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/en/fusiondirectory.po b/locale/en/fusiondirectory.po index e58dda54b52671eb2ce11e44da7af028bfe7b6be..e7279669f3bc6c654d4a1cbd91c2de42e3642dbc 100644 --- a/locale/en/fusiondirectory.po +++ b/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-06-01 10:23+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -533,7 +531,7 @@ msgstr "" #: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:238 #: include/class_SnapshotHandler.inc:268 include/class_SnapshotHandler.inc:284 #: include/class_SnapshotHandler.inc:405 include/class_SnapshotHandler.inc:408 -#: html/index.php:372 plugins/addons/dashboard/class_dashBoardUsers.inc:73 +#: html/index.php:372 plugins/addons/dashboard/class_dashBoardUsers.inc:86 #: plugins/addons/dashboard/class_dashBoard.inc:74 #: plugins/addons/dashboard/class_dashBoardPasswords.inc:62 #: plugins/config/class_recoveryConfig.inc:137 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -891,8 +888,8 @@ msgstr "" #: include/select/userSelect/class_userSelect.inc:32 #: plugins/personal/generic/class_user.inc:383 +#: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -900,7 +897,7 @@ msgstr "" #: include/simpleplugin/class_simpleManagement.inc:282 #: include/simpleplugin/class_simpleManagement.inc:514 #: plugins/admin/users/user-list.xml:95 -#: plugins/admin/groups/class_groupManagement.inc:186 +#: plugins/admin/groups/class_groupManagement.inc:350 #: ihtml/themes/breezy/template.tpl.c:5 msgid "Template" msgstr "" @@ -909,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -925,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -996,153 +993,153 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1177,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1468,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1950,7 +1944,7 @@ msgid "" "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on \"%2$s" @@ -1963,9 +1957,11 @@ msgstr "" #: include/simpleplugin/simple-select-list.xml:32 #: include/simpleplugin/simple-list.xml:32 +#: plugins/addons/dashboard/class_dashBoardUsers.inc:63 +#: plugins/addons/dashboard/class_dashBoardUsers.inc:68 #: plugins/admin/departments/class_department.inc:171 #: plugins/admin/groups/class_roleGeneric.inc:86 -#: plugins/admin/groups/class_ogroup.inc:193 +#: plugins/admin/groups/class_ogroup.inc:191 #: plugins/admin/groups/group-list.xml:33 #: plugins/admin/aclrole/class_aclRole.inc:99 #: setup/setup_migrate_adminAccount.tpl.c:8 @@ -1978,7 +1974,7 @@ msgstr "" #: plugins/admin/departments/class_department.inc:72 #: plugins/admin/departments/dep-list.xml:29 #: plugins/admin/groups/class_roleGeneric.inc:91 -#: plugins/admin/groups/class_ogroup.inc:198 +#: plugins/admin/groups/class_ogroup.inc:196 #: plugins/admin/groups/group-list.xml:41 #: plugins/admin/aclrole/class_aclRole.inc:103 msgid "Description" @@ -1990,13 +1986,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2007,7 +2003,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2024,7 +2020,7 @@ msgstr "" #: plugins/admin/departments/dep-list.xml:79 #: plugins/admin/users/user-list.xml:108 #: plugins/admin/groups/group-list.xml:74 -#: plugins/admin/groups/group-list.xml:119 +#: plugins/admin/groups/group-list.xml:137 #: plugins/admin/aclrole/class_aclEditionDialog.inc:192 msgid "Edit" msgstr "" @@ -2039,18 +2035,18 @@ msgstr "" #: plugins/admin/departments/dep-list.xml:88 #: plugins/admin/users/user-list.xml:115 #: plugins/admin/groups/group-list.xml:82 -#: plugins/admin/groups/group-list.xml:132 +#: plugins/admin/groups/group-list.xml:150 msgid "Remove" msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" @@ -2103,7 +2099,7 @@ msgstr "" #: include/simpleplugin/class_simpleManagement.inc:508 #: include/simpleplugin/class_simpleManagement.inc:514 -#: plugins/admin/groups/class_groupManagement.inc:186 +#: plugins/admin/groups/class_groupManagement.inc:350 #, php-format msgid "Show %s" msgstr "" @@ -2159,38 +2155,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may " "be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2200,7 +2196,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "" "The value \"%s\" for field \"%s\" is not in the list of possible choices" @@ -2544,22 +2540,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 -#: plugins/admin/groups/class_groupManagement.inc:33 +#: plugins/personal/roles/class_userRoles.inc:33 +#: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2577,7 +2573,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2618,7 +2613,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "" @@ -2627,7 +2621,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "" @@ -2834,53 +2827,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new password" "\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -2901,7 +2894,22 @@ msgstr "" msgid "Expired accounts" msgstr "" -#: plugins/addons/dashboard/class_dashBoardUsers.inc:74 +#: plugins/addons/dashboard/class_dashBoardUsers.inc:64 +#: plugins/addons/dashboard/class_dashBoardUsers.inc:70 +#: plugins/admin/groups/class_roleGeneric.inc:95 +msgid "Phone number" +msgstr "" + +#: plugins/addons/dashboard/class_dashBoardUsers.inc:65 +msgid "Expiration date" +msgstr "" + +#: plugins/addons/dashboard/class_dashBoardUsers.inc:69 +#: ihtml/themes/breezy/recovery.tpl.c:74 +msgid "Email" +msgstr "" + +#: plugins/addons/dashboard/class_dashBoardUsers.inc:87 #, php-format msgid "" "Total user number could not be computed because of the following LDAP error: " @@ -3413,179 +3421,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in " "productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a " "single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using " "a dialog." @@ -3612,7 +3612,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -3687,7 +3687,7 @@ msgstr "" #: plugins/admin/departments/class_department.inc:63 #: plugins/admin/users/user-list.xml:57 -#: plugins/admin/groups/class_ogroup.inc:189 +#: plugins/admin/groups/class_ogroup.inc:187 #: plugins/admin/groups/group-list.xml:49 #: plugins/admin/acl/class_aclAssignment.inc:38 #: plugins/admin/aclrole/class_aclRole.inc:95 @@ -3877,7 +3877,7 @@ msgstr "" #: plugins/admin/groups/class_roleGeneric.inc:55 #: plugins/admin/groups/class_roleGeneric.inc:59 -#: plugins/admin/groups/class_groupManagement.inc:94 +#: plugins/admin/groups/class_groupManagement.inc:259 #: plugins/admin/acl/class_aclAssignment.inc:47 #: plugins/admin/aclrole/class_aclRole.inc:77 msgid "Role" @@ -3897,7 +3897,7 @@ msgid "Information" msgstr "" #: plugins/admin/groups/class_roleGeneric.inc:86 -#: plugins/admin/groups/class_ogroup.inc:193 +#: plugins/admin/groups/class_ogroup.inc:191 msgid "Name of this group" msgstr "" @@ -3905,10 +3905,6 @@ msgstr "" msgid "Description of the role" msgstr "" -#: plugins/admin/groups/class_roleGeneric.inc:95 -msgid "Phone number" -msgstr "" - #: plugins/admin/groups/class_roleGeneric.inc:99 msgid "Fax number" msgstr "" @@ -3921,82 +3917,113 @@ msgstr "" msgid "Add users for the role" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:34 +#: plugins/admin/groups/class_groupManagement.inc:36 msgid "Manage groups and roles" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:35 +#: plugins/admin/groups/class_groupManagement.inc:37 msgid "Allows you to manage object groups, POSIX groups and roles" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:94 +#: plugins/admin/groups/class_groupManagement.inc:155 +#: plugins/admin/groups/class_groupManagement.inc:158 +#: plugins/admin/groups/class_groupManagement.inc:176 +msgid "Action canceled" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:155 +#, php-format +msgid "System %s has no mac address defined, cannot trigger action" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:158 +#, php-format +msgid "Could not find system %s, cannot trigger action" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:176 +#, php-format +msgid "System %s is currently installing" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:196 +#: plugins/admin/groups/class_groupManagement.inc:222 +msgid "Infrastructure service" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:198 +msgid "Action triggered" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:198 +#, php-format +msgid "Action called without error (result was \"%s\")" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:259 msgid "Edit role properties" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:110 +#: plugins/admin/groups/class_groupManagement.inc:275 msgid "Posix" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:110 +#: plugins/admin/groups/class_groupManagement.inc:275 msgid "Edit posix properties" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:153 +#: plugins/admin/groups/class_groupManagement.inc:318 msgid "Show user groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:154 +#: plugins/admin/groups/class_groupManagement.inc:319 msgid "Show organizational roles" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:155 +#: plugins/admin/groups/class_groupManagement.inc:320 msgid "Show application groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:156 +#: plugins/admin/groups/class_groupManagement.inc:321 msgid "Show unidentified groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:159 +#: plugins/admin/groups/class_groupManagement.inc:324 #: include/select/groupSelect/group-filter.tpl.c:5 msgid "Show primary groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:161 +#: plugins/admin/groups/class_groupManagement.inc:326 #: include/select/groupSelect/group-filter.tpl.c:11 msgid "Show mail groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:164 +#: plugins/admin/groups/class_groupManagement.inc:329 #: include/select/groupSelect/group-filter.tpl.c:8 msgid "Show samba groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:168 +#: plugins/admin/groups/class_groupManagement.inc:333 msgid "Show DSA entries" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:174 +#: plugins/admin/groups/class_groupManagement.inc:339 msgid "Show server groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:175 +#: plugins/admin/groups/class_groupManagement.inc:340 msgid "Show workstation groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:176 -msgid "Show windows groups" -msgstr "" - -#: plugins/admin/groups/class_groupManagement.inc:177 +#: plugins/admin/groups/class_groupManagement.inc:341 msgid "Show terminal groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:178 +#: plugins/admin/groups/class_groupManagement.inc:342 msgid "Show printer groups" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:179 +#: plugins/admin/groups/class_groupManagement.inc:343 msgid "Show phone groups" msgstr "" @@ -4010,60 +4037,60 @@ msgstr "" msgid "Non existing dn: %s" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:155 +#: plugins/admin/groups/class_ogroup.inc:154 msgid "Object group" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:156 +#: plugins/admin/groups/class_ogroup.inc:155 msgid "Object group information" msgstr "" +#: plugins/admin/groups/class_ogroup.inc:159 #: plugins/admin/groups/class_ogroup.inc:160 -#: plugins/admin/groups/class_ogroup.inc:161 msgid "Group" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:198 +#: plugins/admin/groups/class_ogroup.inc:196 msgid "Short description of this group" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:205 +#: plugins/admin/groups/class_ogroup.inc:203 msgid "Member objects" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:208 +#: plugins/admin/groups/class_ogroup.inc:206 msgid "Objects member of this group" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:215 +#: plugins/admin/groups/class_ogroup.inc:213 msgid "System trust" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:219 +#: plugins/admin/groups/class_ogroup.inc:217 msgid "Trust mode" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:219 +#: plugins/admin/groups/class_ogroup.inc:217 msgid "Type of authorization for those hosts" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:223 +#: plugins/admin/groups/class_ogroup.inc:221 msgid "disabled" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:223 +#: plugins/admin/groups/class_ogroup.inc:221 msgid "full access" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:223 +#: plugins/admin/groups/class_ogroup.inc:221 msgid "allow access to these hosts" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:226 +#: plugins/admin/groups/class_ogroup.inc:224 msgid "Only allow this group to connect to this list of hosts" msgstr "" -#: plugins/admin/groups/class_ogroup.inc:317 +#: plugins/admin/groups/class_ogroup.inc:315 msgid "" "Putting both workstations and terminals in the same group is not allowed" msgstr "" @@ -4072,6 +4099,14 @@ msgstr "" msgid "List of groups" msgstr "" +#: plugins/admin/groups/group-list.xml:93 +msgid "Trigger action" +msgstr "" + +#: plugins/admin/groups/group-list.xml:100 +msgid "Schedule action" +msgstr "" + #: plugins/admin/acl/class_aclManagement.inc:31 #: plugins/admin/acl/class_aclManagement.inc:32 #: plugins/admin/acl/class_aclManagement.inc:45 @@ -4144,7 +4179,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4196,7 +4230,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4503,10 +4536,6 @@ msgid "" "=> Use your e-mail in the long format, e.g : John Doe => john.doe@example.com" msgstr "" -#: ihtml/themes/breezy/recovery.tpl.c:74 -msgid "Email" -msgstr "" - #: ihtml/themes/breezy/recovery.tpl.c:83 msgid "" "Password recovery is not activated. If you have lost your password, please " @@ -4578,7 +4607,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4636,85 +4664,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4733,44 +4686,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" @@ -4831,53 +4746,21 @@ msgid "There is no expired account" msgstr "" #: plugins/addons/dashboard/users_accounts.tpl.c:11 -#: plugins/addons/dashboard/users_accounts.tpl.c:44 +#: plugins/addons/dashboard/users_accounts.tpl.c:23 msgid "Manager concerned" msgstr "" #: plugins/addons/dashboard/users_accounts.tpl.c:14 -#: plugins/addons/dashboard/users_accounts.tpl.c:47 -msgid "uid" -msgstr "" - -#: plugins/addons/dashboard/users_accounts.tpl.c:17 -#: plugins/addons/dashboard/users_accounts.tpl.c:50 -msgid "cn" -msgstr "" - -#: plugins/addons/dashboard/users_accounts.tpl.c:20 -#: plugins/addons/dashboard/users_accounts.tpl.c:32 -#: plugins/addons/dashboard/users_accounts.tpl.c:53 -#: plugins/addons/dashboard/users_accounts.tpl.c:65 -msgid "telephoneNumber" -msgstr "" - -#: plugins/addons/dashboard/users_accounts.tpl.c:23 -#: plugins/addons/dashboard/users_accounts.tpl.c:56 -msgid "shadowExpire" -msgstr "" - -#: plugins/addons/dashboard/users_accounts.tpl.c:26 -#: plugins/addons/dashboard/users_accounts.tpl.c:59 -msgid "manager" -msgstr "" - -#: plugins/addons/dashboard/users_accounts.tpl.c:29 -#: plugins/addons/dashboard/users_accounts.tpl.c:62 -msgid "mail" -msgstr "" - -#: plugins/addons/dashboard/users_accounts.tpl.c:35 msgid "There is one account expiring in the next %1 days" msgid_plural "There are %2 accounts expiring in the next %1 days" msgstr[0] "" msgstr[1] "" -#: plugins/addons/dashboard/users_accounts.tpl.c:38 +#: plugins/addons/dashboard/users_accounts.tpl.c:17 msgid "There is no account expiring in the next %1 days" msgstr "" -#: plugins/addons/dashboard/users_accounts.tpl.c:41 +#: plugins/addons/dashboard/users_accounts.tpl.c:20 msgid "Next expired accounts" msgstr "" diff --git a/locale/es/fusiondirectory.po b/locale/es/fusiondirectory.po index 879b6c166b4b0f26c699f3849e7add15b550b1b1..b143a3a4c840a5e627c08ce243d635e73912e527 100644 --- a/locale/es/fusiondirectory.po +++ b/locale/es/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatico" @@ -177,8 +177,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Aviso" @@ -200,7 +199,6 @@ msgid "Welcome" msgstr "Bienvenido" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Terminar" @@ -242,7 +240,7 @@ msgstr "Comprobaciones de módulos y extensiones PHP" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -717,8 +715,8 @@ msgstr "Mensaje de Bienvenida" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -779,7 +777,7 @@ msgstr "Seleccione todos" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -879,7 +877,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Error en la configuración" @@ -917,7 +915,6 @@ msgid "Permission" msgstr "Permisos" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Cancelar todo" @@ -929,7 +926,6 @@ msgstr "No puedo pegar" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Inicio" @@ -946,7 +942,7 @@ msgstr "Plantilla" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nombre de la plantilla" @@ -966,7 +962,7 @@ msgstr "" "Error fatal: no se puede instanciar la clase '%s' - intente solucionarlo " "ejecutando '%s'" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1046,158 +1042,158 @@ msgstr "Configurar" msgid "incomplete" msgstr "incompleto" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Continuar de cualquier manera" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Editar de cualquier manera" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Has decidido editar las siguientes entradas LDAP %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "¡No se puede escribir en el archivo de revisión!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Aviso LDAP" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "No puedo obtener información de esquemas del servidor. ¡No es posible " "comprobar los esquemas!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Clase(s) disponibles" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "No se puede encontrar el archivo '%s' - por favor ejecute '%s' para " "solucionarlo" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Todos los objetos en esta categorÃa" @@ -1233,25 +1229,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Todas las categorÃas" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Mi cuenta" @@ -1525,19 +1521,16 @@ msgstr "¡Extensión PHP %s no encontrada!" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Cancelar" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Aplicar" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Guardar" @@ -2021,7 +2014,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2063,13 +2056,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2080,7 +2073,7 @@ msgstr "Grupo de usuarios" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Ninguno" @@ -2116,51 +2109,51 @@ msgstr "Editar" msgid "Remove" msgstr "Eliminar" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "segundos" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "minutos" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "horas" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "dÃas" @@ -2232,38 +2225,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2273,7 +2266,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2624,22 +2617,22 @@ msgstr "¡Bienvenido %s!" msgid "References" msgstr "Referencias" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2657,7 +2650,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Contraseña" @@ -2698,7 +2690,6 @@ msgid "Personal information" msgstr "Información personal" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Apellido" @@ -2707,7 +2698,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Nombre" @@ -2914,54 +2904,54 @@ msgstr "" msgid "Postal code" msgstr "Código Postal" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Necesita introducir su contraseña actual para continuar." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nueva contraseña" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" "La contraseña actual y la introducida como nueva son demasiado parecidas." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "La clave contiene caracteres unicode posiblemente problemáticos!" @@ -3515,179 +3505,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Depurando" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Tiempo de consulta máxima de LDAP" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Registrar estadÃsticas LDAP" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Nivel de depuración" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Varios" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Mostrar resumen en listados" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Métodos" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Modo" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3714,7 +3696,7 @@ msgid "Object groups" msgstr "Grupos de objetos" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4281,7 +4263,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Miembros" @@ -4333,7 +4314,6 @@ msgid "Reset category ACL" msgstr "Eliminar la categorÃa ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Lista de categorÃas ACL disponibles" @@ -4742,7 +4722,6 @@ msgstr "" "que FusionDirectory recupere la data." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o " @@ -4802,92 +4781,10 @@ msgstr "" msgid "Read only" msgstr "Solo lectura" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Asistente para copiar y pegar" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Algunos valores deben ser únicos en el directorio completo mientras que " -"algunas combinaciones no tienen sentido. FusionDirectory muestra los " -"atributos relevantes. Por favor mantenga los valores de abajo para cumplir " -"con las polÃticas." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"¡Recuerde que propiedades como gestionar instantáneas no serán copiadas!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"O, si copia o corta una entrada en FusionDirectory y borra el objeto fuente," -" puede resultar en errores al pegar el objeto nuevamente!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Operación incompleta" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "Asignando ACL a la entrada actual" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nueva ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Tipo de ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Seleccione un tipo de ACL" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Añadir opciones de filtrado" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Usar miembros de" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Miembros disponibles" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Mostrar mensaje de posibles destinos" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Lista de recipientes de mensajes" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL que tienen este objeto" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Roles disponibles" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "El equipo de FusionDirectory" @@ -4906,46 +4803,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Este objeto no tiene relación con otros objetos" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Caracteristicas del usuario" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Borrar Contraseña" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Introducir nueva contraseña" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Foto" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Foto del usuario" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Eliminar foto" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "No tiene permisos para cambiar su contraseña en estos momentos" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "No se cambiará su método de hash de la contraseña!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Su cambio de contraseña se ha realizado correctamente. Recuerde cambiarla en" -" todos los programas configurados también." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/es_CO/fusiondirectory.po b/locale/es_CO/fusiondirectory.po index 714fc8f8f1602f14912e9c96e7e87b7e27d7d188..24b4e529a8a8c016719e5a7dfebbb2c5e2d36ab4 100644 --- a/locale/es_CO/fusiondirectory.po +++ b/locale/es_CO/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n" @@ -42,7 +42,7 @@ msgstr "" " cambiada por el usuario." #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automático" @@ -185,8 +185,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Precacuión" @@ -208,7 +207,6 @@ msgid "Welcome" msgstr "Bienvenido" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Finalizar" @@ -252,10 +250,8 @@ msgstr "Verificación de extensiones y módulos PHP " #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" -"Configuración de la instalación de PHP (<a href=\"?info\" " -"target=\"_blank\">Mostrar información</a>)" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 msgid "Installation check" @@ -750,8 +746,8 @@ msgstr "Mensaje de bienvenida" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -812,7 +808,7 @@ msgstr "Seleccionar todo" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -914,7 +910,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Error de configuración" @@ -951,7 +947,6 @@ msgid "Permission" msgstr "Permisos" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Cancelar todo" @@ -963,7 +958,6 @@ msgstr "No se puede pegar" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Usuario" @@ -980,7 +974,7 @@ msgstr "Plantilla" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nombre de la plantilla" @@ -998,7 +992,7 @@ msgstr "" "Error fatal: No se puede ejemplificar la clase '%s' - intente ejecutar '%s' " "para arreglar esto." -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1077,69 +1071,69 @@ msgstr "Configurar" msgid "incomplete" msgstr "incompleto" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Continuar de todos modos" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Editar de todos modos" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Usted está a punto de editar las entradas de LDAP: %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sB" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "%sKiB" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "%sMiB" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "%sGiB" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "%sTiB" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "%sPiB" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "%sEiB" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "%sZiB" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "%sYiB" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1148,60 +1142,60 @@ msgstr "" "El archivo '%s' no se puede borrar. Intente ejecutar fusiondirectory-setup-" "check-directories para arreglar los permisos." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "LDAP - Advertencia" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "No se puede traer información del 'schema' desde el servidor. ¡No se puede " "validar el schema'" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." @@ -1209,13 +1203,13 @@ msgstr "" "Usted ha instalado el plugin 'Mixed Groups', pero la configuración de su " "esquema no lo soporta." -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." @@ -1223,18 +1217,18 @@ msgstr "" "Su esquema tiene configurado soporte para 'Mixed Groups', pero este plugin " "no está presente." -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "No se encuentra el archivo '%s' - por favor ejecute '%s' para arreglar " "esto." -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Todos los objetos en esta categorÃa" @@ -1270,25 +1264,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Todas las categorÃas" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Mi cuenta" @@ -1561,19 +1555,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Cancelar" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Aplicar" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Salvar" @@ -2054,7 +2045,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2096,13 +2087,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "Rol %s" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "Grupo %s" @@ -2113,7 +2104,7 @@ msgstr "Grupo del usuario" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Ninguno" @@ -2149,51 +2140,51 @@ msgstr "Editar" msgid "Remove" msgstr "Borrar" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KB" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MB" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GB" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TB" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "segundos" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "minutos" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "horas" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "dÃas" @@ -2267,38 +2258,38 @@ msgstr "" "No es posible calcular dn: No se encuentra el objectType infos desde la " "pestaña clase \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "Ya existe una entrada con el mismo dn: %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "La entrada %s no existe" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "Pestaña \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2308,7 +2299,7 @@ msgstr "%s (necesario)" msgid "Object base" msgstr "Objeto base" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2668,22 +2659,22 @@ msgstr "¡Bienvenido %s!" msgid "References" msgstr "Referencias" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "Grupos y Roles" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "Editar grupos y roles del usuario" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "Pertenencia a grupos" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "Pertenencia a Roles" @@ -2701,7 +2692,6 @@ msgstr "Tipo de 'hash' para la contraseña" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Contraseña" @@ -2742,7 +2732,6 @@ msgid "Personal information" msgstr "Información personal" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Apellido" @@ -2751,7 +2740,6 @@ msgid "Last name of this user" msgstr "Apellido de este usuario" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Primer nombre" @@ -2960,35 +2948,35 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "¡No se pudo encontrar la polÃtica \"%s\" en LDAP!" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "Usted no tiene permitido cambiar su propia contraseña." -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" "Usted debe esperar %d segundos antes de cambiar su contraseña de nuevo." -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "La contraseña está en el historial de viejas contraseñas." -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "La contraseña no será cambiada por este valor" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Usted debe especificar su contraseña actual para poder proceder." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." @@ -2996,20 +2984,20 @@ msgstr "" "Las contraseñas que usted ingresó como \"Nueva contraseña\" y \"Repetir " "nueva contraseña\" no coinciden." -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nueva contraseña" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "La contraseña anterior y la nueva son muy parecidas." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" "La contraseña posiblemente contiene caracteres 'Unicoide' que son " @@ -3596,59 +3584,51 @@ msgid "The branch where users are stored." msgstr "La rama donde los usuarios están guardados." #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "Grupos RDN" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "La rama donde se guardan los grupos." - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "ACL Rol RDN" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "La rama donde los rol ACL están almacenados." -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Rastreo de errores" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Mostrar errores" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." @@ -3657,11 +3637,11 @@ msgstr "" "estar deshabilitado en entornos productivos, ya que, en algunos casos " "podrÃan mostrarse contraseñas allÃ." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Tiempo máximo de consultas LDAP." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." @@ -3669,11 +3649,11 @@ msgstr "" "Detenga las acciones sobre LDAP si no hay respuesta después del tiempo " "especificado en segundos." -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Escribir logs de las estadÃsticas LDAP." -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." @@ -3681,23 +3661,23 @@ msgstr "" "Registrar estadÃsticas de tiempo de LDAP en 'syslog'. Esto puede ser útil " "para encontrar problemas o filtros de búsqueda erróneos." -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Nivel del 'Rastreo de Errores'" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "Mostrar determinados datos en cada página de carga." -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Miscelánea" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Muestra un resumen en los listados." -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3705,11 +3685,11 @@ msgstr "" "Determina cuando una barra de estado será mostrada al final de listas, en un" " resumen corto y cantidad de elementos en la lista." -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "Mostrar pestaña de ACL en todos los objetos." -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." @@ -3717,69 +3697,69 @@ msgstr "" "Para el uso de permisos ACLs muy especÃficos usted podrÃa requerir dar " "acceso en un objeto particular." -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Hooks" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "'Hooks' que son llamados cuando suceden acciones especÃficas." -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "La pestaña que corresponde a este 'hook'" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Modo" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "Cuándo llamar este comando" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "La lÃnea de comandos que será usada" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "Mostrar la salida del 'hook'" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3808,8 +3788,8 @@ msgid "Object groups" msgstr "Grupos" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" -msgstr "OGroup RDN" +msgid "Groups RDN" +msgstr "Grupos RDN" #: plugins/config/class_mainPluginsConfig.inc:45 msgid "Branch in which object groups will be stored" @@ -4384,7 +4364,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "Aplicar este ACL a todos los usuarios de LDAP" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Miembros" @@ -4436,7 +4415,6 @@ msgid "Reset category ACL" msgstr "Restablecer categorÃa ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Lista de categorÃas ACL disponibles" @@ -4853,7 +4831,6 @@ msgstr "" "forma de que FusionDirectory recupere sus datos." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Si está seguro presione 'Eliminar' para continuar o 'Cancelar' para abortar." @@ -4912,94 +4889,10 @@ msgstr "" msgid "Read only" msgstr "Solo lectura" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Asistente de copiado y pegado" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Algunos valores necesitan ser únicos en todo el directorio, algunas " -"combinaciones no serán posibles. FusionDirectory muestra los atributos " -"pertinentes. Por favor mantenga bajos los valores para cumplir con las " -"polÃticas." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"¡Recuerde que algunas de las propiedades como los 'snapshots' realizados no " -"serán copiadas!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"O si usted copia o corta na entrada dentro de FusionDirectory y borra el " -"objeto original, usted podrÃa tener errores en el futuro cuando pegue este " -"objeto nuevamente." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Operación completa" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "Crear un nuevo objeto utilizando plantillas" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "ACL asignad a la entrada actual" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nuevo ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Tipo de ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Elija un tipo de acl" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Opciones adicionales de filtrado" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Usar los miembros de" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Miembros disponibles" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Listar los posibles destinatarios" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Listar destinatarios del mensaje" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL para este objeto" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Roles disponibles" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "El equipo de FusionDirectory" @@ -5020,46 +4913,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Este objeto no tiene relación con otros objetos" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Configuraciones de usuario" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Borrar contraseña" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Establecer nueva contraseña" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "FotografÃa personal" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Avatar" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Borrar Avatar" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "No tienes permisos para cambiar tu contraseña en este momento" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "¡Su metodo de contraseña hash no será cambiado!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Usted ha cambiado exitosamente su contraseña. Recuerde cambiar todos los " -"programas configurados para usarla también." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/es_VE/fusiondirectory.po b/locale/es_VE/fusiondirectory.po index 580ae9e0c11eea619ecccb5c6690b67868ace506..f55d6763e3249d68e5201af3ac4fcbc6c3186ca5 100644 --- a/locale/es_VE/fusiondirectory.po +++ b/locale/es_VE/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatico" @@ -177,8 +177,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Aviso" @@ -200,7 +199,6 @@ msgid "Welcome" msgstr "Bienvenido" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Terminar" @@ -242,7 +240,7 @@ msgstr "Comprobaciones de módulos y extensiones PHP" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -719,8 +717,8 @@ msgstr "Mensaje de Bienvenida" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -781,7 +779,7 @@ msgstr "Seleccione todos" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -881,7 +879,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Error en la configuración" @@ -919,7 +917,6 @@ msgid "Permission" msgstr "Permisos" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Cancelar todo" @@ -931,7 +928,6 @@ msgstr "No puedo pegar" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Inicio" @@ -948,7 +944,7 @@ msgstr "Plantilla" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nombre de la plantilla" @@ -968,7 +964,7 @@ msgstr "" "Error fatal: no se puede instanciar la clase '%s' - intente solucionarlo " "ejecutando '%s'" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1048,158 +1044,158 @@ msgstr "Configurar" msgid "incomplete" msgstr "incompleto" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Continuar de cualquier manera" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Editar de cualquier manera" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Has decidido editar las siguientes entradas LDAP %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "¡No se puede escribir en el archivo de revisión!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Aviso LDAP" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "No puedo obtener información de esquemas del servidor. ¡No es posible " "comprobar los esquemas!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Clase(s) disponibles" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "No se puede encontrar el archivo '%s' - por favor ejecute '%s' para " "solucionarlo" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Todos los objetos en esta categorÃa" @@ -1235,25 +1231,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Todas las categorÃas" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Mi cuenta" @@ -1527,19 +1523,16 @@ msgstr "¡Extensión PHP %s no encontrada!" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Cancelar" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Aplicar" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Guardar" @@ -2023,7 +2016,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2065,13 +2058,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2082,7 +2075,7 @@ msgstr "Grupo de usuarios" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Ninguno" @@ -2118,51 +2111,51 @@ msgstr "Editar" msgid "Remove" msgstr "Eliminar" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "segundos" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "minutos" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "horas" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "dÃas" @@ -2234,38 +2227,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2275,7 +2268,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2626,22 +2619,22 @@ msgstr "¡Bienvenido %s!" msgid "References" msgstr "Referencias" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2659,7 +2652,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Contraseña" @@ -2700,7 +2692,6 @@ msgid "Personal information" msgstr "Información personal" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Apellido" @@ -2709,7 +2700,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Nombre" @@ -2916,54 +2906,54 @@ msgstr "" msgid "Postal code" msgstr "Código Postal" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Necesita introducir su contraseña actual para continuar." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nueva contraseña" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" "La contraseña actual y la introducida como nueva son demasiado parecidas." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "La clave contiene caracteres unicode posiblemente problemáticos!" @@ -3517,179 +3507,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Depurando" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Tiempo de consulta máxima de LDAP" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Registrar estadÃsticas LDAP" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Nivel de depuración" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Varios" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Mostrar resumen en listados" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Métodos" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Modo" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3716,7 +3698,7 @@ msgid "Object groups" msgstr "Grupos de objetos" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4283,7 +4265,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Miembros" @@ -4335,7 +4316,6 @@ msgid "Reset category ACL" msgstr "Eliminar la categorÃa ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Lista de categorÃas ACL disponibles" @@ -4746,7 +4726,6 @@ msgstr "" " tiene forma de recuperar la data." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o " @@ -4806,92 +4785,10 @@ msgstr "" msgid "Read only" msgstr "Solo lectura" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Asistente para copiar y pegar" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Algunos valores deben ser únicos en el directorio completo mientras que " -"algunas combinaciones no tienen sentido. FusionDirectory muestra los " -"atributos relevantes. Por favor mantenga los valores de abajo para cumplir " -"con las polÃticas." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"¡Recuerde que propiedades como gestionar instantáneas no serán copiadas!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"O, si copia o corta una entrada en FusionDirectory y borra el objeto fuente," -" puede resultar en errores al pegar el objeto nuevamente!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Operación incompleta" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "Asignando ACL a la entrada actual" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nueva ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Tipo de ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Seleccione un tipo de ACL" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Añadir opciones de filtrado" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Usar miembros de" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Miembros disponibles" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Mostrar mensaje de posibles destinos" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Lista de recipientes de mensajes" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL que tienen este objeto" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Roles disponibles" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "El equipo de FusionDirectory" @@ -4910,46 +4807,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Este objeto no tiene relación con otros objetos" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Caracteristicas del usuario" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Borrar Contraseña" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Introducir nueva contraseña" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Foto" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Foto del usuario" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Eliminar foto" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "No tiene permisos para cambiar su contraseña en estos momentos" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "No se cambiará su método de hash de la contraseña!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Su cambio de contraseña se ha realizado correctamente. Recuerde cambiarla en" -" todos los programas configurados también." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/fa_IR/fusiondirectory.po b/locale/fa_IR/fusiondirectory.po index 33bee14428a6ff7257117da4ce3cd5cd7400db64..356256c0638dcfeb40d33503631cb41cbecdc010 100644 --- a/locale/fa_IR/fusiondirectory.po +++ b/locale/fa_IR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "جواز" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -910,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Ùایل '%s' را نمی توانم پیدا کنم برای رÙع مشکل دستور '%s' را بزنید." -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1952,7 +1945,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1994,13 +1987,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2011,7 +2004,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2047,51 +2040,51 @@ msgstr "" msgid "Remove" msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2163,38 +2156,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2204,7 +2197,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2546,22 +2539,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2579,7 +2572,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2620,7 +2612,6 @@ msgid "Personal information" msgstr "اطلاعات شخصی" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Ùامیل" @@ -2629,7 +2620,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "نام" @@ -2836,53 +2826,53 @@ msgstr "" msgid "Postal code" msgstr "کد پستی" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "کلمه عبور جدید" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3432,179 +3422,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3631,7 +3613,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4198,7 +4180,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4250,7 +4231,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4629,7 +4609,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4687,85 +4666,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4784,44 +4688,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "تنظیمات کاربر" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Øذ٠کلمه عبور" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "ثبت کلمه عبور جدید" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "عکس کاربر" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/fi_FI/fusiondirectory.po b/locale/fi_FI/fusiondirectory.po index 82bfccf415136297a0d972e215d71a6310e883ec..1eedc3d1207d317e46c929533db2eb6245bf296b 100644 --- a/locale/fi_FI/fusiondirectory.po +++ b/locale/fi_FI/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dina Solveig Jalkanen <dinsteri@gmail.com>, 2017\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Varoitus" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "Lupa" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -910,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Peruta" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Talenna" @@ -1952,7 +1945,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1994,13 +1987,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2011,7 +2004,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2047,51 +2040,51 @@ msgstr "" msgid "Remove" msgstr "Poista" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2163,38 +2156,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2204,7 +2197,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2545,22 +2538,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2578,7 +2571,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Salasana" @@ -2619,7 +2611,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Sukunimi" @@ -2628,7 +2619,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Etunimi" @@ -2835,53 +2825,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3431,179 +3421,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3630,7 +3612,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4197,7 +4179,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4249,7 +4230,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4628,7 +4608,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4686,85 +4665,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4783,44 +4687,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/fr/fusiondirectory.po b/locale/fr/fusiondirectory.po index 9ef3d2f275b1f34117f858ed9922f9741780b8e5..1629a073e81858944a7a898f1f4db127bccae2f6 100644 --- a/locale/fr/fusiondirectory.po +++ b/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2017\n" "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n" @@ -42,7 +42,7 @@ msgstr "" "utilisateur." #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatique" @@ -52,7 +52,7 @@ msgstr "Connexion LDAP" #: setup/class_setupStepLdap.inc:36 msgid "Location name" -msgstr "Nom de l'emplacement" +msgstr "Nom de la connexion" #: setup/class_setupStepLdap.inc:36 msgid "Name of this connexion to show in the LDAP server list" @@ -74,7 +74,7 @@ msgstr "Connexion TLS" #: setup/class_setupStepLdap.inc:46 msgid "Should TLS be used to connect to this LDAP server?" msgstr "" -"Est ce que TLS doit être utilisé pour se connecter à ce serveur LDAP ?" +"Est-ce que TLS doit être utilisé pour se connecter à ce serveur LDAP ?" #: setup/class_setupStepLdap.inc:50 setup/class_setupStepLdap.inc:119 #: setup/class_setupStepLdap.inc:127 @@ -97,7 +97,7 @@ msgid "" "DN of the admin account to use for binding to the LDAP. Base is " "automatically appended." msgstr "" -"DN du compte admin à utiliser pour la liaison au LDAP. La base est " +"DN du compte admin à utiliser pour l’identification au LDAP. La base y est " "automatiquement ajoutée." #: setup/class_setupStepLdap.inc:74 @@ -111,8 +111,8 @@ msgstr "Mot de passe administrateur" #: setup/class_setupStepLdap.inc:77 msgid "Password for the admin account to use for binding to the LDAP" msgstr "" -"Mot de passe pour le compte administrateur à utiliser pour la liaison au " -"LDAP" +"Mot de passe pour le compte administrateur à utiliser pour l’identification " +"au LDAP" #: setup/class_setupStepLdap.inc:83 msgid "Status" @@ -125,7 +125,7 @@ msgstr "Statut actuel" #: setup/class_setupStepLdap.inc:86 msgid "Result of last attempt at checking LDAP binding and basic schemas" msgstr "" -"Résultat de la dernière tentative de liaison LDAP et vérification des " +"Résultat de la dernière tentative de connexion LDAP et vérification des " "schémas de base" #: setup/class_setupStepLdap.inc:107 @@ -147,12 +147,12 @@ msgstr "" #: setup/class_setupStepLdap.inc:179 #, php-format msgid "Anonymous bind to server '%s' failed!" -msgstr "La connexion anonyme sur le serveur '%s' à échoué !" +msgstr "La connexion anonyme au serveur '%s' a échoué !" #: setup/class_setupStepLdap.inc:181 #, php-format msgid "Bind as user '%s' failed!" -msgstr "la connexion comme l'utilisateur '%s' à échoué !" +msgstr "La connexion sous l’utilisateur '%s' a échoué !" #: setup/class_setupStepLdap.inc:183 msgid "Retry" @@ -161,7 +161,7 @@ msgstr "Réessayer" #: setup/class_setupStepLdap.inc:187 #, php-format msgid "Anonymous bind to server '%s' succeeded." -msgstr "La connexion anonyme sur le serveur '%s' à réussi." +msgstr "La connexion anonyme au serveur '%s' a réussi." #: setup/class_setupStepLdap.inc:188 setup/class_setupStepLdap.inc:192 msgid "Refresh" @@ -169,12 +169,12 @@ msgstr "Rafraîchir" #: setup/class_setupStepLdap.inc:189 msgid "Please specify user and password!" -msgstr "Veuillez introduire un utilisateur et un mot de passe !" +msgstr "Veuillez introduire un utilisateur et un mot de passe !" #: setup/class_setupStepLdap.inc:191 #, php-format msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "La connexion comme l'utilisateur '%s' au serveur '%s' à réussi !" +msgstr "La connexion sous l'utilisateur '%s' au serveur '%s' a réussi !" #: setup/class_setupStepLdap.inc:210 setup/class_setupStepLdap.inc:212 #, php-format @@ -183,15 +183,14 @@ msgid "" "Schema \"%s\": %s" msgstr "" "%s\n" -"Schema \"%s\": %s" +"Schéma \"%s\" : %s" #: setup/class_setupStepLdap.inc:212 setup/class_setupStepMigrate.inc:573 #: setup/class_setupStepMigrate.inc:1004 setup/class_setupStepMigrate.inc:1123 #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Avertissement" @@ -213,17 +212,16 @@ msgid "Welcome" msgstr "Bienvenue" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Terminé" #: setup/class_setupStepFinish.inc:41 msgid "Finish - write the configuration file" -msgstr "Fini - écrire le fichier de configuration" +msgstr "Terminé - écrire le fichier de configuration" #: setup/class_setupStepFinish.inc:42 msgid "Write configuration file" -msgstr "Ecrire le fichier de configuration" +msgstr "Écrire le fichier de configuration" #: setup/class_setupStepFinish.inc:89 msgid "" @@ -231,7 +229,7 @@ msgid "" "permissions!" msgstr "" "Votre fichier de configuration est lisible par tout le monde. Veuillez " -"modifier les permissions !" +"modifier les permissions !" #: setup/class_setupStepFinish.inc:91 msgid "The configuration is currently not readable or it does not exists." @@ -245,20 +243,19 @@ msgid "" "shouldn't." msgstr "" "Après avoir placé le fichier dans le répertoire %s, assurez vous que seul le" -" serveur web puisse lire %s. Vous pouvez exécuter les commandes suivantes " -"pour réaliser cette opération:" +" serveur web puisse lire %s." #: setup/class_setupStepChecks.inc:30 setup/class_setupStepMigrate.inc:206 msgid "PHP module and extension checks" -msgstr "Extension PHP et vérification de celles-ci" +msgstr "Vérification des extensions et modules PHP" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" -"Configuration de PHP (<a href=\"?info\" target=\"_blank\">montrer les " -"informations)</a>)" +"Configuration de PHP (<a href=\"?info\" target=\"_blank\">afficher les " +"informations</a>)" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 msgid "Installation check" @@ -266,8 +263,7 @@ msgstr "Vérification de l'installation" #: setup/class_setupStepChecks.inc:50 msgid "Basic checks for PHP compatibility and extensions" -msgstr "" -"Vérification de base de la version de PHP et des extensions nécéssaires." +msgstr "Vérification de base de la version de PHP et des extensions" #: setup/class_setupStepChecks.inc:67 msgid "Checking PHP version" @@ -280,33 +276,33 @@ msgstr "PHP doit être à la version %s ou supérieure." #: setup/class_setupStepChecks.inc:69 msgid "Please upgrade to a supported version." -msgstr "Veuillez faire la mise à jour vers une version supportée." +msgstr "Veuillez mettre à jour vers une version supportée." #: setup/class_setupStepChecks.inc:76 msgid "FusionDirectory requires this module to talk with your LDAP server." msgstr "" -"FusionDirectory à besoin de ce module pour dialoguer avec votre annuaire " -"ldap." +"FusionDirectory a besoin de ce module pour dialoguer avec votre serveur " +"LDAP." #: setup/class_setupStepChecks.inc:84 msgid "" "FusionDirectory requires this module for an internationalized interface." msgstr "" -"FusionDirectory à besoin de ce module pour afficher l'interface multilingue." +"FusionDirectory a besoin de ce module pour afficher l'interface multilingue." #: setup/class_setupStepChecks.inc:92 msgid "" "FusionDirectory requires this module to communicate with different types of " "servers and protocols." msgstr "" -"FusionDirectory à besoin de ce module pour dialoguer avec les différents " +"FusionDirectory a besoin de ce module pour dialoguer avec les différents " "types de serveurs et de protocoles." #: setup/class_setupStepChecks.inc:100 msgid "" "FusionDirectory requires this module to encode variables for javascript use." msgstr "" -"FusionDirectory a besoin de ce module pour encoder les variables pour " +"FusionDirectory a besoin de ce module pour encoder les variables lors de " "l'utilisation dans du javascript." #: setup/class_setupStepChecks.inc:108 @@ -315,24 +311,24 @@ msgid "" "filter." msgstr "" "FusionDirectory a besoin de ce module pour filtrer les variables avec un " -"filtre spécifique" +"filtre spécifique." #: setup/class_setupStepChecks.inc:116 msgid "FusionDirectory requires this module for the samba integration." -msgstr "FusionDirectory à besoin de ce module pour dialoguer avec Samba." +msgstr "FusionDirectory a besoin de ce module pour l’intégration Samba." #: setup/class_setupStepChecks.inc:124 msgid "" "FusionDirectory requires either 'mhash' or the 'sha1' module to make use of " "SSHA encryption." msgstr "" -"FusionDirectory à besoin du module 'mash' ou 'sha1' pour l'utilisation du " -"cryptage SSHA." +"FusionDirectory a besoin du module 'mhash' ou 'sha1' pour l’utilisation du " +"chiffrement SSHA." #: setup/class_setupStepChecks.inc:132 msgid "FusionDirectory requires this module to talk to an IMAP server." msgstr "" -"FusionDirectory à besoin de ce module pour dialoguer avec un serveur IMAP." +"FusionDirectory a besoin de ce module pour dialoguer avec un serveur IMAP." #: setup/class_setupStepChecks.inc:139 msgid "mbstring" @@ -341,7 +337,7 @@ msgstr "mbstring" #: setup/class_setupStepChecks.inc:140 msgid "FusionDirectory requires this module to handle unicode strings." msgstr "" -"FusionDirectory a besoin de ce module pour gérer les chaînes de caractère " +"FusionDirectory a besoin de ce module pour gérer les chaînes de caractère " "unicode." #: setup/class_setupStepChecks.inc:146 @@ -350,16 +346,15 @@ msgstr "imagick" #: setup/class_setupStepChecks.inc:147 msgid "FusionDirectory requires this extension to handle images." -msgstr "FusionDirectory a besoin de ce module pour gérer les images." +msgstr "FusionDirectory a besoin de ce module pour gérer les images." #: setup/class_setupStepChecks.inc:153 msgid "compression module" -msgstr "Module de compression" +msgstr "module de compression" #: setup/class_setupStepChecks.inc:154 msgid "FusionDirectory requires this extension to handle snapshots." -msgstr "" -"FusionDirectory a besoin de ce module pour gérer les copie instantanées." +msgstr "FusionDirectory a besoin de ce module pour gérer les instantanés." #: setup/class_setupStepChecks.inc:164 msgid "" @@ -374,7 +369,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:165 msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." msgstr "" -"Recherchez l'option 'register_globals' dans votre php.ini et mettez la à " +"Cherchez l'option 'register_globals' dans votre php.ini et mettez la à " "'Off'." #: setup/class_setupStepChecks.inc:172 @@ -387,20 +382,20 @@ msgid "" "before they really timeout." msgstr "" "Mettre cette valeur à 1 jour permet d'éviter de perde les cookies et les " -"sessions avant qu'elles soient réellement expirées." +"sessions avant qu'elles ne soient réellement expirées." #: setup/class_setupStepChecks.inc:174 msgid "" "Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " "higher." msgstr "" -"Cherchez pour 'session.gc_maxlifetime' dans votre php.ini et mettez le à " -"86400 ou plus haut." +"Cherchez 'session.gc_maxlifetime' dans votre php.ini et mettez le à 86400 ou" +" plus." #: setup/class_setupStepChecks.inc:181 setup/class_setupStepChecks.inc:197 #: setup/class_setupStepChecks.inc:213 setup/class_setupStepChecks.inc:221 msgid "Off" -msgstr "Eteint" +msgstr "Éteint" #: setup/class_setupStepChecks.inc:182 msgid "" @@ -408,41 +403,41 @@ msgid "" "option in your php.ini should be set to 'Off'." msgstr "" "Pour pouvoir utiliser FusionDirectory sans problèmes, la variable " -"session.auto_register doit être à 'Off' dans votre php.ini." +"session.auto_start doit être à 'Off' dans votre php.ini." #: setup/class_setupStepChecks.inc:183 msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." msgstr "" -"Recherchez la variable session.auto_register et mettez la à 'Off' dans " -"votre php.ini." +"Cherchez la variable 'session.auto_start' dans votre php.ini et mettez la à " +"'Off'." #: setup/class_setupStepChecks.inc:190 msgid "" "FusionDirectory needs at least 128MB of memory. Setting it below this limit " "may cause errors that are not reproducable! Increase it for larger setups." msgstr "" -"FusionDirectory a besoin au minimum de 128MB de mémoire. Allouer moins que " -"128MB causera des erreurs imprévisibles, qui ne seront pas reproductibles ! " +"FusionDirectory a besoin au minimum de 128MB de mémoire. Allouer moins " +"causera des erreurs imprévisibles, qui ne seront pas reproductibles ! " "Augmentez la mémoire pour les installations plus complexes." #: setup/class_setupStepChecks.inc:191 msgid "" "Search for 'memory_limit' in your php.ini and set it to '128M' or higher." msgstr "" -"Recherchez 'memory_limit' dans votre fichier php.ini votre et mettez le à " -"'128M' ou plus haut." +"Cherchez 'memory_limit' dans votre fichier php.ini votre et mettez le à " +"'128M' ou plus." #: setup/class_setupStepChecks.inc:198 msgid "" "This option influences the PHP output handling. Turn this Option off, to " "increase performance." msgstr "" -"Cette option défini la gestion des sorties, mettez cette option à 'Off', " -"pour améliorer la performance." +"Cette option défini la gestion des sorties, mettez cette option à 'Off' pour" +" améliorer les performances." #: setup/class_setupStepChecks.inc:199 msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." -msgstr "Recherchez 'implicit_flush' dans votre php.ini et mettez le à 'Off'." +msgstr "Cherchez 'implicit_flush' dans votre php.ini et mettez le à 'Off'." #: setup/class_setupStepChecks.inc:206 msgid "The Execution time should be at least 30 seconds." @@ -453,7 +448,7 @@ msgid "" "Search for 'max_execution_time' in your php.ini and set it to '30' or " "higher." msgstr "" -"Rechercher l'option 'max_execution_time' dans votre php.ini et mettez le à " +"Chercher l'option 'max_execution_time' dans votre php.ini et mettez la à " "'30' ou plus." #: setup/class_setupStepChecks.inc:214 @@ -462,11 +457,11 @@ msgid "" "any information about the server you are running in this case." msgstr "" "Augmentez la sécurité de votre serveur en mettant l'option expose_php à " -"'Off'. PHP n'enverra pas d'information a propos du serveur." +"'Off'. PHP n'enverra pas d'information à propos du serveur." #: setup/class_setupStepChecks.inc:215 msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." -msgstr "Recherchez 'expose_php' dans votre php.ini et mettez le à 'Off'." +msgstr "Cherchez 'expose_php' dans votre php.ini et mettez le à 'Off'." #: setup/class_setupStepChecks.inc:222 msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." @@ -479,8 +474,8 @@ msgid "" "Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to " "'Off'." msgstr "" -"Recherchez l'option 'zend.ze1_compatibility_mode' dans votre hp.ini et " -"mettez la à 'Off'." +"Cherchez l'option 'zend.ze1_compatibility_mode' dans votre hp.ini et mettez " +"la à 'Off'." #: setup/class_setupStepMigrate.inc:133 include/class_msgPool.inc:486 #: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14 @@ -493,7 +488,7 @@ msgstr "Migrer" #: setup/class_setupStepMigrate.inc:223 setup/class_setupStepMigrate.inc:224 msgid "LDAP inspection" -msgstr "Vérification de l'annuaire LDAP" +msgstr "Inspection LDAP" #: setup/class_setupStepMigrate.inc:225 msgid "Analyze your current LDAP for FusionDirectory compatibility" @@ -502,25 +497,25 @@ msgstr "" #: setup/class_setupStepMigrate.inc:233 msgid "Give all rights on users in the given branch" -msgstr "Donner tout les droits au utilisateurs sur cette branche" +msgstr "Donner tous les droits aux utilisateurs sur cette branche" #: setup/class_setupStepMigrate.inc:239 msgid "" "Allow users to edit their own information (main tab and posix use only on " "base)" msgstr "" -"Permettre au utilisateurs d'éditer leur propre information (tab générique et" -" posix, a n'utiliser que sur la base)" +"Permet aux utilisateurs d'éditer leurs propres informations (onglets " +"générique et posix, à n'utiliser que sur la base)" #: setup/class_setupStepMigrate.inc:245 msgid "Allow users to edit their own password (use only on base)" msgstr "" -"Permettre au utilisateurs de changer leur mot de passe (a utiliser que sur " +"Permet aux utilisateurs de changer leur mot de passe (à n’utiliser que sur " "la base)" #: setup/class_setupStepMigrate.inc:258 msgid "Inspecting object classes in root object" -msgstr "Inspecter les classes d'objets de l'objet racine" +msgstr "Inspection des classes d'objets de l'objet racine" #: setup/class_setupStepMigrate.inc:259 msgid "Checking permission for LDAP database" @@ -528,7 +523,7 @@ msgstr "Vérification des permissions sur l'annuaire LDAP" #: setup/class_setupStepMigrate.inc:260 msgid "Checking for invisible users" -msgstr "Vérification des utilisateurs invisibles" +msgstr "Recherche d’utilisateurs invisibles" #: setup/class_setupStepMigrate.inc:261 msgid "Checking for super administrator" @@ -540,19 +535,19 @@ msgstr "Vérification des rôles ACL et groupes par défaut" #: setup/class_setupStepMigrate.inc:263 msgid "Checking for users outside the people tree" -msgstr "Vérification d'utilisateurs en dehors de la branche people" +msgstr "Recherche d'utilisateurs en dehors de la branche des utilisateurs" #: setup/class_setupStepMigrate.inc:264 msgid "Checking for groups outside the groups tree" -msgstr "Vérification des groupes en dehors de la branche groups" +msgstr "Recherche de groupes en dehors de la branche des groupes" #: setup/class_setupStepMigrate.inc:265 msgid "Checking for invisible departments" -msgstr "Vérification des départements invisibles" +msgstr "Recherche de départements invisibles" #: setup/class_setupStepMigrate.inc:266 msgid "Checking for duplicated UID numbers" -msgstr "Vérification pour les uid en double" +msgstr "Recherche d’UID en double" #: setup/class_setupStepMigrate.inc:267 msgid "Checking for duplicated GID numbers" @@ -564,7 +559,7 @@ msgstr "Recherche de GID en double" #: setup/class_setupStepMigrate.inc:1100 setup/class_setupStepMigrate.inc:1193 #: setup/class_setupStepMigrate.inc:1271 setup/class_setupStepMigrate.inc:1315 msgid "LDAP query failed" -msgstr "La requête LDAP à échoué" +msgstr "La requête LDAP a échoué" #: setup/class_setupStepMigrate.inc:330 setup/class_setupStepMigrate.inc:489 #: setup/class_setupStepMigrate.inc:566 setup/class_setupStepMigrate.inc:701 @@ -572,18 +567,18 @@ msgstr "La requête LDAP à échoué" #: setup/class_setupStepMigrate.inc:1101 setup/class_setupStepMigrate.inc:1194 #: setup/class_setupStepMigrate.inc:1272 setup/class_setupStepMigrate.inc:1316 msgid "Possibly the \"root object\" is missing." -msgstr "L'objet racine est probablement manquant." +msgstr "L'objet racine est peut-être manquant." #: setup/class_setupStepMigrate.inc:346 setup/class_setupStepMigrate.inc:369 #: setup/class_setupStepMigrate.inc:420 setup/class_setupStepMigrate.inc:500 #: setup/class_setupStepMigrate.inc:511 setup/class_setupStepMigrate.inc:803 msgid "Failed" -msgstr "Echec" +msgstr "Échec" #: setup/class_setupStepMigrate.inc:347 #, php-format msgid "Missing FusionDirectory object class '%s'!" -msgstr "Object class FusionDirectory obligatoire '%s' manquante !" +msgstr "Object class FusionDirectory obligatoire '%s' manquante !" #: setup/class_setupStepMigrate.inc:348 msgid "Please check your installation." @@ -595,8 +590,8 @@ msgid "" "Cannot handle the structural object type of your root object. Please try to " "add the object class '%s' manually." msgstr "" -"Impossible de gérer l'objet structural de votre objet racine. S'il vous " -"plaît essayer de ajouter la classe d'objet '%s' à la main." +"Impossible de gérer l'objet structural de votre objet racine. Veuillez " +"essayer d’ajouter la classe d’objet '%s' à la main." #: setup/class_setupStepMigrate.inc:452 setup/class_setupStepMigrate.inc:1051 #: include/password-methods/class_password-methods.inc:189 @@ -618,12 +613,12 @@ msgstr "Erreur LDAP" #: setup/class_setupStepMigrate.inc:501 #, php-format msgid "The specified user \"%s\" does not have full access to your LDAP database." -msgstr "L'utilisateur \"%s\" n'a pas un accès complet à votre annuaire LDAP." +msgstr "L'utilisateur «%s» n'a pas un accès complet à votre annuaire LDAP." #: setup/class_setupStepMigrate.inc:512 #, php-format msgid "The specified user \"%s\" does not have full access to your ldap database." -msgstr "L'utilisateur \"%s\" n'a pas un accès complet à votre annuaire LDAP." +msgstr "L'utilisateur «%s» n'a pas un accès complet à votre annuaire LDAP." #: setup/class_setupStepMigrate.inc:575 #, php-format @@ -631,8 +626,8 @@ msgid "" "Found %s user(s) that will not be visible in FusionDirectory or which are " "incomplete." msgstr "" -"J'ai trouvé %s utilisateur(s) qui ne seront pas visibles dans ans " -"FusionDirec." +"%s utilisateur(s) trouvé(s) qui ne seront pas visibles dans FusionDirectory " +"ou qui sont incomplet(s)." #: setup/class_setupStepMigrate.inc:584 setup/class_setupStepMigrate.inc:589 msgid "User migration" @@ -645,7 +640,7 @@ msgstr "Erreur de migration" #: setup/class_setupStepMigrate.inc:674 #, php-format msgid "Cannot migrate entry \"%s\":" -msgstr "Impossible de migrer l'entrée '%s' :" +msgstr "Impossible de migrer l'entrée «%s» :" #: setup/class_setupStepMigrate.inc:792 #: plugins/addons/dashboard/class_dashBoardUsers.inc:27 @@ -664,7 +659,7 @@ msgstr "Rôles" #: setup/class_setupStepMigrate.inc:804 msgid "There is no FusionDirectory administrator account inside your LDAP." msgstr "" -"Il n'y a pas d'administrateurs FusionDirectory dans votre annuaire LDAP." +"Il n'y a pas d'administrateur FusionDirectory dans votre annuaire LDAP." #: setup/class_setupStepMigrate.inc:805 #: include/simpleplugin/simple-list.xml:59 @@ -675,38 +670,37 @@ msgstr "Créer" #: setup/class_setupStepMigrate.inc:842 msgid "Gives all rights on all objects" -msgstr "Donner tous les droits sur tous les objets" +msgstr "Donne tous les droits sur tous les objets" #: setup/class_setupStepMigrate.inc:916 msgid "Default ACL roles have not been inserted" -msgstr "Les ACL par défaut n'ont pas été insérées" +msgstr "Les rôles ACL par défaut n'ont pas été insérés" #: setup/class_setupStepMigrate.inc:918 msgid "Some default ACL roles are missing" -msgstr "Certaines ACL par défaut sont manquantes" +msgstr "Certains rôles ACL par défaut sont manquants" #: setup/class_setupStepMigrate.inc:920 msgid "Default ACL roles have been inserted" -msgstr "Les ACL par défaut on été insérées" +msgstr "Les rôles ACL par défaut ont été insérés" #: setup/class_setupStepMigrate.inc:950 #, php-format msgid "Cannot add ACL role \"%s\":" -msgstr "Impossible d’ajouter un rôle ACL pour '%s' :" +msgstr "Impossible d’ajouter le rôle ACL «%s» :" #: setup/class_setupStepMigrate.inc:1005 #, php-format msgid "Found %s user(s) outside the configured tree \"%s\"." -msgstr "%s utilsateur(s) trouvé(s) en dehors de la branche configurée \"%s\"." +msgstr "%s utilsateur(s) trouvé(s) en dehors de la branche configurée «%s»." #: setup/class_setupStepMigrate.inc:1019 setup/class_setupStepMigrate.inc:1033 msgid "Move users into configured user tree" -msgstr "Bouger les utilisateurs dans la branche utilisateur configurée" +msgstr "Déplacer les utilisateurs dans la branche configurée" #: setup/class_setupStepMigrate.inc:1051 msgid "Cannot move entries to the requested department!" -msgstr "" -"Impossible de déplacer les utilisateurs vers le département spécifié !" +msgstr "Impossible de déplacer les entrées vers le département spécifié !" #: setup/class_setupStepMigrate.inc:1063 msgid "Entry will be moved from" @@ -723,7 +717,7 @@ msgstr "Les références suivantes seront mises à jour" #: setup/class_setupStepMigrate.inc:1124 #, php-format msgid "Found %s groups outside the configured tree '%s'." -msgstr "J'ai trouvé %s groupes en dehors de la branche configurée '%s'." +msgstr "%s groupes trouvés en dehors de la branche configurée '%s'." #: setup/class_setupStepMigrate.inc:1138 setup/class_setupStepMigrate.inc:1152 msgid "Move groups into configured groups tree" @@ -733,7 +727,7 @@ msgstr "Déplacer les groupes dans la branche configurée" #, php-format msgid "Found %s department(s) that will not be visible in FusionDirectory." msgstr "" -"J'ai trouvé %s département(s) qui ne seront pas visible dans " +"%s département(s) trouvé(s) qui ne seront pas visible(s) dans " "FusionDirectory." #: setup/class_setupStepMigrate.inc:1243 setup/class_setupStepMigrate.inc:1248 @@ -743,16 +737,16 @@ msgstr "Migration des départements" #: setup/class_setupStepMigrate.inc:1298 #, php-format msgid "Found %s duplicate values for attribute \"uidNumber\":%s" -msgstr "%s valeurs dupliquées trouvées pour l'attribut \"uidNumber\" : %s" +msgstr "%s valeurs dupliquées trouvées pour l'attribut «uidNumber» : %s" #: setup/class_setupStepMigrate.inc:1342 #, php-format msgid "Found %s duplicate values for attribute \"gidNumber\":%s" -msgstr "%s valeurs dupliquées trouvées pour l'attribut \"gidNumber\" : %s" +msgstr "%s valeurs dupliquées trouvées pour l'attribut «gidNumber» : %s" #: setup/class_setupStepWelcome.inc:51 msgid "Welcome to FusionDirectory setup wizard" -msgstr "Bienvenue à l'assistant de configuration FusionDirectory" +msgstr "Bienvenue dans l'assistant de configuration de FusionDirectory" #: setup/class_setupStepWelcome.inc:52 msgid "The welcome message" @@ -761,8 +755,8 @@ msgstr "Le message d'accueil" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -771,7 +765,7 @@ msgstr "Erreur interne" #: include/class_logging.inc:81 #, php-format msgid "Logging failed: %s" -msgstr "Echec du Journal système : %s" +msgstr "Échec du journal système : %s" #: include/class_logging.inc:103 #, php-format @@ -780,7 +774,7 @@ msgstr "Option %s invalide !" #: include/class_logging.inc:107 msgid "Specified objectType is empty or invalid!" -msgstr "Le type d'objet spécifié est vide ou invalide !" +msgstr "Le type d’objet spécifié est vide ou invalide !" #: include/class_baseSelector.inc:212 include/class_listing.inc:1174 #: include/class_listing.inc:1176 @@ -794,11 +788,11 @@ msgstr "Soumettre" #: include/class_listing.inc:312 include/class_listing.inc:1182 #: include/class_listing.inc:1184 msgid "Up" -msgstr "Au dessus" +msgstr "Haut" #: include/class_listing.inc:312 msgid "Down" -msgstr "En bas" +msgstr "Bas" #: include/class_listing.inc:312 #: include/simpleplugin/attributes/class_SetAttribute.inc:463 @@ -823,7 +817,7 @@ msgstr "Sélectionner tout" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -838,11 +832,11 @@ msgstr "Erreur" #: include/class_listing.inc:569 msgid "created by" -msgstr "Crée par" +msgstr "créé par" #: include/class_listing.inc:1174 msgid "Go to root department" -msgstr "Aller au département de base" +msgstr "Aller à la racine" #: include/class_listing.inc:1182 msgid "Go up one department" @@ -850,7 +844,7 @@ msgstr "Monter d'un département" #: include/class_listing.inc:1190 msgid "Go to user's department" -msgstr "Aller au département des utilisateurs" +msgstr "Aller au département de l’utilisateur" #: include/class_listing.inc:1190 include/class_listing.inc:1192 msgid "Home" @@ -889,7 +883,7 @@ msgstr "Copier cette entrée" #: include/class_listing.inc:1709 include/class_listing.inc:1711 msgid "Restore snapshots" -msgstr "Restaurer la copie instantanée" +msgstr "Restaurer des instantanés" #: include/class_listing.inc:1725 msgid "Export list" @@ -897,20 +891,20 @@ msgstr "Exporter la liste" #: include/class_listing.inc:1757 include/class_listing.inc:1758 msgid "Restore snapshot" -msgstr "Restaurer la copie instantanée" +msgstr "Restaurer un instantané" #: include/class_listing.inc:1770 msgid "Create snapshot" -msgstr "Créer un snapshot" +msgstr "Créer un instantané" #: include/class_listing.inc:1771 msgid "Create a new snapshot from this object" -msgstr "Créer un nouveau snapshot depuis cet objet" +msgstr "Créer un nouvel instantané depuis cet objet" #: include/password-methods/class_password-methods-sasl.inc:65 #, php-format msgid "Cannot change password, unknown user \"%s\"" -msgstr "Impossible de changer le mot de passe, utilisateur \"%s\" inconnu." +msgstr "Impossible de changer le mot de passe, utilisateur «%s» inconnu." #: include/password-methods/class_password-methods-sasl.inc:92 msgid "" @@ -925,7 +919,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Erreur de configuration" @@ -936,7 +930,8 @@ msgstr "Page" #: include/exporter/class_pdfExporter.inc:58 msgid "No PDF export possible: there is no FPDF library installed." -msgstr "Pas d'exportation en pdf, la librairie FPDF n'est pas installée." +msgstr "" +"Exportation en PDF impossible, la bibliothèque FPDF n'est pas installée." #: include/exporter/class_pdfExporter.inc:196 msgid "PDF" @@ -964,7 +959,6 @@ msgid "Permission" msgstr "Permissions" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Tout annuler" @@ -976,7 +970,6 @@ msgstr "Impossible de coller" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Identifiant" @@ -992,10 +985,10 @@ msgstr "Modèle" #: include/class_template.inc:42 msgid "Object template, used to create several objects with similar values" msgstr "" -"modèle d'objet, utilisé pour créer plusieurs objets avec des valeurs " +"Modèle d'objet, utilisé pour créer plusieurs objets avec des valeurs " "similaires" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nom du modèle" @@ -1004,7 +997,7 @@ msgstr "Nom du modèle" #, php-format msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -"Erreur fatale : pas d'emplacement défini pour les classes - veuillez " +"Erreur fatale : pas d'emplacement défini pour les classes - veuillez " "exécuter '%s' pour régler le problème" #: include/functions.inc:116 @@ -1012,10 +1005,10 @@ msgstr "" msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -"Erreur fatale : impossible d'initialiser la classe '%s' - veuillez exécuter " +"Erreur fatale : impossible d'initialiser la classe '%s' - veuillez exécuter " "'%s' pour essayer de régler le problème" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1027,7 +1020,7 @@ msgstr "Erreur Fatale" #, php-format msgid "FATAL: Error when connecting the LDAP. Server said '%s'." msgstr "" -"FATAL: Erreur lors de la connexion au serveur LDAP. Le serveur à répondu " +"FATAL : Erreur lors de la connexion au serveur LDAP. Le serveur a répondu " "'%s'." #: include/functions.inc:535 @@ -1035,7 +1028,7 @@ msgid "" "Login (uid) is not unique inside the LDAP tree. Please contact your " "administrator." msgstr "" -"Ce login (uid) n'est pas unique au sein de l’annuaire LDAP. Veuillez " +"Cet identifiant (uid) n'est pas unique au sein de l’annuaire LDAP. Veuillez " "contacter votre administrateur système." #: include/functions.inc:595 @@ -1047,12 +1040,12 @@ msgid "" "It seems your user password has expired. Please use <a " "href=\"recovery.php\">password recovery</a> to change it." msgstr "" -"Il semble que votre mot de passe soit expiré. Veuillez utilisez <a " +"Il semble que votre mot de passe soit expiré. Veuillez utiliser <a " "href=\"recovery.php\">la récupération de mot de passe</a> pour le changer." #: include/functions.inc:647 include/functions.inc:768 msgid "Error while adding a lock. Contact the developers!" -msgstr "Erreur lors de l'ajout d'un verrou. Contactez les développeurs !" +msgstr "Erreur lors de l'ajout d'un verrou. Contactez les développeurs !" #: include/functions.inc:657 #, php-format @@ -1060,13 +1053,13 @@ msgid "" "Cannot create locking information in LDAP tree. Please contact your " "administrator!" msgstr "" -"Impossible d'obtenir les informations de verrouillage dans l'annuaire LDAP. " -"Veuillez contacter votre administrateur !" +"Impossible de créer des informations de verrouillage dans l'annuaire LDAP. " +"Veuillez contacter votre administrateur !" #: include/functions.inc:657 #, php-format msgid "LDAP server returned: %s" -msgstr "Le serveur LDAP à retourné: %s" +msgstr "Le serveur LDAP a retourné : %s" #: include/functions.inc:846 msgid "" @@ -1079,7 +1072,7 @@ msgstr "" #: include/functions.inc:875 #, php-format msgid "The size limit of %d entries is exceed!" -msgstr "La taille limite de %d entrées est dépassée !" +msgstr "La taille limite de %d entrées est dépassée !" #: include/functions.inc:877 #, php-format @@ -1098,142 +1091,142 @@ msgstr "Configurer" msgid "incomplete" msgstr "incomplet" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Continuer malgré tout" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Éditer malgré tout" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" -msgstr "Vous êtes sur le point d'éditer l'entrée(s) %s" +msgstr "Vous êtes sur le point d'éditer le(s) entrée(s) %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sO" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "%sKiO" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "%sMiO" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "%sGiO" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "%sTiO" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "%sPiO" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "%sEiO" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "%sZiO" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "%sYiO" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -"Le ficheir '%s' ne peut être supprimé. Essayer de lancer la commande " -"\"fusiondirectory-setup --check-directories\" sur le serveur FusionDirectory" -" pour corriger les permissions de fichiers" +"Le fichier '%s' n’a pas pu être supprimé. Essayez de lancer la commande " +"«fusiondirectory-setup --check-directories» sur le serveur FusionDirectory " +"pour corriger les permissions." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" -msgstr "Impossible d'écrire le fichier de revision !" +msgstr "Impossible d'écrire le fichier de révision !" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "Impossible de lire le fichier de révision !" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Avertissement LDAP" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Impossible de récupérer les informations sur les schémas depuis le serveur. " -"Vérification des schémas impossibles !" +"Vérification des schémas impossible !" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" -msgstr "schéma principal de FusionDirectory" +msgstr "Schéma principal de FusionDirectory" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "Schéma utilisé pour stocker la configuration de FusionDirectory" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -"Utilisé pour stocker l'autorisation de connexion chez les utilisateurs ou " +"Utilisé pour stocker l'autorisation de connexion dans les utilisateurs ou " "les groupes." -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." -msgstr "Utilisé pour stocker les modèles" +msgstr "Utilisé pour stocker les modèles." -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." -msgstr "Utilisé pour stocker des informations POSIX." +msgstr "Utilisé pour stocker les informations POSIX." -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "Object class obligatoire \"%s\" manquante !" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "Object class facultative \"%s\" manquante !" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Classe(s) disponible(s)" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -"Vous avez installé le plugin «mixed groups», mais vos schéma ne sont pas " +"Vous avez installé le plugin «mixed groups», mais vos schémas ne sont pas " "compatibles." -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" @@ -1241,7 +1234,7 @@ msgstr "" "Pour pouvoir utiliser «mixed groups» l’objectClass «posixGroup» doit être " "auxiliaire («AUXILIARY»)" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." @@ -1249,34 +1242,34 @@ msgstr "" "Vos schémas sont fait pour utiliser des «mixed groups», mais ce plugin n’est" " pas installé." -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "L’objectClass «posixGroup» doit être structurelle («STRUCTURAL»)" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -"Je n'ai pas trouvé '%s' - veuillez exécuter '%s' pour régler ce problème" +"Le fichier '%s' n’a pas été trouvé - veuillez exécuter '%s' pour régler ce " +"problème" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" -msgstr "Tout les objets dans cette catégorie" +msgstr "Tous les objets dans cette catégorie" #: include/class_msg_dialog.inc:177 msgid "Please fix the above error and reload the page." -msgstr "Veuillez fixer l'erreur ci dessus et recharger la page." +msgstr "Veuillez corriger l'erreur ci-dessus et recharger la page." #: include/class_timezone.inc:52 #, php-format msgid "The timezone setting \"%s\" in your configuration is not valid." -msgstr "" -"Le fuseau horaire '%s' indiqué dans votre configuration est invalide. " +msgstr "Le fuseau horaire «%s» indiqué dans votre configuration est invalide." #: include/class_config.inc:151 #, php-format msgid "XML error in fusiondirectory.conf: %s at line %d" -msgstr "Erreur XML dans fusiondirectory.conf: %s à la ligne %d" +msgstr "Erreur XML dans fusiondirectory.conf : %s à la ligne %d" #: include/class_config.inc:272 #, php-format @@ -1284,9 +1277,8 @@ msgid "" "It seems you are trying to decode something which is not encoded : %s<br/>\n" "Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted." msgstr "" -"Il semble que vous essayez de déchiffrer quelque chose qui n'est pas chiffré" -" :%s<br/>\\nVeuillez vérifier que vous n'utilisez pas un fichier " -"fusiondirectory.secrets alors que vos mots de passe ne sont pas chiffrés." +"Il semble que vous essayez de déchiffrer quelque chose qui n'est pas chiffré :%s<br/>\n" +"Veuillez vérifier que vous n'utilisez pas un fichier fusiondirectory.secrets alors que vos mots de passe ne sont pas chiffrés." #: include/class_config.inc:313 msgid "Cannot bind to LDAP. Please contact the system administrator." @@ -1297,33 +1289,34 @@ msgstr "" #: include/class_config.inc:347 #, php-format msgid "Location \"%s\" could not be found in the configuration file" -msgstr "La location \"%s\" n'est pas présente dans le fichier de configuration" +msgstr "" +"La configuration «%s» n'est pas présente dans le fichier de configuration" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -"La fonctionnalité des instantanés est activée, mais la variable requise " -"\"%s\" n'est pas configurée." +"La fonctionnalité des instantanés est activée, mais la variable requise «%s»" +" n'est pas configurée." -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" "La fonctionnalité des instantanés est activée, mais le module nécessaire à " -"la compression est manquant. Veuillez installer \"%s\". " +"la compression est manquant. Veuillez installer «%s». " -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Toutes les catégories" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" -msgstr "Mon Compte" +msgstr "Mon compte" #: include/class_msgPool.inc:43 #, php-format @@ -1338,125 +1331,128 @@ msgstr "Sélectionner pour lister les objets contenant '%s'." #: include/class_msgPool.inc:47 #, php-format msgid "Select to list objects that have '%s' enabled" -msgstr "Sélectionnez pour lister les objets qui ont '%s' activés" +msgstr "Sélectionnez pour lister les objets qui ont '%s' activé" #: include/class_msgPool.inc:49 msgid "Select to search within subtrees" -msgstr "Sélectionner pour chercher dans le sous arbre" +msgstr "Sélectionner pour chercher dans les sous-arbres" #: include/class_msgPool.inc:51 include/class_filter.inc:354 msgid "Search in subtrees" -msgstr "Chercher dans les sous arbre" +msgstr "Chercher dans les sous-arbres" #: include/class_msgPool.inc:67 msgid "This object will be deleted!" -msgstr "Cet objet sera effacé !" +msgstr "Cet objet sera effacé !" #: include/class_msgPool.inc:69 #, php-format msgid "This '%s' object will be deleted!" -msgstr "L'objet '%s' sera effacé !" +msgstr "L'objet '%s' sera effacé !" #: include/class_msgPool.inc:74 #, php-format msgid "This object will be deleted: %s" -msgstr "Cet objet sera effacé : %s" +msgstr "Cet objet sera effacé : %s" #: include/class_msgPool.inc:76 #, php-format msgid "This '%s' object will be deleted: %s" -msgstr "L'objet de type '%s' sera effacé: %s" +msgstr "L'objet de type '%s' sera effacé : %s" #: include/class_msgPool.inc:81 msgid "This object will be deleted:" -msgstr "Cet objet sera effacé: " +msgstr "Cet objet sera effacé : " #: include/class_msgPool.inc:83 #, php-format msgid "This '%s' object will be deleted:" -msgstr "L'objet de type '%s' sera effacé:" +msgstr "L'objet de type '%s' sera effacé :" #: include/class_msgPool.inc:87 #, php-format msgid "These objects will be deleted: %s" -msgstr "Ces objets seront effacés: %s" +msgstr "Ces objets seront effacés : %s" #: include/class_msgPool.inc:89 #, php-format msgid "These '%s' objects will be deleted: %s" -msgstr "Ces objets de type '%s' seront effacés: %s" +msgstr "Ces objets de type '%s' seront effacés : %s" #: include/class_msgPool.inc:101 msgid "You have no permission to delete this object!" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet !" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet !" #: include/class_msgPool.inc:105 include/class_msgPool.inc:109 msgid "You have no permission to delete the object:" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet :" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet :" #: include/class_msgPool.inc:112 msgid "You have no permission to delete these objects:" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer ces objets :" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer ces objets :" #: include/class_msgPool.inc:123 msgid "You have no permission to create this object!" -msgstr "Vous n'avez pas les droits nécessaires pour créer cet objet !" +msgstr "Vous n'avez pas les droits nécessaires pour créer cet objet !" #: include/class_msgPool.inc:127 include/class_msgPool.inc:131 msgid "You have no permission to create the object:" -msgstr "Vous n'avez pas les droits nécessaires pour créer l'objet :" +msgstr "Vous n'avez pas les droits nécessaires pour créer l'objet :" #: include/class_msgPool.inc:134 msgid "You have no permission to create these objects:" -msgstr "Vous n'avez pas les droits nécessaires pour créer ces objets :" +msgstr "Vous n'avez pas les droits nécessaires pour créer ces objets :" #: include/class_msgPool.inc:146 msgid "You have no permission to modify this object!" -msgstr "Vous n'avez pas l'autorisation de modifier cet objet !" +msgstr "Vous n'avez pas les droits nécessaires pour modifier cet objet !" #: include/class_msgPool.inc:151 #, php-format msgid "You have no permission to modify the field \"%s\" of object \"%s\"" -msgstr "Vous n'avez pas l'autorisation de modifier le champ \"%s\" de l'objet \"%s\"" +msgstr "" +"Vous n'avez pas les droits nécessaires pour modifier le champ «%s» de " +"l'objet «%s»" #: include/class_msgPool.inc:153 include/class_msgPool.inc:158 #, php-format msgid "You have no permission to modify the object:<br/>%s" -msgstr "Vous n'avez pas l'autorisation de modifier l'objet:<br/>%s" +msgstr "Vous n'avez pas les droits nécessaires pour modifier l’objet :<br/>%s" #: include/class_msgPool.inc:161 #, php-format msgid "You have no permission to modify these objects:<br/>%s" -msgstr "Vous n'avez pas l'autorisation de modifier les objets :<br/>%s" +msgstr "" +"Vous n'avez pas les droits nécessaires pour modifier les objets :<br/>%s" #: include/class_msgPool.inc:172 msgid "You have no permission to view this object!" -msgstr "Vous n'avez pas l'autorisation de voir cet objet !" +msgstr "Vous n'avez pas les droits nécessaires pour voir cet objet !" #: include/class_msgPool.inc:176 include/class_msgPool.inc:180 msgid "You have no permission to view the object:" -msgstr "Vous n'avez pas l'autorisation de voir l'objet :" +msgstr "Vous n'avez pas les droits nécessaires pour voir l'objet :" #: include/class_msgPool.inc:183 msgid "You have no permission to view these objects:" -msgstr "Vous n'avez pas l'autorisation devoir ces objets :" +msgstr "Vous n'avez pas les droits nécessaires pour voir ces objets :" #: include/class_msgPool.inc:194 msgid "You have no permission to move this object!" -msgstr "Vous n'avez pas l'autorisation de bouger cet objet !" +msgstr "Vous n'avez pas les droits nécessaires pour déplacer cet objet !" #: include/class_msgPool.inc:198 include/class_msgPool.inc:202 msgid "You have no permission to move the object:" -msgstr "Vous n'avez pas l'autorisation de bouger l'objet :" +msgstr "Vous n'avez pas les droits nécessaires pour déplacer l'objet :" #: include/class_msgPool.inc:205 msgid "You have no permission to move these objects:" -msgstr "Vous n'avez pas l'autorisation de bouger ces objets :" +msgstr "Vous n'avez pas les droits nécessaires pour déplacer ces objets :" #: include/class_msgPool.inc:223 include/class_msgPool.inc:243 #: include/class_msgPool.inc:273 msgid "Connection information" -msgstr "Informations de connexions" +msgstr "Informations de connexion" #: include/class_msgPool.inc:225 #, php-format @@ -1481,34 +1477,33 @@ msgstr "Impossible d'interroger la base de données %s !" #: include/class_msgPool.inc:285 #, php-format msgid "The field '%s' contains a reserved keyword!" -msgstr "Le champ '%s' contient un mot réservé !" +msgstr "Le champ '%s' contient un mot réservé !" #: include/class_msgPool.inc:297 #, php-format msgid "Command specified as %s hook for plugin '%s' does not exist!" msgstr "" -"La commande '%s', spécifiée comme connexion de l'extension '%s' n'existe pas" -" !" +"La commande '%s', spécifiée comme hook pour le plugin '%s' n'existe pas !" #: include/class_msgPool.inc:313 #, php-format msgid "'%s' command is invalid!" -msgstr "Le commande '%s' est invalide !" +msgstr "La commande '%s' est invalide !" #: include/class_msgPool.inc:315 #, php-format msgid "'%s' command for plugin %s is invalid!" -msgstr "l'option '%s' de la commande pour l'extension %s est invalide !" +msgstr "La commande '%s' pour le plugin %s est invalide !" #: include/class_msgPool.inc:319 #, php-format msgid "'%s' command (%s) is invalid!" -msgstr "l'option '%s' de la commande (%s) est invalide !" +msgstr "La commande '%s' (%s) est invalide !" #: include/class_msgPool.inc:321 #, php-format msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "l'option '%s' de la commande (%s) pour l'extension %s est invalide !" +msgstr "La commande '%s' (%s) pour le plugin %s est invalide !" #: include/class_msgPool.inc:339 #, php-format @@ -1518,23 +1513,22 @@ msgstr "Impossible d'exécuter la commande '%s' !" #: include/class_msgPool.inc:341 #, php-format msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" -"Impossible d'exécuter l'option '%s' de la commande pour l'extension %s !" +msgstr "Impossible d'exécuter la commande '%s' pour le plugin %s !" #: include/class_msgPool.inc:345 #, php-format msgid "Cannot execute '%s' command (%s)!" -msgstr "Impossible d'exécuter l'option '%s' de la commande (%s) !" +msgstr "Impossible d'exécuter la commande '%s' (%s) !" #: include/class_msgPool.inc:347 #, php-format msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "Impossible d'exécuter '%s' de la commande (%s) pour l'extension %s !" +msgstr "Impossible d'exécuter la commande '%s' (%s) pour le plugin %s !" #: include/class_msgPool.inc:362 #, php-format msgid "Value for '%s' is too large!" -msgstr "La valeur pour '%s' est trop grande !" +msgstr "La valeur pour '%s' est trop grande !" #: include/class_msgPool.inc:364 #, php-format @@ -1549,12 +1543,12 @@ msgstr "La valeur pour '%s' est trop petite !" #: include/class_msgPool.inc:380 #, php-format msgid "'%s' must be %d or above!" -msgstr "'%s' doit être à la version %d ou plus grand !" +msgstr "'%s' doit être à la version %d ou plus !" #: include/class_msgPool.inc:393 #, php-format msgid "'%s' depends on '%s' - please provide both values!" -msgstr "'%s' dépend de '%s' - veuillez indiquer les deux valeurs !" +msgstr "'%s' dépend de '%s' - veuillez remplir les deux valeurs !" #: include/class_msgPool.inc:404 #, php-format @@ -1569,7 +1563,7 @@ msgstr "L’entrée '%s' utilise déjà l'attribut '%s' !" #: include/class_msgPool.inc:417 #, php-format msgid "The required field '%s' is empty!" -msgstr "Le champ obligatoire '%s' n'est pas rempli !" +msgstr "Le champ obligatoire '%s' n'est pas rempli !" #: include/class_msgPool.inc:435 msgid "Example:" @@ -1583,7 +1577,7 @@ msgstr "Le champ '%s' contient des caractères invalides" #: include/class_msgPool.inc:456 #, php-format msgid "'%s' is not allowed:" -msgstr "'%s' n'est pas permis :" +msgstr "'%s' n'est pas autorisé :" #: include/class_msgPool.inc:456 #, php-format @@ -1597,19 +1591,16 @@ msgstr "Extension PHP %s manquante !" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Annuler" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Appliquer" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Sauver" @@ -1639,12 +1630,12 @@ msgstr "Supprimer %s" #: include/class_msgPool.inc:532 #, php-format msgid "Edit..." -msgstr "Editer..." +msgstr "Éditer…" #: include/class_msgPool.inc:532 #, php-format msgid "Edit %s..." -msgstr "Editer %s..." +msgstr "Éditer %s…" #: include/class_msgPool.inc:540 msgid "Back" @@ -1661,7 +1652,7 @@ msgid "" "This account has %s settings enabled. You can disable them by clicking " "below." msgstr "" -"Ce compte possède l'extension %s activée. Vous pouvez la supprimer en " +"Ce compte a les paramètres %s activés. Vous pouvez les désactiver en " "cliquant sur le bouton ci-dessous." #: include/class_msgPool.inc:588 include/class_msgPool.inc:595 @@ -1670,8 +1661,8 @@ msgid "" "This account has %s settings enabled. To disable them, you'll need to remove" " the %s settings first!" msgstr "" -"Ce compte possède les paramètres %s activés. Pour les désactiver vous devez " -"au préalable supprimer les paramètres %s !" +"Ce compte a les paramètres %s activés. Pour les désactiver vous devez au " +"préalable désactiver les paramètres %s !" #: include/class_msgPool.inc:610 #, php-format @@ -1679,7 +1670,7 @@ msgid "" "This account has %s settings disabled. You can enable them by clicking " "below." msgstr "" -"Ce compte possède les paramètres %s desactivés. Vous pouvez les activer en " +"Ce compte a les paramètres %s desactivés. Vous pouvez les activer en " "cliquant ci dessous." #: include/class_msgPool.inc:612 @@ -1688,8 +1679,8 @@ msgid "" "This account has %s settings disabled. To enable them, you'll need to add " "the %s settings first!" msgstr "" -"Ce compte possède les paramètres %s désactivés. Pour les activer, vous devez" -" au préalable ajouter les paramètres %s !" +"Ce compte a les paramètres %s désactivés. Pour les activer, vous devez au " +"préalable activer les paramètres %s !" #: include/class_msgPool.inc:614 #, php-format @@ -1703,18 +1694,18 @@ msgstr "" #: include/class_msgPool.inc:625 #, php-format msgid "Add %s settings" -msgstr "Ajouter les paramètres %s" +msgstr "Activer les paramètres %s" #: include/class_msgPool.inc:636 #, php-format msgid "Remove %s settings" -msgstr "Effacer les paramètres %s" +msgstr "Retirer les paramètres %s" #: include/class_msgPool.inc:644 msgid "Click the 'Edit' button below to change information in this dialog" msgstr "" "Cliquez sur le bouton 'Éditer' ci-dessous pour changer les informations dans" -" cette boite de dialogue" +" cette fenêtre" #: include/class_msgPool.inc:652 msgid "January" @@ -1819,11 +1810,11 @@ msgstr "authentification" #: include/class_msgPool.inc:684 #, php-format msgid "LDAP %s failed!" -msgstr "La requête LDAP %s à échoué !" +msgstr "La requête LDAP %s a échoué !" #: include/class_msgPool.inc:686 msgid "LDAP operation failed!" -msgstr "La requête LDAP à échoué !" +msgstr "La requête LDAP a échoué !" #: include/class_msgPool.inc:691 include/class_SnapshotDialogs.inc:33 #: include/class_SnapshotDialogs.inc:182 @@ -1833,46 +1824,46 @@ msgstr "Objet" #: include/class_msgPool.inc:707 msgid "Upload failed!" -msgstr "Le téléchargement à échoué !" +msgstr "Le téléversement a échoué !" #: include/class_msgPool.inc:710 #, php-format msgid "Upload failed: %s" -msgstr "Le téléchargement à échoué : %s" +msgstr "Le téléversement a échoué : %s" #: include/class_msgPool.inc:721 msgid "Communication failure with the infrastructure service!" -msgstr "Erreur de communication avec le service d'infrastructure !" +msgstr "Échec de communication avec le service d'infrastructure !" #: include/class_msgPool.inc:723 #, php-format msgid "Communication failure with the infrastructure service: %s" -msgstr "Erreur de communication avec le service d'infrastructure : %s" +msgstr "Échec de communication avec le service d'infrastructure : %s" #: include/class_msgPool.inc:736 include/class_msgPool.inc:739 #, php-format msgid "This '%s' is still in use by this object: %s" -msgstr "Ce '%s' est en cours d'utilisation par : %s" +msgstr "Ce '%s' est en cours d'utilisation par l’objet : %s" #: include/class_msgPool.inc:742 #, php-format msgid "This '%s' is still in use." -msgstr "Ce '%s' est toujours en utilisation." +msgstr "Ce '%s' est en cours d’utilisation." #: include/class_msgPool.inc:744 #, php-format msgid "This '%s' is still in use by these objects: %s" -msgstr "Ce '%s' est en utilisation par les objets : %s" +msgstr "Ce '%s' est en cours d’utilisation par les objets : %s" #: include/class_msgPool.inc:754 #, php-format msgid "File '%s' does not exist!" -msgstr "Le fichier '%s' n'existe pas !" +msgstr "Le fichier '%s' n'existe pas !" #: include/class_msgPool.inc:764 #, php-format msgid "Cannot open file '%s' for reading!" -msgstr "Impossible de lire le fichier '%s' !" +msgstr "Impossible de lire dans le fichier '%s' !" #: include/class_msgPool.inc:774 #, php-format @@ -1885,13 +1876,13 @@ msgid "" "The value for '%s' is currently unconfigured or invalid, please check your " "configuration file!" msgstr "" -"La valeur de '%s' est actuellement vide ou non valide, veuillez vérifier " -"votre fichier de configuration !" +"La valeur de '%s' est actuellement vide ou invalide, veuillez vérifier votre" +" fichier de configuration !" #: include/class_msgPool.inc:794 #, php-format msgid "Cannot delete file '%s'!" -msgstr "Impossible d'effacer le fichier '%s' !" +msgstr "Impossible de supprimer le fichier '%s' !" #: include/class_msgPool.inc:804 #, php-format @@ -1901,12 +1892,12 @@ msgstr "Impossible de créer le répertoire '%s' !" #: include/class_msgPool.inc:814 #, php-format msgid "Cannot delete folder '%s'!" -msgstr "Impossible d'effacer le répertoire '%s' !" +msgstr "Impossible de supprimer le répertoire '%s' !" #: include/class_msgPool.inc:824 #, php-format msgid "Checking for %s support" -msgstr "Vérification du support pour %s" +msgstr "Vérification du support de %s" #: include/class_msgPool.inc:834 #, php-format @@ -1924,15 +1915,15 @@ msgid "" "Cannot initialize class '%s'! Maybe there is a plugin missing in your " "FusionDirectory setup?" msgstr "" -"Impossible d'initialiser la classe '%s' ! Peut être manque t'il une " -"extension dans votre installation de FusionDirectory ?" +"Impossible d'initialiser la classe '%s' ! Peut-être qu’il manque une " +"extension dans votre installation de FusionDirectory ?" #: include/class_msgPool.inc:862 msgid "" "The supplied base is not valid and has been reset to the previous value!" msgstr "" -"La base fournie n'est pas valide et à été réinitialisée à la valeur " -"précédente !" +"La base fournie n'est pas valide et a été réinitialisée à la valeur " +"précédente !" #: include/class_SnapshotDialogs.inc:30 msgid "Creating an object snapshot" @@ -1948,7 +1939,7 @@ msgstr "Date" #: include/class_SnapshotDialogs.inc:37 msgid "Timestamp of this snapshot creation" -msgstr "Heure de création de l’instantané" +msgstr "Date et heure de création de l’instantané" #: include/class_SnapshotDialogs.inc:41 msgid "Reason" @@ -1972,7 +1963,7 @@ msgstr "Restauration d’instantanés" #: include/class_SnapshotDialogs.inc:186 msgid "Snapshots" -msgstr "Copie instantanée" +msgstr "Instantanés" #: include/class_SnapshotDialogs.inc:186 msgid "Existing snapshots for this object" @@ -2021,8 +2012,7 @@ msgstr "Arguments" #: include/php_setup.inc:231 msgid "Generating this page caused the PHP interpreter to raise some errors!" msgstr "" -"La création de cette page à occasionné des erreurs d'après l'interpréteur " -"PHP !" +"La génération de cette page a causé des erreurs dans l'interpréteur PHP !" #: include/php_setup.inc:236 msgid "Send bug report to the FusionDirectory Team" @@ -2030,7 +2020,7 @@ msgstr "Envoyer le rapport de bugs à l'équipe FusionDirectory" #: include/php_setup.inc:237 msgid "Send bugreport" -msgstr "Envoyer un rapport de bug" +msgstr "Envoyer le rapport de bug" #: include/php_setup.inc:242 msgid "Toggle information" @@ -2044,22 +2034,22 @@ msgstr "Avertissement de performance" #, php-format msgid "LDAP performance is poor: last query took about %.2fs!" msgstr "" -"La performance de votre annuaire est faible : la dernière requête à duré " -"%.2fs !" +"La performance de votre annuaire est faible : la dernière requête a duré " +"%.2fs !" #: include/class_ldap.inc:790 #, php-format msgid "" "Cannot automatically create subtrees with RDN \"%s\": no object class found!" msgstr "" -"Impossible de créer automatiquement des sous-arbres avec le RDN '%s' : " +"Impossible de créer automatiquement des sous-arbres avec le RDN «%s» : " "object class non trouvée !" #: include/class_ldap.inc:828 #, php-format msgid "Cannot automatically create subtrees with RDN \"%s\": not supported" msgstr "" -"Impossible de créer automatiquement des sous-arbres avec le RDN '%s' : non " +"Impossible de créer automatiquement des sous-arbres avec le RDN «%s» : non " "supporté" #: include/class_ldap.inc:916 @@ -2074,7 +2064,7 @@ msgstr "lors de l'opération sur le serveur LDAP %s" #: include/class_ldap.inc:1008 msgid "proc_open failed to execute ldapsearch" -msgstr "proc_open à échoue lors de l’exécution de ldapsearch" +msgstr "proc_open a échoué lors de l’exécution de ldapsearch" #: include/class_ldap.inc:1052 #, php-format @@ -2093,7 +2083,7 @@ msgstr "" #: include/class_ldap.inc:1072 #, php-format msgid "Error line %s, attribute \"%s\" has no value" -msgstr "Erreur ligne %s, l'attribut \"%s\" n'a pas de valeur" +msgstr "Erreur ligne %s, l'attribut «%s» n'a pas de valeur" #: include/class_ldap.inc:1076 #, php-format @@ -2103,23 +2093,23 @@ msgstr "Erreur ligne %s, une entrée ne peut avoir qu'un seul dn" #: include/class_ldap.inc:1081 #, php-format msgid "Error line %s, an entry bloc should start with the dn" -msgstr "Erreur ligne %s, une d'entrée doit commencer par le dn" +msgstr "Erreur ligne %s, une entrée doit commencer par le dn" #: include/class_ldap.inc:1112 #, php-format msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -"Erreur lors de l'importation du dn : \"%s\", veuillez vérifier votre fichier" -" LDIF à partir de la ligne %s !" +"Erreur lors de l'importation du dn : «%s», veuillez vérifier votre fichier " +"LDIF à partir de la ligne %s !" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " "\"%2$s\" as \"%2$s\" already depends on \"%1$s\"" msgstr "" -"Dépendance récursive dans les champs de modèle: \"%1$s\" ne peut pas " -"dépendre de \"%2$s\" vu que \"%2$s\" dépend déjà \"%1$s\"" +"Dépendance récursive dans les champs de modèle : «%1$s» ne peut pas dépendre" +" de «%2$s» puisque «%2$s» dépend déjà de «%1$s»" #: include/simpleplugin/simple-select-list.xml:11 msgid "Please select the desired entries" @@ -2156,13 +2146,13 @@ msgid "POSIX group %s" msgstr "Groupe POSIX %s" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "Rôle %s" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "Groupe %s" @@ -2173,7 +2163,7 @@ msgstr "Groupe d'utilisateurs" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Aucun" @@ -2193,7 +2183,7 @@ msgstr "Inconnu" #: plugins/admin/groups/group-list.xml:137 #: plugins/admin/aclrole/class_aclEditionDialog.inc:192 msgid "Edit" -msgstr "Editer" +msgstr "Éditer" #: include/simpleplugin/class_dialogAttributes.inc:655 #: include/simpleplugin/class_dialogAttributes.inc:656 @@ -2209,53 +2199,53 @@ msgstr "Editer" msgid "Remove" msgstr "Supprimer" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -"Pas de définition de plugin pour l'initialisation de \"%s\", veuillez " -"vérifier votre fichier de configuration." +"Pas de définition de plugin pour l'initialisation de «%s», veuillez vérifier" +" votre fichier de configuration." -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" -msgstr "Déplacer de \"%s\" à \"%s\" a échoué" +msgstr "Le déplacement de «%s» à «%s» a échoué" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "O" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KiO" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MiO" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GiO" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TiO" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "secondes" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "minutes" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "heures" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "jours" @@ -2267,7 +2257,7 @@ msgstr "Depuis un modèle" #: include/simpleplugin/class_simpleManagement.inc:316 #, php-format msgid "%s template" -msgstr "%s modèle" +msgstr "Modèle de %s" #: include/simpleplugin/class_simpleManagement.inc:508 #: include/simpleplugin/class_simpleManagement.inc:514 @@ -2278,11 +2268,11 @@ msgstr "Afficher %s" #: include/simpleplugin/class_simpleManagement.inc:545 msgid "Filter error" -msgstr "Erreur de Filtre" +msgstr "Erreur de filtre" #: include/simpleplugin/class_simpleManagement.inc:545 msgid "The filter is incomplete!" -msgstr "Le filtre est incomplet !" +msgstr "Le filtre est incomplet !" #: include/simpleplugin/class_simpleManagement.inc:1084 msgid "Permission error" @@ -2291,19 +2281,18 @@ msgstr "Erreur de permissions" #: include/simpleplugin/class_simpleManagement.inc:1118 #, php-format msgid "You are not allowed to create a snapshot for %s." -msgstr "" -"Vous n'êtes pas autorisé à créer une nouvelle copie instantanée pour %s." +msgstr "Vous n'êtes pas autorisé à créer un nouvel instantané pour %s." #: include/simpleplugin/class_simpleManagement.inc:1169 #: include/simpleplugin/class_simpleManagement.inc:1249 #: include/simpleplugin/class_simpleManagement.inc:1267 #, php-format msgid "You are not allowed to restore a snapshot for %s." -msgstr "Vous n'êtes pas autorisé à restaurer un copie instantanée de %s." +msgstr "Vous n'êtes pas autorisé à restaurer un instantané de %s." #: include/simpleplugin/simple-list.xml:11 msgid "NO LABEL" -msgstr "Pas de titre" +msgstr "PAS DE TITRE" #: include/simpleplugin/class_simplePlugin.inc:343 msgid "Template settings" @@ -2315,56 +2304,57 @@ msgstr "Le nom de ce modèle " #: include/simpleplugin/class_simplePlugin.inc:466 msgid "Only main tab can compute dn" -msgstr "Seulement l'onglet principal peut générer un dn" +msgstr "Seul l'onglet principal peut générer le dn" #: include/simpleplugin/class_simplePlugin.inc:473 #, php-format msgid "Could not compute dn: no parent tab class for \"%s\"" -msgstr "Impossible de générer le dn: pas de classe d’onglet parente pour \"%s\"" +msgstr "" +"Impossible de générer le dn : pas de classe d’onglet parente pour «%s»" #: include/simpleplugin/class_simplePlugin.inc:485 #, php-format msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -"Impossible de générer le dn : pas d’infos sur le type d’objet pour la classe" -" d’onglet \"%s\"" +"Impossible de générer le dn : pas d’infos sur le type d’objet pour la classe" +" d’onglet «%s»" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" -msgstr "Il existe déjà une entrée avec le même dn: %s" +msgstr "Il existe déjà une entrée avec le même dn : %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "L'entrée %s n'existe pas" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" "L'objet a changé depuis son ouverture dans FusionDirectory. Toutes les " -"modifications qui peuvent être faites par d'autres seront perdus si vous " -"enregistrez cette entrée!" +"modifications qui peuvent avoir été faites par d'autres seront perdues si " +"vous sauvez cette entrée !" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" -msgstr "Service \"%s\"" +msgstr "Service «%s»" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" -msgstr "Onglet \"%s\"" +msgstr "Onglet «%s»" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" -msgstr "Champ inconnu \"%s\"" +msgstr "Champ inconnu «%s»" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2374,11 +2364,11 @@ msgstr "%s (requis)" msgid "Object base" msgstr "Base de l'objet" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" -"La valeur \"%s\" pour le champ \"%s\" est pas dans la liste des choix " +"La valeur «%s» pour le champ «%s» n’est pas dans la liste des choix " "possibles" #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -2386,11 +2376,11 @@ msgstr "" #: include/simpleplugin/attributes/class_FileAttribute.inc:37 #, php-format msgid "Cannot read uploaded file: %s" -msgstr "Impossible de lire le fichier importé : '%s'" +msgstr "Impossible de lire le fichier importé : %s" #: include/simpleplugin/attributes/class_FileAttribute.inc:31 msgid "file is empty" -msgstr "le fichier est vide." +msgstr "le fichier est vide" #: include/simpleplugin/attributes/class_FileAttribute.inc:34 msgid "file not found" @@ -2403,18 +2393,18 @@ msgstr "le fichier n'est pas lisible" #: include/simpleplugin/attributes/class_FileAttribute.inc:72 #, php-format msgid "%s (%d bytes)" -msgstr "%s (%d bytes)" +msgstr "%s (%d octets)" #: include/simpleplugin/attributes/class_FileAttribute.inc:119 #: include/simpleplugin/attributes/class_FileAttribute.inc:326 #: include/simpleplugin/attributes/class_FileAttribute.inc:327 msgid "Upload" -msgstr "Télécharger" +msgstr "Téléverser" #: include/simpleplugin/attributes/class_FileAttribute.inc:124 #: include/simpleplugin/attributes/class_FileAttribute.inc:125 msgid "Download" -msgstr "Téléchargement" +msgstr "Télécharger" #: include/simpleplugin/attributes/class_FileAttribute.inc:301 msgid "" @@ -2422,22 +2412,22 @@ msgid "" "\"imagick\" to be installed!" msgstr "" "Impossible de sauver la photo de l'utilisateur, FusionDirectory a besoin que" -" la bibliothèque php \"imagick\" soit installée pour cela." +" le module php \"imagick\" soit installé pour cela." #: include/simpleplugin/attributes/class_SetAttribute.inc:136 #, php-format msgid "The value for multivaluated field \"%s\" is not an array" -msgstr "La valeur du champ multivalué \"%s\" n'est pas un tableau" +msgstr "La valeur du champ multivalué «%s» n'est pas un tableau" #: include/simpleplugin/attributes/class_SetAttribute.inc:585 #, php-format msgid "Invalid value for %s" -msgstr "Valeur invalide: %s" +msgstr "Valeur invalide pour %s" #: include/simpleplugin/attributes/class_DateAttribute.inc:131 #, php-format msgid "Error, incorrect date: %s" -msgstr "Erreur, date incorrecte  %s" +msgstr "Erreur, date incorrecte : %s" #: include/simpleplugin/attributes/class_IntAttribute.inc:50 #, php-format @@ -2447,32 +2437,31 @@ msgstr "Un nombre entier entre %d et %d" #: include/simpleplugin/attributes/class_IntAttribute.inc:52 #, php-format msgid "An integer larger than %d" -msgstr "Un nombre entier plus grande %d" +msgstr "Un nombre entier plus grand que %d" #: include/simpleplugin/attributes/class_IntAttribute.inc:54 #, php-format msgid "An integer smaller than %d" -msgstr "Un entier plus petit que %d" +msgstr "Un nombre entier plus petit que %d" #: include/simpleplugin/attributes/class_IntAttribute.inc:156 #, php-format msgid "A float between %f and %f" -msgstr "Un nombre a virgule flottant entre %f et %f" +msgstr "Un nombre à virgule flottante entre %f et %f" #: include/simpleplugin/attributes/class_IntAttribute.inc:158 #, php-format msgid "A float larger than %f" -msgstr "Un nombre a virgule flottant plus grand que %f" +msgstr "Un nombre à virgule flottante plus grand que %f" #: include/simpleplugin/attributes/class_IntAttribute.inc:160 #, php-format msgid "A float smaller than %f" -msgstr "Un nombre a virgule flottant plus petit que %f" +msgstr "Un nombre à virgule flottante plus petit que %f" #: include/class_SnapshotHandler.inc:398 msgid "There was a problem uncompressing snapshot data" -msgstr "" -"Il y a eu un problème lors de la décompression de la copie instantanée" +msgstr "Il y a eu un problème lors de la décompression de l’instantané" #: include/class_acl.inc:35 include/class_acl.inc:39 msgid "ACL" @@ -2480,7 +2469,7 @@ msgstr "ACL" #: include/class_acl.inc:36 msgid "Manage access control lists" -msgstr "Gestion de listes de contrôle d'accès (ACL)" +msgstr "Gestion des listes de contrôle d'accès (ACL)" #: include/class_acl.inc:39 #: plugins/admin/aclrole/class_aclRoleManagement.inc:34 @@ -2499,12 +2488,12 @@ msgstr "" #: include/class_acl.inc:170 #, php-format msgid "Unknown entry '%s'!" -msgstr "Entrée inconnue '%s' !" +msgstr "Entrée inconnue '%s' !" #: include/class_acl.inc:173 #, php-format msgid "All users" -msgstr "Tout les utilisateurs" +msgstr "Tous les utilisateurs" #: include/class_filter.inc:343 msgid "Apply filter" @@ -2519,19 +2508,19 @@ msgstr "Smarty" msgid "Directory '%s' specified as compile directory is not accessible!" msgstr "" "Le répertoire '%s' spécifié comme répertoire de compilation est inaccessible" -" !" +" !" #: html/index.php:56 html/class_passwordRecovery.inc:173 #, php-format msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>" -msgstr "Attention: <a href=%s\"> La session n'est pas chiffrée !<a>" +msgstr "Attention : <a href=\"%s\">La session n’est pas chiffrée !</a>" #: html/index.php:62 msgid "" "Warning: The session lifetime configured in your fusiondirectory.conf will " "be overridden by php.ini settings." msgstr "" -"Attention: La durée de validité des sessions configurée dans votre " +"Attention : La durée de validité des sessions configurée dans votre " "fusiondirectory.conf sera remplacée par celle définie dans votre php.ini." #: html/index.php:150 @@ -2551,12 +2540,12 @@ msgstr "Erreur Smarty" #, php-format msgid "Directory \"%s\" specified as compile directory is not accessible!" msgstr "" -"Le répertoire \"%s\" spécifié comme répertoire de compilation est " -"inaccessible !" +"Le répertoire «%s» spécifié comme répertoire de compilation est inaccessible" +" !" #: html/index.php:208 msgid "Your FusionDirectory session has expired!" -msgstr "Votre session FusionDirectory à expiré !" +msgstr "Votre session FusionDirectory a expiré !" #: html/index.php:211 msgid "Your IP has changed!" @@ -2581,11 +2570,11 @@ msgstr "Erreur de schéma LDAP" #: html/index.php:282 msgid "Please specify a valid username!" -msgstr "Le nom d'utilisateur est incorrect !" +msgstr "Veuillez entrer un nom d’utilisateur valide !" #: html/index.php:285 msgid "Please specify your password!" -msgstr "Veuillez introduire votre mot de passe !" +msgstr "Veuillez entrer votre mot de passe !" #: html/index.php:304 msgid "Please check the username/password combination." @@ -2593,37 +2582,36 @@ msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe." #: html/index.php:337 msgid "Account locked. Please contact your system administrator!" -msgstr "Compte verouillé. Veuillez contacter votre administrateur système !" +msgstr "Compte verrouillé. Veuillez contacter votre administrateur système !" #: html/index.php:456 #, php-format msgid "No value found in HTTP header \"%s\"" -msgstr "Aucune valeur trouvée dans l'entête HTTP \"%s\"" +msgstr "Aucune valeur trouvée dans l’entête HTTP «%s»" #: html/index.php:470 #, php-format msgid "Header user \"%s\" could not be found in the LDAP" msgstr "" -"L'utilisateur \"%s\" mentionné dans l’entête n'existe pas dans l'annuaire " -"LDAP " +"L'utilisateur «%s» mentionné dans l’entête n'existe pas dans l'annuaire LDAP" #: html/index.php:480 html/index.php:547 #, php-format msgid "Login with user \"%s\" triggered error: %s" -msgstr "La connexion avec l'utilisateur \"%s\" à déclenché l'erreur : \"%s\"" +msgstr "La connexion avec l'utilisateur «%s» a provoqué l'erreur : %s" #: html/index.php:537 #, php-format msgid "CAS user \"%s\" could not be found in the LDAP" -msgstr "L'utilisateur CAS \"%s\" n'existe pas dans l'annuaire LDAP " +msgstr "L'utilisateur CAS «%s» n'existe pas dans l'annuaire LDAP" #: html/index.php:587 msgid "" "Your browser has cookies disabled. Please enable cookies and reload this " "page before logging in!" msgstr "" -"Votre navigateur à les cookies désactivées. Veuillez activer les cookies et " -"recharger cette page avant de vous connecter !" +"Votre navigateur a les cookies désactivés. Veuillez activer les cookies et " +"recharger cette page avant de vous connecter !" #: html/class_passwordRecovery.inc:117 #, php-format @@ -2639,57 +2627,57 @@ msgstr "Adresse de courriel" #: html/class_passwordRecovery.inc:471 #, php-format msgid "Did not find an account with login \"%s\"" -msgstr "Aucun compte utilisateur trouvé avec l'identifiant \"%s\"" +msgstr "Aucun compte utilisateur trouvé avec l’identifiant «%s»" #: html/class_passwordRecovery.inc:474 #, php-format msgid "Found multiple accounts with login \"%s\"" -msgstr "Plusieurs comptes trouvés avec le login \"%s\"" +msgstr "Plusieurs comptes trouvés avec l’identifiant «%s»" #: html/class_passwordRecovery.inc:507 #, php-format msgid "There is no account using email \"%s\"" -msgstr "Il n'y a pas de compte qui utilise le courriel \"%s\"" +msgstr "Il n'y a pas de compte qui utilise le courriel «%s»" #: html/class_passwordRecovery.inc:510 #, php-format msgid "There are several accounts using email \"%s\"" -msgstr "Il y a plusieurs comptes qui utilisent le courriel \"%s\"" +msgstr "Il y a plusieurs comptes qui utilisent le courriel «%s»" #: html/class_passwordRecovery.inc:518 #, php-format msgid "The user using email \"%s\" is locked. Please contact your administrator." msgstr "" -"L'utilisateur correspondant au courriel \"%s\" est verrouillé. Veuillez " +"L'utilisateur correspondant au courriel «%s» est verrouillé. Veuillez " "contacter votre administrateur système !" #: html/class_passwordRecovery.inc:573 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -"Contactez votre administrateur système, il y a eu un problème avec l'envoi " -"du message" +"Contactez votre administrateur système, il y a eu un problème avec le " +"serveur de courriel" #: html/class_passwordRecovery.inc:586 msgid "This token is invalid" -msgstr "Le token n'est pas valable" +msgstr "Le jeton n'est pas valide" #: html/class_passwordRecovery.inc:650 msgid "There was a problem with mail server, confirmation email not sent" msgstr "" -"Un problème est survenu avec le serveur de messagerie, le mail de " +"Un problème est survenu avec le serveur de courriel, le courriel de " "confirmation n'a pas été envoyé" #: html/main.php:115 msgid "PHP configuration" -msgstr "Configuration de PHP" +msgstr "Configuration PHP" #: html/main.php:116 msgid "" "Fatal error: Register globals is on. FusionDirectory will refuse to login " "unless this is fixed by an administrator." msgstr "" -"FATAL: Register globals est activé. FusionDirectory ne permettra pas aux " -"utilisateurs de se connecter tant que ceci n'est pas corrigé par un " +"Erreur fatale : «Register globals» est activé. FusionDirectory ne permettra " +"pas aux utilisateurs de se connecter tant que ceci n'est pas corrigé par un " "administrateur." #: html/main.php:142 @@ -2699,7 +2687,7 @@ msgstr "Changement de mot de passe" #: html/main.php:142 msgid "Your password is about to expire, please change your password!" msgstr "" -"Votre mot de passe va bientôt expirer, veuillez changer votre mot de passe !" +"Votre mot de passe va bientôt expirer, veuillez changer votre mot de passe !" #: html/main.php:158 msgid "Your password has expired, please set a new one." @@ -2707,15 +2695,15 @@ msgstr "Votre mot de passe a expiré, veuillez changer votre mot de passe." #: html/main.php:208 msgid "Running out of memory!" -msgstr "Plus de mémoire disponible !" +msgstr "Plus de mémoire disponible !" #: html/main.php:251 msgid "User ACL checks disabled" -msgstr "Les vérifications des ACL de l'utilisateur ont été désactivés" +msgstr "Vérifications ACL de l'utilisateur désactivées" #: html/main.php:289 msgid "Plugin" -msgstr "Extension" +msgstr "Plugin" #: html/main.php:290 #, php-format @@ -2723,8 +2711,8 @@ msgid "" "Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not" " a file)!" msgstr "" -"Erreur Fatale : Impossible de trouver une définition pour le plugin '%s' ! " -"('%s' n'est pas un fichier)!" +"Erreur fatale : Impossible de trouver une définition pour le plugin '%s' " +"('%s' n'est pas un fichier) !" #: html/main.php:305 msgid "Configuration Error" @@ -2736,13 +2724,13 @@ msgid "" "Fatal error: not all POST variables have been transfered by PHP - please " "inform your administrator!" msgstr "" -"FATAL: toutes les variables POST non pas été transférées par PHP - Veuillez " -"avertir votre administrateur !" +"Erreur fatale : toutes les variables POST n’ont pas été transférées par PHP " +"- Veuillez avertir votre administrateur !" #: plugins/generic/welcome/main.inc:25 #, php-format msgid "Welcome %s!" -msgstr "Bienvenue %s !" +msgstr "Bienvenue %s !" #: plugins/generic/references/class_reference.inc:26 #: plugins/generic/references/class_reference.inc:27 @@ -2750,32 +2738,32 @@ msgstr "Bienvenue %s !" msgid "References" msgstr "Références" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "Groupes et rôles" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "Éditer les groupes et rôles de l’utilisateur" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "Appartenance aux groupes" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "Appartenance aux rôles" #: plugins/personal/generic/class_user.inc:46 msgid "Password method" -msgstr "Format de stockage des mots de passe" +msgstr "Méthode de mot de passe" #: plugins/personal/generic/class_user.inc:46 msgid "Password hash method to use" -msgstr "Format de stockage des mots de passe" +msgstr "Méthode de hashage des mots de passe à utiliser" #: plugins/personal/generic/class_user.inc:51 #: plugins/personal/generic/class_user.inc:392 @@ -2783,13 +2771,12 @@ msgstr "Format de stockage des mots de passe" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Mot de passe" #: plugins/personal/generic/class_user.inc:51 msgid "Password (Leave empty if you do not wish to change it)" -msgstr "Mot de passe (Laisser vide si vous ne voulez pas changer)" +msgstr "Mot de passe (Laisser vide si vous ne voulez pas en changer)" #: plugins/personal/generic/class_user.inc:55 msgid "Password again" @@ -2797,7 +2784,7 @@ msgstr "Mot de passe (de nouveau)" #: plugins/personal/generic/class_user.inc:55 msgid "Same password as above, to avoid errors" -msgstr "Veuillez réintroduire le mot de passe pour éviter les erreurs" +msgstr "Même mot de passe qu’au dessus, pour éviter les erreurs" #: plugins/personal/generic/class_user.inc:278 #: plugins/personal/generic/class_user.inc:284 @@ -2824,22 +2811,20 @@ msgid "Personal information" msgstr "Informations personnelles" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Nom de famille" #: plugins/personal/generic/class_user.inc:315 msgid "Last name of this user" -msgstr "Nom de famille" +msgstr "Nom de famille de cet utilisateur" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Prénom" #: plugins/personal/generic/class_user.inc:320 msgid "First name of this user" -msgstr "Prénom" +msgstr "Prénom de cet utilisateur" #: plugins/personal/generic/class_user.inc:325 msgid "Short description of the user" @@ -2855,7 +2840,7 @@ msgstr "L'avatar pour cet utilisateur" #: plugins/personal/generic/class_user.inc:336 msgid "Organizational contact information" -msgstr "Information de contact organisationnelles" +msgstr "Informations de contact organisationnelles" #: plugins/personal/generic/class_user.inc:340 #: plugins/admin/departments/class_department.inc:90 @@ -2896,11 +2881,11 @@ msgstr "Numéro de téléphone professionnel" #: plugins/personal/generic/class_user.inc:360 msgid "Mobile" -msgstr "GSM" +msgstr "Mobile" #: plugins/personal/generic/class_user.inc:360 msgid "Business mobile number" -msgstr "Numéro de GSM professionnel " +msgstr "Numéro de téléphone portable professionnel " #: plugins/personal/generic/class_user.inc:364 msgid "Pager" @@ -2921,7 +2906,7 @@ msgstr "Numéro de fax professionnel" #: plugins/personal/generic/class_user.inc:372 msgid "Homepage" -msgstr "Page d'accueil" +msgstr "Site web" #: plugins/personal/generic/class_user.inc:372 msgid "Personal homepage" @@ -2941,7 +2926,7 @@ msgstr "Mot de passe de l'utilisateur" #: plugins/personal/generic/class_user.inc:398 msgid "Personal contact information" -msgstr "Informations personnelles" +msgstr "Informations de contact personnelles" #: plugins/personal/generic/class_user.inc:402 msgid "Display name" @@ -2963,7 +2948,7 @@ msgstr "Adresse postale personnelle" #: plugins/personal/generic/class_user.inc:410 msgid "Private phone" -msgstr "Numéro de téléphone privé" +msgstr "Téléphone privé" #: plugins/personal/generic/class_user.inc:410 msgid "Home phone number" @@ -2971,7 +2956,7 @@ msgstr "Numéro de téléphone privé" #: plugins/personal/generic/class_user.inc:416 msgid "Organizational information" -msgstr "Informations sur l'entreprise" +msgstr "Informations sur l'organisation" #: plugins/personal/generic/class_user.inc:421 msgid "Title" @@ -2990,7 +2975,7 @@ msgstr "" #: plugins/admin/departments/class_organization.inc:31 #: plugins/admin/departments/class_organization.inc:34 msgid "Organization" -msgstr "Entreprise" +msgstr "Organisation" #: plugins/personal/generic/class_user.inc:430 #: plugins/admin/departments/class_department.inc:33 @@ -3005,23 +2990,23 @@ msgstr "Département auquel l'utilisateur appartient" #: plugins/personal/generic/class_user.inc:434 msgid "Department No." -msgstr "No. du département." +msgstr "Numéro de département" #: plugins/personal/generic/class_user.inc:434 msgid "Department number" -msgstr "Numéro du département" +msgstr "Numéro de département" #: plugins/personal/generic/class_user.inc:438 msgid "Employee No." -msgstr "No. de l'employé." +msgstr "Numéro d'employé" #: plugins/personal/generic/class_user.inc:438 msgid "Employee number" -msgstr "Numéro de l'employé" +msgstr "Numéro d'employé" #: plugins/personal/generic/class_user.inc:442 msgid "Employee type" -msgstr "Type de l'employé" +msgstr "Type d'employé" #: plugins/personal/generic/class_user.inc:446 #: plugins/admin/departments/class_department.inc:84 @@ -3034,7 +3019,7 @@ msgstr "Rue" #: plugins/personal/generic/class_user.inc:456 msgid "Street part of the address" -msgstr "Nom de la rue" +msgstr "Partie de l’adresse contenant la rue" #: plugins/personal/generic/class_user.inc:460 msgid "Post office box" @@ -3044,61 +3029,61 @@ msgstr "Boîte postale" msgid "Postal code" msgstr "Code postal" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "La ppolicy \"%s\" n’a pas été trouvée dans le LDAP !" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "Vous n’êtes pas autorisé à changer votre mot de passe" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" "Vous devez attendre %d secondes avant de changer votre mot de passe à " "nouveau" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "Le mot de passe est dans l'historique des mots de passe récents" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "Le nouveau mot de passe est le même que l’ancien" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Vous devez spécifier votre mode de passe actuel pour continuer." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -"Les mots de passe entrés dans les champs 'Nouveau mot de passe' et celui " -"dans le champ 'Répéter le nouveau mot de passe' ne concordent pas." +"Les mots de passe entrés dans les champs 'Nouveau mot de passe' et 'Répéter " +"le nouveau mot de passe' ne correspondent pas." -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nouveau mot de passe" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "Le nouveau et l'ancien mot de passe sont trop similaires." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "Le nouveau mot de passe est trop court." -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" -"Le mot de passe contient probablement des caractères Unicode qui sont " -"problématique" +"Le mot de passe contient potentiellement des caractères Unicode qui sont " +"problématique !" #: plugins/addons/dashboard/class_dashBoardUsers.inc:28 msgid "Statistics about users" @@ -3125,7 +3110,7 @@ msgstr "Numéro de téléphone" #: plugins/addons/dashboard/class_dashBoardUsers.inc:65 msgid "Expiration date" -msgstr "Date d'expiration" +msgstr "Date d’expiration" #: plugins/addons/dashboard/class_dashBoardUsers.inc:69 #: ihtml/themes/breezy/recovery.tpl.c:74 @@ -3139,7 +3124,7 @@ msgid "" " %s" msgstr "" "Le nombre total d'utilisateurs n'a pas pu être calculé en raison de l'erreur" -" LDAP suivante: %s" +" LDAP suivante : %s" #: plugins/addons/dashboard/class_dashBoard.inc:27 #: plugins/addons/dashboard/class_dashBoard.inc:28 @@ -3166,20 +3151,20 @@ msgid "" "Statistics for type \"%s\" could not be computed because of the following " "error: %s" msgstr "" -"Les statistiques pour le type \"%s\" n'ont pas pu être calculées en raison " -"de l'erreur suivante: %s" +"Les statistiques pour le type «%s» n'ont pas pu être calculées en raison de " +"l'erreur suivante : %s" #: plugins/addons/dashboard/class_dashBoardPasswords.inc:26 msgid "Passwords" -msgstr "Mot de passes" +msgstr "Mots de passes" #: plugins/addons/dashboard/class_dashBoardPasswords.inc:27 msgid "Statistics about passwords" -msgstr "Statistiques sur les mot de passe" +msgstr "Statistiques sur les mots de passe" #: plugins/addons/dashboard/class_dashBoardPasswords.inc:38 msgid "Passwords statistics" -msgstr "Statistiques mots de passe" +msgstr "Statistiques de mots de passe" #: plugins/addons/dashboard/class_dashBoardPasswords.inc:63 #, php-format @@ -3187,8 +3172,8 @@ msgid "" "Password statistics could not be computed because of the following LDAP " "error: %s" msgstr "" -"Les statistiques de mot de passe n'ont pas pu être calculées en raison de " -"l'erreur LDAP suivante: %s" +"Les statistiques de mots de passe n'ont pas pu être calculées en raison de " +"l'erreur LDAP suivante : %s" #: plugins/config/class_recoveryConfig.inc:28 msgid "Password recovery" @@ -3196,7 +3181,7 @@ msgstr "Récupération de mot de passe" #: plugins/config/class_recoveryConfig.inc:29 msgid "Settings for the password recovery feature" -msgstr "Paramètres pour la fonction de récupération de mot de passe" +msgstr "Paramètres pour la fonctionnalité de récupération de mot de passe" #: plugins/config/class_recoveryConfig.inc:40 msgid "Password recovery settings" @@ -3212,15 +3197,15 @@ msgstr "Activer ou non la fonctionnalité de récupération de mot de passe" #: plugins/config/class_recoveryConfig.inc:51 msgid "Sender email address" -msgstr "Adresse de messagerie de l'émetteur" +msgstr "Courriel émetteur" #: plugins/config/class_recoveryConfig.inc:52 msgid "Email address from which mails will be sent" -msgstr "Adresse de messagerie avec laquelle les messages seront envoyés" +msgstr "Adresse de courriel depuis laquelle les messages seront envoyés" #: plugins/config/class_recoveryConfig.inc:58 msgid "Link validity (minutes)" -msgstr "Durée de validité du lien (minutes)" +msgstr "Validité du lien (minutes)" #: plugins/config/class_recoveryConfig.inc:59 msgid "Number of minutes before a recovery link expires" @@ -3228,7 +3213,7 @@ msgstr "Nombre de minutes avant l'expiration du lien" #: plugins/config/class_recoveryConfig.inc:65 msgid "Salt for tokens" -msgstr "Chaine de caractères aléatoires pour les jetons" +msgstr "Sel pour les jetons" #: plugins/config/class_recoveryConfig.inc:66 msgid "" @@ -3240,27 +3225,27 @@ msgstr "" #: plugins/config/class_recoveryConfig.inc:72 msgid "Allow the use of alternate addresses" -msgstr "Autoriser des adresses de messagerie alternatives" +msgstr "Autoriser l’utilisation des adresses de courriel alternatives" #: plugins/config/class_recoveryConfig.inc:73 msgid "" "Users will also be able to enter one of theirs alternate addresses to " "recover their password" msgstr "" -"Les utilisateurs pourront entre une adresse de messagerie alternative pour " -"récupérer leur mot de passe" +"Les utilisateurs pourront entrer une de leurs adresses de courriel " +"alternatives pour récupérer leur mot de passe" #: plugins/config/class_recoveryConfig.inc:78 #: plugins/config/class_configInLdap.inc:188 msgid "Login attribute" -msgstr "Attribut de connexion" +msgstr "Attribut de l’identifiant" #: plugins/config/class_recoveryConfig.inc:78 msgid "" "Usually uid, but you can use something else for instance in case of SSO" msgstr "" -"Habituellement uid, mais vous pouvez utiliser quelque chose d'autre par " -"exemple dans le cas d'utilisation d'un SSO" +"Habituellement «uid», mais vous pouvez utiliser quelque chose d'autre par " +"exemple dans le cas de l’utilisation d'un SSO" #: plugins/config/class_recoveryConfig.inc:85 msgid "First email" @@ -3273,11 +3258,11 @@ msgstr "Sujet" #: plugins/config/class_recoveryConfig.inc:89 msgid "Subject of the first email" -msgstr "Sujet du premier message" +msgstr "Sujet du premier courriel" #: plugins/config/class_recoveryConfig.inc:92 msgid "[FusionDirectory] Password recovery link" -msgstr "[FusionDirectory] lien de reinitialisation du mot de passe" +msgstr "[FusionDirectory] Lien de réinitialisation du mot de passe" #: plugins/config/class_recoveryConfig.inc:95 #, php-format @@ -3308,10 +3293,10 @@ msgstr "" "Bonjour,\n" "\n" "Voici vos informations :\n" -"- Identifiant : %s\n" -"- Lien : %s\n" +"- Identifiant : %s\n" +"- Lien : %s\n" "\n" -"Ceci est seulement valide pour 10 minutes" +"Ce lien est seulement valide pendant 10 minutes" #: plugins/config/class_recoveryConfig.inc:104 msgid "Second email" @@ -3319,11 +3304,11 @@ msgstr "Second message" #: plugins/config/class_recoveryConfig.inc:108 msgid "Subject of the second email" -msgstr "Sujet du second message" +msgstr "Sujet du second courriel" #: plugins/config/class_recoveryConfig.inc:111 msgid "[FusionDirectory] Password recovery successful" -msgstr "[FusionDirectory] Réinitialisation du mot de passe réussi !" +msgstr "[FusionDirectory] Réinitialisation du mot de passe réussie !" #: plugins/config/class_recoveryConfig.inc:114 #, php-format @@ -3336,8 +3321,8 @@ msgid "" "Body of the second email, sent to confirm the password has been changed. Use" " %s for the user login." msgstr "" -"Corps du second message, envoyé pour confirmer le mot de passe a été changé." -" Utilisez %s pour l'indentifiant de l'utilisateur." +"Corps du second message, envoyé pour confirmer que le mot de passe a été " +"changé. Utilisez %s pour l'indentifiant de l'utilisateur." #: plugins/config/class_recoveryConfig.inc:118 #, php-format @@ -3347,10 +3332,10 @@ msgid "" "Your password has been changed.\n" "Your login is still %s." msgstr "" -"Hello,\n" +"Bonjour,\n" "\n" -"Votre mot de passe à été changé. \n" -"Vos identifiants de connexion sont toujours %s." +"Votre mot de passe a été changé. \n" +"Votre identifiant de connexion est toujours %s." #: plugins/config/class_configInLdap.inc:56 #: plugins/config/class_configInLdap.inc:70 @@ -3379,9 +3364,8 @@ msgid "" "Language of the application. If 'automatic' or not available, the one asked " "by the browser will be used. This setting can be overriden per user." msgstr "" -"Maintenant vous pouvez choisir la langue par défaut. Automatique utilisera " -"la langue demandée par le navigateur. Ce paramètre peut être configuré par " -"utilisateur." +"Langue de l’application. «Automatique» utilisera la langue demandée par le " +"navigateur. Ce paramètre peut être configuré par utilisateur." #: plugins/config/class_configInLdap.inc:96 msgid "Theme" @@ -3401,27 +3385,27 @@ msgstr "Fuseau horaire à utiliser" #: plugins/config/class_configInLdap.inc:110 msgid "Core settings" -msgstr "Paramétrage de base" +msgstr "Paramètres du cÅ“ur" #: plugins/config/class_configInLdap.inc:113 msgid "LDAP size limit" -msgstr "nombre maximal d'objet LDAP retournés" +msgstr "Limite du nombre d'objets LDAP" #: plugins/config/class_configInLdap.inc:113 msgid "Defines the number of entries to get from LDAP by default." -msgstr "Définit le nombre maximal d'objets LDAP recupérés par défaut" +msgstr "Définit le nombre maximal d'objets LDAP recupérés par défaut." #: plugins/config/class_configInLdap.inc:118 msgid "Edit locking" -msgstr "Édition du verrouillage" +msgstr "Verrouillage de l’édition" #: plugins/config/class_configInLdap.inc:119 msgid "" "Check if a entry currently being edited has been modified outside of " "FusionDirectory in the meantime." msgstr "" -"Vérifie si une entrée en cours d'édition a été modifié par une application " -"autre que FusionDirectory dans le même temps" +"Vérifie si une entrée en cours d'édition a été modifiée par une application " +"autre que FusionDirectory en même temps." #: plugins/config/class_configInLdap.inc:124 msgid "Enable logging" @@ -3437,11 +3421,11 @@ msgstr "Validation des schémas" #: plugins/config/class_configInLdap.inc:131 msgid "Enables schema checking during login." -msgstr "Activer la validation des schéma lors de la connexion" +msgstr "Activer la validation des schémas lors de la connexion" #: plugins/config/class_configInLdap.inc:136 msgid "Enable snapshots" -msgstr "Activer la copie instantanée" +msgstr "Activer les instantanés" #: plugins/config/class_configInLdap.inc:136 msgid "" @@ -3452,17 +3436,17 @@ msgstr "" #: plugins/config/class_configInLdap.inc:141 msgid "Snapshot base" -msgstr "Base pour les snapshots" +msgstr "Base des instantanés" #: plugins/config/class_configInLdap.inc:141 msgid "The base where snapshots should be stored inside of the LDAP." msgstr "" -"Branche LDAP à l'intérieur de laquelle les copies instantanés d'objets " -"seront stockés" +"Branche LDAP à l'intérieur de laquelle les instantanés d'objets seront " +"stockés" #: plugins/config/class_configInLdap.inc:148 msgid "Password settings" -msgstr "Préférences pour les mots de passe" +msgstr "Paramètres de mots de passe" #: plugins/config/class_configInLdap.inc:151 msgid "Password default hash" @@ -3495,24 +3479,26 @@ msgstr "Différence minimum des mots de passe" #: plugins/config/class_configInLdap.inc:165 msgid "Minimum number of different characters from last password" -msgstr "Nombre de caractères différents par rapport au précédent mot de passe" +msgstr "" +"Nombre minimum de caractères différents par rapport au précédent mot de " +"passe" #: plugins/config/class_configInLdap.inc:170 msgid "Use account expiration" -msgstr "Utiliser l'expiration du compte" +msgstr "Activer l'expiration des comptes" #: plugins/config/class_configInLdap.inc:171 msgid "" "Enables shadow attribute tests during the login to FusionDirectory and " "forces password renewal or account locking" msgstr "" -"Activation des tests sur les attributs cachés durant la connexion à " +"Activation des tests sur les attributs d’expiration durant la connexion à " "FusionDirectory et renouvellement forcé des mots de passe ou blocage du " "compte" #: plugins/config/class_configInLdap.inc:175 msgid "SASL Realm" -msgstr "Royaume pour la connexion SASL" +msgstr "Royaume SASL" #: plugins/config/class_configInLdap.inc:179 msgid "SASL Exop" @@ -3520,38 +3506,37 @@ msgstr "Opération Extérieur SASL" #: plugins/config/class_configInLdap.inc:179 msgid "Attribute to be stored in the userPassword attribute" -msgstr "Attribut à stocker dans l'attribut 'userPassword'" +msgstr "Attribut à stocker dans l'attribut «userPassword»" #: plugins/config/class_configInLdap.inc:185 msgid "Login and session" -msgstr "connexion et session" +msgstr "Connexion et session" #: plugins/config/class_configInLdap.inc:189 msgid "Which LDAP attribute should be used as the login name during login." -msgstr "" -"Attribut LDAP utilisé comme identifiant de connexion lors de la connexion" +msgstr "Attribut LDAP utilisé comme identifiant lors de la connexion." #: plugins/config/class_configInLdap.inc:195 msgid "Enforce encrypted connections" -msgstr "Force les connexions cryptées" +msgstr "Forcer les connexions chiffrées" #: plugins/config/class_configInLdap.inc:196 msgid "" "Enables PHP security checks to force encrypted access (https) to the web " "interface." msgstr "" -"Activer les vérifications PHP de sécurité pour activer HTTPS lors de l’accès" -" à l'interface web" +"Activer les vérifications PHP de sécurité pour forcer à utiliser HTTPS lors " +"de l’accès à l'interface web." #: plugins/config/class_configInLdap.inc:200 msgid "Warn if session is not encrypted" -msgstr "Avertir si la session ne sera pas cryptée" +msgstr "Avertir si la session n’est pas chiffrée" #: plugins/config/class_configInLdap.inc:201 msgid "will display a warning to the user when http is used instead of https." msgstr "" "Affiche un avertissement pour indiquer l'usage du protocole HTTP au lieu de " -"HTTPS" +"HTTPS." #: plugins/config/class_configInLdap.inc:206 msgid "Session lifetime" @@ -3559,11 +3544,11 @@ msgstr "Durée de vie de la session" #: plugins/config/class_configInLdap.inc:206 msgid "Defines when a session will expire in seconds (0 to disable)." -msgstr "Définit la durée d'une session en secondes (0 pour désactiver)." +msgstr "Définit la durée de vie des sessions en secondes (0 pour désactiver)." #: plugins/config/class_configInLdap.inc:211 msgid "HTTP Basic authentication" -msgstr "Authentification HTTP de base" +msgstr "Authentification HTTP basique" #: plugins/config/class_configInLdap.inc:211 msgid "Use HTTP Basic authentication protocol instead of the login form." @@ -3573,21 +3558,21 @@ msgstr "" #: plugins/config/class_configInLdap.inc:216 msgid "HTTP Header authentication" -msgstr "authentification entêtes HTTP" +msgstr "Authentification par entêtes HTTP" #: plugins/config/class_configInLdap.inc:216 msgid "Use HTTP Header authentication instead of the login form." msgstr "" -"Utiliser d'authentification par entêtes HTTP au lieu du formulaire de " +"Utiliser l'authentification par entêtes HTTP au lieu du formulaire de " "connexion." #: plugins/config/class_configInLdap.inc:221 msgid "Header name" -msgstr "Nom de l’entête" +msgstr "Entête HTTP" #: plugins/config/class_configInLdap.inc:221 msgid "Name of the header containing user identifier." -msgstr "Nom de l'en-tête contenant l'identification utilisateur." +msgstr "Nom de l'entête contenant l'identification utilisateur." #: plugins/config/class_configInLdap.inc:228 msgid "SSL" @@ -3599,12 +3584,11 @@ msgstr "Clé privée" #: plugins/config/class_configInLdap.inc:231 msgid "Path to FusionDirectory private key. Unused for now." -msgstr "" -"Chemin vers la clef privée de FusionDirectory. Inutilisé actuellement." +msgstr "Chemin vers la clé privée de FusionDirectory. Inutilisé actuellement." #: plugins/config/class_configInLdap.inc:236 msgid "Certificate path" -msgstr "Chemin du certificat" +msgstr "Certificat" #: plugins/config/class_configInLdap.inc:236 msgid "Path to FusionDirectory certificate. Unused for now." @@ -3614,7 +3598,7 @@ msgstr "" #: plugins/config/class_configInLdap.inc:241 #: plugins/config/class_configInLdap.inc:256 msgid "CA certificate path" -msgstr "Chemin du certificat CA" +msgstr "Certificat CA" #: plugins/config/class_configInLdap.inc:241 msgid "Path to the CA certificate. Used for validating Argonaut Server host." @@ -3632,7 +3616,7 @@ msgstr "Activer CAS" #: plugins/config/class_configInLdap.inc:251 msgid "CAS login will be used instead of LDAP bind" -msgstr "CAS sera utilisé à la place de la connexion LDAP" +msgstr "CAS sera utilisé à la place de l’identification LDAP" #: plugins/config/class_configInLdap.inc:256 msgid "Path to the CA certificate of the CAS server" @@ -3664,125 +3648,117 @@ msgstr "Contexte CAS à utiliser" #: plugins/config/class_configInLdap.inc:278 msgid "People and group storage" -msgstr "" -"Branches de l'arbre ldap ou sont stockes les utilisateurs et les groupes" +msgstr "Stockage des utilisateurs et groupes" #: plugins/config/class_configInLdap.inc:282 msgid "People DN attribute" -msgstr "Type d'attribut pour le DN des utilisateurs" +msgstr "Attribut pour le DN utilisateur" #: plugins/config/class_configInLdap.inc:282 msgid "Attribute to use at the beginning of users dn" -msgstr "Attribut à utiliser pour le début du DN utilisateur" +msgstr "Attribut à utiliser pour le début du DN des utilisateurs" #: plugins/config/class_configInLdap.inc:287 msgid "CN pattern" -msgstr "Modèle CN" +msgstr "Motif CN" #: plugins/config/class_configInLdap.inc:287 msgid "The pattern to use to build the common name field" -msgstr "Le modèle à utiliser pour construire le common name" +msgstr "Le motif à utiliser pour construire le champ common name" #: plugins/config/class_configInLdap.inc:292 msgid "Strict naming policy" -msgstr "Règles de de nommage strictes" +msgstr "Règles de nommage strictes" #: plugins/config/class_configInLdap.inc:293 msgid "Enables strict checking of user and group names" -msgstr "Active la vérification stricte des noms d’utilisateur et de groupe" +msgstr "Active la vérification stricte des noms d’utilisateurs et de groupes" #: plugins/config/class_configInLdap.inc:298 msgid "Users RDN" -msgstr "Chemin relatif des utilisateurs" +msgstr "Branche des utilisateurs" #: plugins/config/class_configInLdap.inc:298 msgid "The branch where users are stored." -msgstr "Branche où sont stockés les utilisateurs." +msgstr "La branche où sont stockés les utilisateurs." #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "Chemin relatif des groupes" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "Branche où sont stockés les groupes" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "Branche des rôles ACL" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." -msgstr "Branche où sont stockés les ACL" +msgstr "La branche où sont stockés les rôles ACL." -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" -msgstr "Restreindre les membres du rôle" +msgstr "Restreindre les membres des rôles" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -"Lorsqu'elle est activée uniquement les utilisateurs de la même branche ou " -"les membres des groupes de la même branche peut être ajouté à un rôle." +"Lorsqu'activé, uniquement les utilisateurs de la même branche ou les membres" +" des groupes de la même branche peuvent être ajouté dans un rôle." -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "Champs d'adresse séparés" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -"Exposez les champs Street, PostOfficeBox et postalCode au lieu de " -"PostalAddress." +"Exposer les champs street, postOfficeBox et postalCode au lieu de " +"postalAddress." -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "Modèle d'adresse postale" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -"Lorsque vous utilisez des champs d'adresse distincts, vous pouvez utiliser " -"un motif pour remplir le champ PostalAddress." +"Lorsque vous utilisez des champs d'adresse séparés, vous pouvez utiliser un " +"motif pour remplir le champ postalAddress." -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" -msgstr "Deboguage" +msgstr "Debogage" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Afficher les erreurs" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -"Afficher les erreurs dans la partie haute de l'écran. Cela sera a désactiver" -" en environnement de production car des mots de passe peuvent être affichés." +"Afficher les erreurs PHP dans la partie haute de l'écran. Cela sera à " +"désactiver en environnement de production, car des mots de passe peuvent " +"être affichés." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Durée maximale d'une requête LDAP" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -"Arrêter les opérations LDAP si aucunes réponses n'est obtenue dans un délai " -"spécifié" +"Arrêter les opérations LDAP si aucune réponse n'est obtenue dans le délai " +"spécifié en secondes." -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" -msgstr "Inscrit les statistique de l'annuaire LDAP dans les journaux systèmes" +msgstr "Journaliser les statistiques LDAP" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." @@ -3790,23 +3766,23 @@ msgstr "" "Stocker les statistiques LDAP via syslog. Cela aide à trouver les problèmes " "d'indexation et de mauvais filtres de recherche." -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Niveau de débogage" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." -msgstr "Afficher certaines informations sur chaque chargement de page." +msgstr "Afficher certaines informations à chargement de page." -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Divers" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" -msgstr "Afficher les sommaires dans les listes" +msgstr "Afficher les sommaires en bas des listes" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3814,11 +3790,11 @@ msgstr "" "Détermine si une barre d'état sera affichée en bas de la liste pour indiquer" " les nombres et types d'objets affichés" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" -msgstr "Montrer l’onglet ACL sur tous les objets" +msgstr "Afficher l’onglet ACL sur tous les objets" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." @@ -3826,77 +3802,78 @@ msgstr "" "Pour des configurations ACL très spécifiques où vous avez besoin de donner " "des droits sur un seul objet." -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" -msgstr "Liste des catégories de département" +msgstr "Catégories de département" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" -msgstr "Les catégories disponibles dans le menu déroulant départements" +msgstr "" +"Les catégories disponibles dans le menu déroulant pour les départements" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" "Utilisez ceci pour cacher une entrée de menu à des groupes spécifiques " "d'utilisateurs" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" -msgstr "Groupes ou rôles" +msgstr "Groupe ou rôle" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "Plugin à mettre en liste noire" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" -msgstr "Liste noire du menu des plugins" +msgstr "Liste noire du menu" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" -msgstr "Connexions" +msgstr "Hooks" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" -msgstr "Déclencheurs appelés en fonction de l’exécution d’actions spécifiques" +msgstr "Hooks qui sont appelés quand des actions spécifiques sont faites" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "Onglet" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" -msgstr "Onglet concerné pas ce déclencheur" +msgstr "L’onglet concerné par ce hook" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Mode" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "Quand appeler cette commande" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "Commande" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "Commande qui sera appelée" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" -msgstr "Montrer le résultat du hook" +msgstr "Montrer le résultat des hooks" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." msgstr "" -"Si activé, après réussite de du hook, le résultat est affiche dans une " -"fenêtre à l'utilisateur" +"Si activé, après réussite du hook, le résultat est affiché à l'utilisateur " +"dans une boite de dialogue." #: plugins/config/class_pluginsConfigInLdap.inc:29 msgid "Plugins" @@ -3919,12 +3896,12 @@ msgid "Object groups" msgstr "Groupes d'objets" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" -msgstr "Chemin relatif des groupes d'objets" +msgid "Groups RDN" +msgstr "Branche des groupes" #: plugins/config/class_mainPluginsConfig.inc:45 msgid "Branch in which object groups will be stored" -msgstr "Branches ou seront stockés les groupes d'objets" +msgstr "La branche où seront stockés les groupes d'objets" #: plugins/config/class_mainPluginsConfig.inc:52 msgid "SASL" @@ -3968,7 +3945,7 @@ msgstr "Préfixes" #: plugins/config/class_dashBoardConfig.inc:51 msgid "Prefixes to be used for computer ids" -msgstr "Préfixes à utiliser pour les identifiants de machines" +msgstr "Préfixes à utiliser pour les noms de machines" #: plugins/config/class_dashBoardConfig.inc:59 msgid "Dashboard expired users" @@ -4013,7 +3990,7 @@ msgstr "Nom de %s" #: plugins/admin/departments/class_department.inc:67 #, php-format msgid "A name for this %s" -msgstr "Un nom pour %s" +msgstr "Un nom pour ce %s" #: plugins/admin/departments/class_department.inc:72 #, php-format @@ -4065,7 +4042,7 @@ msgstr "Numéro de fax" #: plugins/admin/departments/class_organization.inc:51 msgid "organization" -msgstr "Entreprise" +msgstr "organisation" #: plugins/admin/departments/class_domain.inc:30 #: plugins/admin/departments/class_domain.inc:31 @@ -4075,7 +4052,7 @@ msgstr "Domaine" #: plugins/admin/departments/class_domain.inc:51 msgid "domain" -msgstr "Domaine" +msgstr "domaine" #: plugins/admin/departments/class_departmentManagement.inc:35 msgid "Manage departments" @@ -4086,8 +4063,8 @@ msgid "" "Manage departments, countries, domain components, domains, localities and " "organization nodes," msgstr "" -"Gérer les départements, pays, composants de domaine, les domaines, les " -"localités et les nÅ“uds des organisations" +"Gérer les nÅ“uds des départements, pays, composants de domaine, domaines, " +"localités et organisations" #: plugins/admin/departments/class_departmentManagement.inc:38 msgid "Users and groups" @@ -4097,11 +4074,11 @@ msgstr "Utilisateurs et groupes" #: plugins/admin/departments/class_dcObject.inc:31 #: plugins/admin/departments/class_dcObject.inc:34 msgid "Domain Component" -msgstr "Objet Domaine" +msgstr "Composant de domaine" #: plugins/admin/departments/class_dcObject.inc:51 msgid "domain component" -msgstr "Composant domaine" +msgstr "composant de domaine" #: plugins/admin/departments/class_locality.inc:30 #: plugins/admin/departments/class_locality.inc:31 @@ -4111,7 +4088,7 @@ msgstr "Lieu" #: plugins/admin/departments/class_locality.inc:51 msgid "locality" -msgstr "Lieu" +msgstr "lieu" #: plugins/admin/departments/dep-list.xml:9 msgid "List of departments" @@ -4119,7 +4096,7 @@ msgstr "Liste des départements" #: plugins/admin/departments/class_country.inc:50 msgid "country" -msgstr "Pays" +msgstr "pays" #: plugins/admin/users/class_userManagement.inc:43 msgid "Manage users" @@ -4139,8 +4116,8 @@ msgid "" "Password method \"%s\" does not support locking. Account \"%s\" has not been" " locked!" msgstr "" -"La méthode \"%s\" ne permet pas le verrouillage du mot de passe. Le compte " -"\"%s\" n'a pas été verrouillé !" +"La méthode de mot de passe «%s» ne permet pas le verrouillage. Le compte " +"«%s» n'a pas été verrouillé !" #: plugins/admin/users/class_userManagement.inc:218 msgid "Unlock account" @@ -4148,7 +4125,7 @@ msgstr "Déverrouiller le compte" #: plugins/admin/users/class_userManagement.inc:220 msgid "Lock account" -msgstr "Verrouiller Compte" +msgstr "Verrouiller le compte" #: plugins/admin/users/user-list.xml:11 msgid "List of users" @@ -4164,7 +4141,7 @@ msgstr "Prénom" #: plugins/admin/users/user-list.xml:127 msgid "Lock users" -msgstr "Verouillez les utilisateurs" +msgstr "Verrouiller les utilisateurs" #: plugins/admin/users/user-list.xml:135 msgid "Unlock users" @@ -4172,15 +4149,15 @@ msgstr "Déverrouiller les utilisateurs" #: plugins/admin/users/user-list.xml:146 msgid "Apply template" -msgstr "Appliquer le modèle" +msgstr "Appliquer un modèle" #: plugins/admin/users/user-list.xml:177 msgid "New user from template" -msgstr "Créer un nouvel utilisateur depuis un modèle" +msgstr "Nouvel utilisateur depuis ce modèle" #: plugins/admin/users/user-list.xml:189 msgid "Edit user" -msgstr "Editer cet utilisateur" +msgstr "Éditer l’utilisateur" #: plugins/admin/users/user-list.xml:198 msgid "%{filter:lockLabel(userPassword)}" @@ -4188,7 +4165,7 @@ msgstr "%{filter:lockLabel(userPassword)}" #: plugins/admin/users/user-list.xml:212 msgid "Remove user" -msgstr "Suppression de l'utilisateur" +msgstr "Supprimer l'utilisateur" #: plugins/admin/groups/class_roleGeneric.inc:55 #: plugins/admin/groups/class_roleGeneric.inc:59 @@ -4204,7 +4181,7 @@ msgstr "Information du rôle" #: plugins/admin/groups/class_roleGeneric.inc:60 msgid "Organizational role" -msgstr "Rôle organisationnel" +msgstr "Rôle organisationel" #: plugins/admin/groups/class_roleGeneric.inc:82 #: ihtml/themes/breezy/msg_dialog.tpl.c:8 @@ -4226,11 +4203,11 @@ msgstr "Numéro de fax" #: plugins/admin/groups/class_roleGeneric.inc:105 msgid "Role members" -msgstr "Les membres du rôle" +msgstr "Membres du rôle" #: plugins/admin/groups/class_roleGeneric.inc:108 msgid "Add users for the role" -msgstr "Ajouter des utilisateurs au rôle" +msgstr "Ajouter des utilisateurs dans le rôle" #: plugins/admin/groups/class_groupManagement.inc:36 msgid "Manage groups and roles" @@ -4250,17 +4227,18 @@ msgstr "Action annulée" #, php-format msgid "System %s has no mac address defined, cannot trigger action" msgstr "" -"Système %s n'a pas d'adresse mac définie, ne peut pas déclencher l'action" +"Le système %s n'a pas d'adresse mac définie, impossible de déclencher " +"l'action" #: plugins/admin/groups/class_groupManagement.inc:158 #, php-format msgid "Could not find system %s, cannot trigger action" -msgstr "Impossible de trouver le système %s, impossible d\"exécuter l'action" +msgstr "Impossible de trouver le système %s, impossible d’exécuter l'action" #: plugins/admin/groups/class_groupManagement.inc:176 #, php-format msgid "System %s is currently installing" -msgstr "Système %s est actuellement en cours d'installation" +msgstr "Le système %s est actuellement en cours d'installation" #: plugins/admin/groups/class_groupManagement.inc:196 #: plugins/admin/groups/class_groupManagement.inc:222 @@ -4274,11 +4252,11 @@ msgstr "Action déclenchée" #: plugins/admin/groups/class_groupManagement.inc:198 #, php-format msgid "Action called without error (result was \"%s\")" -msgstr "Action appelée sans erreur (résultat \"%s\")" +msgstr "Action appelée sans erreur (résultat : \"%s\")" #: plugins/admin/groups/class_groupManagement.inc:259 msgid "Edit role properties" -msgstr "Éditer les propriétés du role" +msgstr "Éditer les propriétés du rôle" #: plugins/admin/groups/class_groupManagement.inc:275 msgid "Posix" @@ -4286,7 +4264,7 @@ msgstr "Posix" #: plugins/admin/groups/class_groupManagement.inc:275 msgid "Edit posix properties" -msgstr "Modifier les propriétés posix" +msgstr "Éditer les propriétés posix" #: plugins/admin/groups/class_groupManagement.inc:318 msgid "Show user groups" @@ -4294,7 +4272,7 @@ msgstr "Afficher les groupes utilisateurs" #: plugins/admin/groups/class_groupManagement.inc:319 msgid "Show organizational roles" -msgstr "Montrer les rôles organisationnels " +msgstr "Afficher les rôles organisationels" #: plugins/admin/groups/class_groupManagement.inc:320 msgid "Show application groups" @@ -4307,17 +4285,17 @@ msgstr "Afficher des groupes non identifiés" #: plugins/admin/groups/class_groupManagement.inc:324 #: include/select/groupSelect/group-filter.tpl.c:5 msgid "Show primary groups" -msgstr "Groupes principaux" +msgstr "Afficher les groupes principaux" #: plugins/admin/groups/class_groupManagement.inc:326 #: include/select/groupSelect/group-filter.tpl.c:11 msgid "Show mail groups" -msgstr "Groupes de messagerie" +msgstr "Afficher les groupes de courriel" #: plugins/admin/groups/class_groupManagement.inc:329 #: include/select/groupSelect/group-filter.tpl.c:8 msgid "Show samba groups" -msgstr "Groupes Samba" +msgstr "Afficher les groupes Samba" #: plugins/admin/groups/class_groupManagement.inc:333 msgid "Show DSA entries" @@ -4346,16 +4324,16 @@ msgstr "Afficher les groupes de téléphones" #: plugins/admin/groups/class_ogroup.inc:61 #, php-format msgid "Unknown type : %s" -msgstr "Entrée inconnue: '%s' " +msgstr "Type inconnu : %s" #: plugins/admin/groups/class_ogroup.inc:65 #, php-format msgid "Non existing dn: %s" -msgstr "le dn n'existe pas : %s" +msgstr "DN inexistant : %s" #: plugins/admin/groups/class_ogroup.inc:154 msgid "Object group" -msgstr "Groupes d'objets" +msgstr "Groupe d'objets" #: plugins/admin/groups/class_ogroup.inc:155 msgid "Object group information" @@ -4364,7 +4342,7 @@ msgstr "Information du groupe d’objets" #: plugins/admin/groups/class_ogroup.inc:159 #: plugins/admin/groups/class_ogroup.inc:160 msgid "Group" -msgstr "Groupes" +msgstr "Groupe" #: plugins/admin/groups/class_ogroup.inc:196 msgid "Short description of this group" @@ -4380,11 +4358,11 @@ msgstr "Objets membres de ce groupe" #: plugins/admin/groups/class_ogroup.inc:213 msgid "System trust" -msgstr "Système de Confiance" +msgstr "Systèmes" #: plugins/admin/groups/class_ogroup.inc:217 msgid "Trust mode" -msgstr "Mode de confiance" +msgstr "Mode" #: plugins/admin/groups/class_ogroup.inc:217 msgid "Type of authorization for those hosts" @@ -4410,7 +4388,7 @@ msgstr "Autoriser seulement ce groupe à se connecter sur ces listes d'hôtes" msgid "" "Putting both workstations and terminals in the same group is not allowed" msgstr "" -"Mettre les stations de travail et les terminaux dans le même groupe est " +"Mettre des stations de travail et des terminaux dans le même groupe est " "interdit" #: plugins/admin/groups/group-list.xml:11 @@ -4429,7 +4407,7 @@ msgstr "Programmer une action" #: plugins/admin/acl/class_aclManagement.inc:32 #: plugins/admin/acl/class_aclManagement.inc:45 msgid "ACL assignment creation" -msgstr "création d'affectation ACL" +msgstr "Création d'affectation ACL" #: plugins/admin/acl/class_aclManagement.inc:33 msgid "Create an ACL assignment on an arbitrary dn" @@ -4441,28 +4419,28 @@ msgstr "Dn" #: plugins/admin/acl/class_aclManagement.inc:49 msgid "DN you wish to add assignments for" -msgstr "DN auquel vous souhaitez ajouter des affectations" +msgstr "DN pour lequel vous souhaitez ajouter des affectations" #: plugins/admin/acl/class_aclManagement.inc:110 msgid "The dn you entered could not be found in the LDAP" -msgstr "Impossible de trouver le dn demande dans l'annuaire LDAP" +msgstr "Impossible de trouver le dn demandé dans l'annuaire LDAP" #: plugins/admin/acl/class_aclManagement.inc:139 msgid "ACL assignments" -msgstr "Gestion des ACL" +msgstr "Affectations ACL" #: plugins/admin/acl/class_aclManagement.inc:140 msgid "ACL assignments management" -msgstr "gestion des affectations ACL " +msgstr "Gestion des affectations ACL " #: plugins/admin/acl/class_aclManagement.inc:141 msgid "Manage ACL roles assignments to users" -msgstr "Affectations des rôles ACL pour les utilisateurs" +msgstr "Gérer les affectations des rôles ACL aux utilisateurs" #: plugins/admin/acl/class_aclManagement.inc:219 #: plugins/admin/acl/class_aclAssignment.inc:273 msgid "ACL Assignment" -msgstr "Gestion des ACL" +msgstr "Affectation ACL" #: plugins/admin/acl/class_aclAssignment.inc:26 msgid "ACL Assignment Dialog" @@ -4475,12 +4453,12 @@ msgstr "Boite de dialogue des affectations de rôles de contrôle d’accès" #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Is this applying on complete subtree or only the base?" msgstr "" -"Est-ce que cela doit être appliqué a la sous-arborescence complète ou " -"seulement la base?" +"Est-ce que cela doit être appliqué à la sous-arborescence complète ou " +"seulement la base ?" #: plugins/admin/acl/class_aclAssignment.inc:44 msgid "Subtree" -msgstr "Sous branche" +msgstr "Sous-arbre" #: plugins/admin/acl/class_aclAssignment.inc:44 msgid "Base only" @@ -4492,20 +4470,19 @@ msgstr "Rôle à appliquer" #: plugins/admin/acl/class_aclAssignment.inc:52 msgid "For all users" -msgstr "Tout les utilisateurs" +msgstr "Tous les utilisateurs" #: plugins/admin/acl/class_aclAssignment.inc:52 msgid "Apply this ACL for all LDAP users" -msgstr "Appliquer cette ACL pour tout les utilisateurs LDAP" +msgstr "Appliquer cette ACL pour tous les utilisateurs LDAP" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Membres" #: plugins/admin/acl/class_aclAssignment.inc:56 msgid "Users or groups to assign this role to." -msgstr "Utilisateurs et rôles à qui appliquer cette ACL" +msgstr "Utilisateurs et groupes à qui appliquer cette ACL" #: plugins/admin/acl/class_aclAssignment.inc:190 #, php-format @@ -4514,24 +4491,24 @@ msgstr ", et %d autres" #: plugins/admin/acl/class_aclAssignment.inc:259 msgid "ACL assignment" -msgstr "Gestion des ACL" +msgstr "Affectation ACL" #: plugins/admin/acl/class_aclAssignment.inc:274 msgid "Access control roles assignment" -msgstr "Gestion des listes de contrôle d’accès" +msgstr "Affectation des listes de contrôle d’accès" #: plugins/admin/acl/class_aclAssignment.inc:293 msgid "Assignments" -msgstr "Affectation" +msgstr "Affectations" #: plugins/admin/acl/class_aclAssignment.inc:297 msgid "ACL role assignments for this base" -msgstr "Affectation des rôles ACL pour cette base" +msgstr "Affectations de rôles ACL pour cette base" #: plugins/admin/acl/class_aclAssignment.inc:308 #, php-format msgid "Assignments on object or subtree %s" -msgstr "Affectation sur l'objet ou la branche %s" +msgstr "Affectations sur l'objet ou la branche %s" #: plugins/admin/aclrole/class_aclEditionDialog.inc:186 msgid "No ACL settings for this category" @@ -4540,29 +4517,28 @@ msgstr "Pas d'ACL pour cette catégorie" #: plugins/admin/aclrole/class_aclEditionDialog.inc:188 #, php-format msgid "ACL for these objects: %s" -msgstr "ACL pour ces objets: %s" +msgstr "ACL pour ces objets : %s" #: plugins/admin/aclrole/class_aclEditionDialog.inc:192 msgid "Edit category ACL" -msgstr "Editer les catégories ACL" +msgstr "Éditer les catégories ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:194 msgid "Reset category ACL" msgstr "Remettre à zéro les catégories ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" -msgstr "Liste des catégories d'acl disponibles" +msgstr "Liste des catégories ACL disponibles" #: plugins/admin/aclrole/class_aclEditionDialog.inc:215 msgid "All objects in current subtree" -msgstr "Tout les objets dans le sous arbres actuel" +msgstr "Tous les objets dans le sous-arbre actuel" #: plugins/admin/aclrole/class_aclEditionDialog.inc:217 #, php-format msgid "Edit ACL for \"%s\"" -msgstr "Modifier ACL pour \"%s\"" +msgstr "Éditer l’ACL pour \"%s\"" #: plugins/admin/aclrole/class_aclEditionDialog.inc:258 #: plugins/admin/aclrole/class_aclEditionDialog.inc:357 @@ -4572,27 +4548,27 @@ msgstr "lecture" #: plugins/admin/aclrole/class_aclEditionDialog.inc:260 #: plugins/admin/aclrole/class_aclEditionDialog.inc:358 msgid "write" -msgstr "écrire" +msgstr "écriture" #: plugins/admin/aclrole/class_aclEditionDialog.inc:344 msgid "Show/hide advanced settings" -msgstr "Afficher/Cacher la configuration avancée" +msgstr "Afficher/Cacher les paramètres avancés" #: plugins/admin/aclrole/class_aclEditionDialog.inc:349 msgid "Create objects" -msgstr "Créer un objet" +msgstr "Créer des objets" #: plugins/admin/aclrole/class_aclEditionDialog.inc:350 msgid "Move objects" -msgstr "Bouger un objet" +msgstr "Déplacer des objets" #: plugins/admin/aclrole/class_aclEditionDialog.inc:351 msgid "Remove objects" -msgstr "Enlever les objets" +msgstr "Supprimer des objets" #: plugins/admin/aclrole/class_aclEditionDialog.inc:353 msgid "Grant permission to owner" -msgstr "Donner la permission à l'utilisateur" +msgstr "Sur son propre nÅ“ud seulement" #: plugins/admin/aclrole/class_aclEditionDialog.inc:362 msgid "Complete object" @@ -4600,7 +4576,7 @@ msgstr "L'objet au complet" #: plugins/admin/aclrole/class_aclRoleManagement.inc:35 msgid "ACL roles management" -msgstr "Gestion des rôles" +msgstr "Gestion des rôles ACL" #: plugins/admin/aclrole/class_aclRoleManagement.inc:36 msgid "Manage ACL roles" @@ -4609,19 +4585,19 @@ msgstr "Gérer les rôles ACL" #: plugins/admin/aclrole/class_aclRole.inc:38 #, php-format msgid "Contains settings for these objects: %s" -msgstr "Contient les paramètres pour ces objets: %s" +msgstr "Contient les paramètres pour ces objets : %s" #: plugins/admin/aclrole/class_aclRole.inc:78 msgid "Access control roles" -msgstr "Contrôle d'accès (ACL)" +msgstr "Rôles de contrôle d'accès (ACL)" #: plugins/admin/aclrole/class_aclRole.inc:81 msgid "ACL role" -msgstr "Rôles ACL" +msgstr "Rôle ACL" #: plugins/admin/aclrole/class_aclRole.inc:99 msgid "A name for this role" -msgstr "Nom du rôle " +msgstr "Un nom pour ce rôle" #: plugins/admin/aclrole/class_aclRole.inc:103 msgid "Short description of this role" @@ -4652,12 +4628,12 @@ msgid "" "This dialog will automatically add a new super administrator to your LDAP " "tree." msgstr "" -"Ce dialogue vas automatiquement créer un nouveau super utilisateur dans " -"votre arbre LDAP." +"Ce dialogue va automatiquement créer un nouveau super utilisateur dans votre" +" arbre LDAP." #: setup/setup_migrate_adminAccount.tpl.c:11 msgid "User ID" -msgstr "ID de l'utilisateur" +msgstr "Indentifiant" #: setup/setup_migrate_adminAccount.tpl.c:17 msgid "Password (again)" @@ -4669,7 +4645,7 @@ msgid "" "any configuration right now. This simple wizard intends to help you while " "setting it up." msgstr "" -"Il semble que c'est votre première installation de FusionDirectory - nous " +"Il semble que c'est votre premier lancement de FusionDirectory - nous " "n'avons pas trouvé de configuration. Ce programme d'aide à l'installation " "vous aidera à configurer FusionDirectory." @@ -4684,12 +4660,12 @@ msgstr "Créer une simple configuration mono site" #: setup/setup_welcome.tpl.c:11 msgid "Tries to find problems within your PHP and LDAP setup" msgstr "" -"Essaye de trouver si il existe des problèmes dans votre configuration PHP ou" -" LDAP" +"Essayer de trouver si il existe des problèmes dans votre configuration PHP " +"ou LDAP" #: setup/setup_welcome.tpl.c:14 msgid "Let you choose from a set of basic and advanced configuration switches" -msgstr "Vous permet de choisir un jeu d'option de base ou avancées" +msgstr "Vous permettre de régler des paramètres de base ou avancés" #: setup/setup_welcome.tpl.c:17 msgid "Guided migration of existing LDAP trees" @@ -4697,15 +4673,15 @@ msgstr "Migration assistée d'un annuaire LDAP existant" #: setup/setup_welcome.tpl.c:20 msgid "What will the wizard NOT do for you?" -msgstr "Qu'est ce que le l'assistant d'installation ne fera pas pour vous ?" +msgstr "Qu'est ce que l'assistant d'installation ne fera PAS pour vous ?" #: setup/setup_welcome.tpl.c:23 msgid "Find every possible configuration error" -msgstr "Trouver toutes les erreur possible dans votre configuration" +msgstr "Trouver toutes les erreurs possibles dans votre configuration" #: setup/setup_welcome.tpl.c:26 msgid "Migrate every possible LDAP setup - create backup dumps!" -msgstr "Migrer tout les scénario LDAP possible - créez des sauvegardes !" +msgstr "Migrer tous les scénarios LDAP possibles - faites des sauvegardes !" #: setup/setup_welcome.tpl.c:29 msgid "To continue:" @@ -4718,16 +4694,16 @@ msgid "" "local filesystem. This can be done by executing the following command:" msgstr "" "Pour des raisons de sécurité vous devez vous authentifier en créant le " -"fichier '%1', contenant l'ID de la session sur le(s) serveur(s). Ceci peut " -"être réalisé en exécutant la commande suivante:" +"fichier '%1', contenant l'ID de la session sur le serveur. Ceci peut être " +"réalisé en exécutant la commande suivante :" #: setup/setup_welcome.tpl.c:35 msgid "Click the 'Next' button when you've finished." -msgstr "Cliquer sur 'Continuer' quand vous avez fini." +msgstr "Cliquez sur 'Continuer' quand vous avez fini." #: setup/setup_migrate_baseOC.tpl.c:2 msgid "Add required object classes to the LDAP base" -msgstr "Ajouter les Object class obligatoires a l'annuaire LDAP. " +msgstr "Ajouter les Object class obligatoires à la base LDAP" #: setup/setup_migrate_baseOC.tpl.c:5 setup/setup_migrate_accounts.tpl.c:17 msgid "Current" @@ -4747,10 +4723,10 @@ msgid "" " that may occur when migration to FusionDirectory base LDAP administration. " "You may want to fix the problems below, in order to provide smooth services." msgstr "" -"Pendant l'inspection LDAP, nous allons regarder pour les problèmes " -"classiques qui peuvent arriver lorsque l'on migre vers une administration " -"basée sur FusionDirectory. Vous pouvez fixer les problèmes si dessous afin " -"de procurer une administration facilitée." +"Pendant l'inspection LDAP, nous allons chercher les problèmes classiques qui" +" peuvent arriver lorsque l'on migre vers une administration basée sur " +"FusionDirectory. Vous devriez corriger les problèmes ci-dessous pour tout se" +" passe bien." #: setup/setup_migrate.tpl.c:5 msgid "Check again" @@ -4761,7 +4737,7 @@ msgid "" "This dialog allows moving a couple of entries to the configured tree. Doing " "this may straighten your LDAP service." msgstr "" -"Ce dialogue permet de déplacer un ensemble d'entrées dans l’annuaire " +"Ce dialogue permet de déplacer un ensemble d'entrées vers l’annuaire " "configuré. Exécuter cette opération peut améliorer votre service LDAP." #: setup/setup_migrate_accounts.tpl.c:5 @@ -4777,7 +4753,7 @@ msgstr "" #: setup/setup_migrate_accounts.tpl.c:8 msgid "Move selected entries into this tree" -msgstr "Déplacer les entrées sélectionnées " +msgstr "Déplacer les entrées sélectionnées vers cette branche" #: setup/setup_migrate_accounts.tpl.c:11 msgid "" @@ -4796,7 +4772,7 @@ msgid "" msgstr "" "Si vous voulez savoir ce qui sera effectué lorsque vous migrerez les entrées" " sélectionnées, utilisez le bouton 'Montrer les changements' pour voir le " -"fichier LDIF." +"LDIF." #: setup/setup_migrate_accounts.tpl.c:26 msgid "Show changes" @@ -4809,8 +4785,7 @@ msgstr "Création du fichier de configuration" #: setup/setup_finish.tpl.c:5 msgid "Run %1 to put the correct right on fusiondirectory.conf" msgstr "" -"Exécutez %1 pour mettre les droits correctement sur le fichier " -"fusiondirectory.conf" +"Exécutez %1 pour mettre les bons droits sur le fichier fusiondirectory.conf" #: setup/setup_finish.tpl.c:8 msgid "Download configuration" @@ -4818,7 +4793,7 @@ msgstr "Télécharger la configuration" #: setup/setup_finish.tpl.c:11 msgid "Status: " -msgstr "Statut: " +msgstr "Statut : " #: include/select/groupSelect/group-filter.tpl.c:2 #: ihtml/themes/breezy/simple-filter.tpl.c:2 @@ -4845,9 +4820,9 @@ msgid "" "This dialog provides a simple way to change your password. Enter the new " "password (twice) in the fields below and press the 'Change' button." msgstr "" -"Cette fenêtre vous permet de changer votre mot de passe de manière simple. " -"Entrez le mot de passe actuel et le nouveau mot de passe (deux fois) dans " -"les champs ci-dessous et appuyez sur le bouton 'Changer'." +"Cette fenêtre vous permet de changer votre mot de passe facilement. Entrez " +"le nouveau mot de passe (deux fois) dans les champs ci-dessous et appuyez " +"sur le bouton 'Changer'." #: ihtml/themes/breezy/recovery.tpl.c:20 ihtml/themes/breezy/recovery.tpl.c:23 #: ihtml/themes/breezy/recovery.tpl.c:65 ihtml/themes/breezy/recovery.tpl.c:68 @@ -4858,11 +4833,11 @@ msgstr "Répertoire" #: ihtml/themes/breezy/recovery.tpl.c:35 ihtml/themes/breezy/recovery.tpl.c:38 msgid "New password repeated" -msgstr "Nouveau mot de passe" +msgstr "Nouveau mot de passe (de nouveau)" #: ihtml/themes/breezy/recovery.tpl.c:41 msgid "Password strength" -msgstr "Niveau de sécurité du mot de passe" +msgstr "Sécurité du mot de passe" #: ihtml/themes/breezy/recovery.tpl.c:44 ihtml/themes/breezy/recovery.tpl.c:77 msgid "Change" @@ -4878,15 +4853,15 @@ msgstr "Réussi" #: ihtml/themes/breezy/recovery.tpl.c:56 msgid "Your password has been changed successfully." -msgstr "Votre mot de passe à été changé avec succès." +msgstr "Votre mot de passe a été changé avec succès." #: ihtml/themes/breezy/recovery.tpl.c:59 msgid "" "Enter your current e-mail address in the field below and press the 'Change' " "button." msgstr "" -"Entrez votre adresse de messagerie actuel dans le champ si dessous et " -"appuyer sur le bouton 'Changer'" +"Entrez votre adresse de courriel dans le champ ci-dessous et appuyez sur le " +"bouton 'Changer'." #: ihtml/themes/breezy/recovery.tpl.c:62 msgid "" @@ -4901,8 +4876,8 @@ msgid "" "Password recovery is not activated. If you have lost your password, please " "contact your administrator" msgstr "" -"La fonction de récupération des mots de passe n'est pas activée. Si vous " -"avez perdu votre mot de passe, contacter votre administrateur réseau" +"La fonction de récupération de mot de passe n'est pas activée. Si vous avez " +"perdu votre mot de passe, veuillez contacter votre administrateur réseau" #: ihtml/themes/breezy/login.tpl.c:2 msgid "Login screen" @@ -4913,8 +4888,8 @@ msgid "" "Please use your username and your password to log into the site " "administration system." msgstr "" -"Veuillez utiliser votre nom d'utilisateur et votre mot de passe afin de vous" -" connecter." +"Veuillez entrer votre nom d'utilisateur et votre mot de passe afin de vous " +"connecter." #: ihtml/themes/breezy/login.tpl.c:8 ihtml/themes/breezy/login.tpl.c:11 #: ihtml/themes/breezy/login.tpl.c:14 @@ -4923,7 +4898,7 @@ msgstr "Nom d'utilisateur" #: ihtml/themes/breezy/login.tpl.c:26 msgid "I forgot my password" -msgstr "j'ai perdu mon mot de passe" +msgstr "J'ai perdu mon mot de passe" #: ihtml/themes/breezy/login.tpl.c:38 msgid "Sign in" @@ -4943,8 +4918,8 @@ msgstr "" "L'option size limit rend les opérations LDAP plus rapides et permet au " "serveur LDAP d'avoir un niveau de charge plus léger. La façon la plus facile" " de gérer des grandes bases de données sans de longs temps d'attentes, " -"serait de limiter la recherche à des valeurs plus petites et d'utiliser les " -"filtres pour obtenir les valeurs que vous recherchez." +"serait de limiter la recherche à une taille plus petite et d'utiliser les " +"filtres pour trouver les entrées que vous cherchez." #: ihtml/themes/breezy/sizelimit.tpl.c:5 msgid "Please choose the way to react for this session" @@ -4953,21 +4928,20 @@ msgstr "Veuillez choisir la façon de réagir pour cette session" #: ihtml/themes/breezy/sizelimit.tpl.c:8 msgid "ignore this error and show all entries the LDAP server returns" msgstr "" -"ignorer cette erreur et montrer toutes les entrées retournées par le serveur" -" LDAP" +"ignorer cette erreur et afficher toutes les entrées retournées par le " +"serveur LDAP" #: ihtml/themes/breezy/sizelimit.tpl.c:11 msgid "" "ignore this error and show all entries that fit into the defined sizelimit " "and let me use filters instead" msgstr "" -"ignorer cette erreur et montrer toutes les entrées qui sont récupérées grâce" -" au paramètre sizelimit défini et laissez moi utiliser les filtres pour " -"restreindre les données a visualiser" +"ignorer cette erreur et afficher les entrées sous la limite définie et " +"utiliser les filtres pour restreindre les données affichées" #: ihtml/themes/breezy/sizelimit.tpl.c:14 msgid "Set" -msgstr "Activer" +msgstr "Valider" #: ihtml/themes/breezy/simple-remove.tpl.c:2 msgid "Warning: you are about to delete the following objects" @@ -4979,15 +4953,13 @@ msgid "" "Please double check if you really want to do this since there is no way for " "FusionDirectory to get your data back." msgstr "" -"Veuillez vérifier que vous voulez effectuer cette action. Toutes les données" -" seront perdues étant donné qu'il est impossible pour FusionDirectory de " -"récupérer vos données." +"Veuillez vérifier que vous voulez effectuer cette action étant donné qu'il " +"est impossible pour FusionDirectory de récupérer vos données par la suite." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" -"D'accord - si vous êtes sur - cliquez sur 'Supprimer' pour continuer ou sur " +"Donc - si vous êtes sûr - cliquez sur 'Supprimer' pour continuer ou sur " "'Annuler' pour abandonner." #: ihtml/themes/breezy/framework.tpl.c:2 @@ -5000,12 +4972,12 @@ msgstr "Déconnexion" #: ihtml/themes/breezy/framework.tpl.c:8 msgid "Signed in:" -msgstr "Connecté:" +msgstr "Connecté :" #: ihtml/themes/breezy/framework.tpl.c:11 #, c-format msgid "Session expires in %d!" -msgstr "La session expire dans %d !" +msgstr "La session expire dans %d !" #: ihtml/themes/breezy/restore-confirm.tpl.c:2 msgid "Warning: you are about to restore the following snapshot" @@ -5034,7 +5006,7 @@ msgstr "Conflit de verrou détecté" #: ihtml/themes/breezy/islocked.tpl.c:8 msgid "\"%1\" has been locked by \"%2\" since %3" -msgstr "\"%1\" est verrouille par \"%2\" depuis %3" +msgstr "\"%1\" a été verrouillé par \"%2\" depuis %3" #: ihtml/themes/breezy/islocked.tpl.c:11 msgid "" @@ -5043,104 +5015,17 @@ msgid "" "pressing the \"%1\" button." msgstr "" "Si la détection de ce verrou est fausse, une autre personne a manifestement " -"fermé la fenêtre de son navigateur durant une opération de modification " -"d'une entrée. Dans ce cas, vous pouvez supprimez le verrou en cliquant sur " -"le bouton \"%1\"." +"fermé la fenêtre de son navigateur durant une opération de modification. " +"Dans ce cas, vous pouvez supprimer le verrou en cliquant sur le bouton " +"\"%1\"." #: ihtml/themes/breezy/islocked.tpl.c:14 msgid "Read only" msgstr "Lecture seule" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" -"Cela peut être utilisé par plusieurs groupes. Veuillez vérifier que vous " -"voulez effectuer cette opération étant donné qu'il est impossible pour " -"FusionDirectory de récupérer vos données." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Assistant pour le copier & coller" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Certaines valeurs doivent être unique dans tout l'arbre et certaines " -"combinaisons n'ont pas de sens. FusionDirectory vous montre les valeurs " -"correspondantes. Veuillez maintenir les valeurs pour respecter les " -"politiques de sécurité." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Veuillez vous souvenir que certaines propriétés comme les copie instantanées" -" ne seront pas copiés !" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"Ou si vous couper ou copiez un entrée avec FusionDirectory et que vous " -"effacer la source, vous pouvez rencontrer des erreurs en tentant de le " -"coller à nouveau !" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Opération réalisée" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" -msgstr "Créer une nouvelle entrée à partir d'un modèle" - -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "ACL assignés à l'entrée actuelle" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nouvelle ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Type ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Sélectionnez un type d'acl" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Paramètres supplémentaire pour le filtre" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Utiliser les membres depuis" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Membres disponibles" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Liste les destinataires possibles pour les messages" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Lister les destinataires du message" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL pour cet objet" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Type de rôles disponibles" +msgstr "Création d’un nouvel objet depuis un modèle" #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" @@ -5148,60 +5033,19 @@ msgstr "L'équipe FusionDirectory" #: plugins/generic/references/contents.tpl.c:2 msgid "<strong>%1</strong> references our <strong>%3</strong>" -msgstr "<strong>%1</strong> fait référence à <strong>%3</strong>" +msgstr "<strong>%1</strong> fait référence à notre <strong>%3</strong>" #: plugins/generic/references/contents.tpl.c:5 msgid "" "<strong>%1</strong> references our field <strong>%3</strong> from tab " "<strong>%2</strong>" msgstr "" -"<strong>%1</strong> fait référence au champ <strong>%3</strong> du tab " -"<strong>%2</strong>" +"<strong>%1</strong> fait référence au champ <strong>%3</strong> de notre " +"onglet <strong>%2</strong>" #: plugins/generic/references/contents.tpl.c:8 msgid "This object has no relationship to other objects." -msgstr "Cette objet n'a pas de relation avec d'autres objets." - -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Préférences utilisateur" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Effacer le mot de passe" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Attribuer un nouveau mot de passe" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Image personnelle" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Image de l'utilisateur" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Suppression de l'image personnelle" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" -"Vous n'avez pas l'autorisation pour changer votre mot de passe à ce moment" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "Votre méthode de cryptage des mots de passe ne sera pas changé !" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Votre mot de passe a été changé. N'oubliez pas de modifier les programmes " -"qui l'utilisent." +msgstr "Cet objet n'a pas de relation avec d'autres objets." #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" @@ -5234,7 +5078,7 @@ msgstr[1] "%2 d’entre eux ont un compte %1" #: plugins/addons/dashboard/users_stats.tpl.c:8 msgid "None of them have a %1 account" -msgstr "Aucun d’eux n’a un compte %1" +msgstr "Aucun n’a un compte %1" #: plugins/addons/dashboard/pwd_stats.tpl.c:5 msgid "One of them use %1 method" @@ -5265,7 +5109,7 @@ msgstr "Il n'y a pas de compte expiré" #: plugins/addons/dashboard/users_accounts.tpl.c:11 #: plugins/addons/dashboard/users_accounts.tpl.c:23 msgid "Manager concerned" -msgstr "Manager concerné" +msgstr "Responsable concerné" #: plugins/addons/dashboard/users_accounts.tpl.c:14 msgid "There is one account expiring in the next %1 days" @@ -5279,7 +5123,7 @@ msgstr "Il n’y a pas de compte qui expire dans les %1 prochains jours" #: plugins/addons/dashboard/users_accounts.tpl.c:20 msgid "Next expired accounts" -msgstr "Prochains comptes expirés" +msgstr "Prochains comptes à expirer" #: plugins/admin/users/user-filter.tpl.c:5 msgid "Show templates" @@ -5287,38 +5131,37 @@ msgstr "Afficher les modèles" #: plugins/admin/users/user-filter.tpl.c:8 msgid "Show functional users" -msgstr "montrer les utilisateurs fonctionnels" +msgstr "Afficher les utilisateurs fonctionnels" #: plugins/admin/users/user-filter.tpl.c:11 msgid "Show POSIX users" -msgstr "Montrer les utilisateurs Posix" +msgstr "Afficher les utilisateurs POSIX" #: plugins/admin/users/user-filter.tpl.c:14 msgid "Show Mail users" -msgstr "Montrer les utilisateurs de la messagerie" +msgstr "Afficher les utilisateurs de courriel" #: plugins/admin/users/user-filter.tpl.c:17 msgid "Show Samba users" -msgstr "Montrer les utilisateurs samba" +msgstr "Afficher les utilisateurs Samba" #: plugins/admin/acl/remove.tpl.c:2 msgid "" "Warning: you are about to delete the ACL assignments on the following " "objects" msgstr "" -"Attention: vous êtes sur le point de supprimer les assignations d'ACL sur " -"les objets suivants" +"Attention : vous êtes sur le point de supprimer les affectations ACL sur les" +" objets suivants" #: plugins/admin/acl/remove.tpl.c:5 msgid "" "This includes all ACL assignments made on this node(s). If you want the list" " of these assignments, please cancel and open the objects." msgstr "" -"Cela comprend toutes les affectations ACL faites sur ce noeud (s). Si vous " -"voulez la liste de ces assignations, annuler et ouvrez les objets." +"Cela comprend toutes les affectations ACL faites sur ce(s) noeud(s). Si vous" +" voulez la liste de ces affectations, annulez et ouvrez les objets." #: plugins/admin/acl/remove.tpl.c:8 msgid "Press 'Delete' to continue or 'Cancel' to abort." msgstr "" -"D'accord - si vous êtes sur - cliquez sur 'Supprimer' pour continuer ou sur " -"'Annuler' pour abandonner." +"Cliquez sur 'Supprimer' pour continuer ou sur 'Annuler' pour abandonner." diff --git a/locale/hu_HU/fusiondirectory.po b/locale/hu_HU/fusiondirectory.po index 3e47f19ef1223ba557f402a147b4993ecf94c4c4..4b145d4a367f089515be5d10cb7af31d4fb83449 100644 --- a/locale/hu_HU/fusiondirectory.po +++ b/locale/hu_HU/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -910,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1952,7 +1945,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1994,13 +1987,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2011,7 +2004,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2047,51 +2040,51 @@ msgstr "" msgid "Remove" msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2163,38 +2156,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2204,7 +2197,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2545,22 +2538,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2578,7 +2571,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2619,7 +2611,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "" @@ -2628,7 +2619,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "" @@ -2835,53 +2825,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3431,179 +3421,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3630,7 +3612,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4197,7 +4179,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4249,7 +4230,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4628,7 +4608,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4686,85 +4665,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4783,44 +4687,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/id/fusiondirectory.po b/locale/id/fusiondirectory.po index 9a6831fab775145d1be39d367b519808d21ee3c0..be258058b97de0b9c987fa4dda059ad3e640d84a 100644 --- a/locale/id/fusiondirectory.po +++ b/locale/id/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -174,8 +174,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "" @@ -197,7 +196,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -234,7 +232,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -681,8 +679,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -743,7 +741,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -843,7 +841,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -880,7 +878,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -892,7 +889,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -909,7 +905,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -925,7 +921,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -996,154 +992,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1177,25 +1173,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1468,19 +1464,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1951,7 +1944,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1993,13 +1986,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2010,7 +2003,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2046,51 +2039,51 @@ msgstr "" msgid "Remove" msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2162,38 +2155,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2203,7 +2196,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2544,22 +2537,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2577,7 +2570,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2618,7 +2610,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "" @@ -2627,7 +2618,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "" @@ -2834,53 +2824,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3430,179 +3420,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3629,7 +3611,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4196,7 +4178,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4248,7 +4229,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4627,7 +4607,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4685,85 +4664,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4782,44 +4686,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/it_IT/fusiondirectory.po b/locale/it_IT/fusiondirectory.po index ce8e60200b25e4b5fc0fe02ae0033d1281917146..03071902c3f51940ab57ba5d0306d45846af3dc8 100644 --- a/locale/it_IT/fusiondirectory.po +++ b/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2017\n" "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n" @@ -42,7 +42,7 @@ msgstr "" "browser. Questa impostazione può essere sovrascritto per utente ." #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatico" @@ -188,8 +188,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Avvertimento" @@ -211,7 +210,6 @@ msgid "Welcome" msgstr "Benvenuto" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Finito" @@ -254,10 +252,8 @@ msgstr "Verifica del modulo PHP e delle sue estensioni" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" -msgstr "" -"Configurazione di installazione PHP (<a href=\"?info\" " -"target=\"_blank\">mostra informazione)</a>)" +"information</a>)" +msgstr "Configurazione di installazione PHP ( 1 mostra informazione 1 )" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 msgid "Installation check" @@ -763,8 +759,8 @@ msgstr "Messaggio di benvenuto" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -825,7 +821,7 @@ msgstr "Seleziona tutto" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -927,7 +923,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Errore di configurazione" @@ -966,7 +962,6 @@ msgid "Permission" msgstr "Autorizzazioni" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Annulla tutto" @@ -978,7 +973,6 @@ msgstr "Impossibile incollare" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Nome utente" @@ -996,7 +990,7 @@ msgid "Object template, used to create several objects with similar values" msgstr "" "Modello di oggetti, utilizzato per creare diversi oggetti con valori simili" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nome del modello" @@ -1016,7 +1010,7 @@ msgstr "" "Errore fatale: impossibile inizializzare la classe '%s' - esegui '%s' per " "porre rimedio al problema" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1098,69 +1092,69 @@ msgstr "Configura" msgid "incomplete" msgstr "incompleto" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Prosegui comunque" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Modifica malgrado l'avvertimento" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Sei sul punto di modificare la/le voce/voci %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sB" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "%sKiB" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "%sMiB" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "%sGiB" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "%sTiB" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "%sPiB" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "%sPiB" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "%sZiB" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "%sYiB" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1169,63 +1163,63 @@ msgstr "" "Il file '%s' non puó essere rimosso. Prova ad usare fusiondirectory-setup " "--check-directories per correggerne i privilegi di accesso." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "Impossibile scrivere il file di revisione !" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "Impossibile leggere il file di revisione!" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Avvertimento LDAP" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Impossibile trovare informazioni sugli schemi a partire dal server. Nessuna " "verifica degli schemi è stata effettuata !" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "Schema principale di FusionDirectory" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" "Schema utilizzato per memorizzare la configurazione di FusionDirectory" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" "Utilizzato per memorizzare le informazioni in modalità fiducia in utenti o " "gruppi." -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "Usato per memorizzare i modelli." -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "Usato per memorizzare le informazioni POSIX." -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "Manca la classe di oggetti necessaria \"%s\"!" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "Manca classe di oggetti optional \"%s\"!" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Classe(i) disponibile(i)" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." @@ -1233,13 +1227,13 @@ msgstr "" "Avete installato il plugin di gruppi misti, ma la configurazione dello " "schema non supporta questo." -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "Per usare gruppi misti l'objetClass \"posixGroup\" deve essere AUSILIARIO" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." @@ -1247,17 +1241,17 @@ msgstr "" "Il vostro schema é configurato per supportare gruppi misti, ma manca il " "plugin." -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "L'objectClass \"posixGroup\" deve essere STRUTTURALE" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Impossibile trovare il file '%s' - esegui '%s' per porre rimedio al problema" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Tutti gli oggetti in questa categoria" @@ -1296,7 +1290,7 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "Location \" %s\" non è stata trovata nel file di configurazione" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " @@ -1305,7 +1299,7 @@ msgstr "" "La funzionalità snapshot è attivata, ma la variabile \"%s\" richiesta non è " "impostata." -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " @@ -1314,11 +1308,11 @@ msgstr "" "La funzionalità snapshot è abilitata, ma manca il modulo di compressione " "richiesto. Si prega di installare \"%s\"." -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Tutte le categorie" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Identità personale" @@ -1594,19 +1588,16 @@ msgstr "Estensione PHP %s mancante !" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Annulla" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Applica" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Registra" @@ -2110,7 +2101,7 @@ msgstr "" "Errore durante l'importazione del dn: \"%s\", verifica il tuo file LDIF a " "partire dalla linea %s" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2154,13 +2145,13 @@ msgid "POSIX group %s" msgstr "Gruppo POSIX %s" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "Ruolo %s" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "Raggruppa %s" @@ -2171,7 +2162,7 @@ msgstr "Gruppo di utenti" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Nessuno" @@ -2207,7 +2198,7 @@ msgstr "Modifica" msgid "Remove" msgstr "Elimina" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " @@ -2216,44 +2207,44 @@ msgstr "" "Nessuna definizione di plugin trovato per inizializzare \"%s\", si prega di " "consultare il file di configurazione." -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "Passare da \"%s\" a \"%s\" non riuscito" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KiB" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MiB" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GiB" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TiB" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "secondi" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "minuti" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "ore" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "giorni" @@ -2327,17 +2318,17 @@ msgstr "" "Impossibile calcolare il dn: impossibile trovare le informazioni di " "objectType in questa classe scheda \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "C'é già un'altra entry con il medesimo dn: %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "La voce %s non esiste" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" @@ -2346,22 +2337,22 @@ msgstr "" "che possono essere state fatte da altri andranno perse se si salva questa " "voce !" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "Servizio \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "Tab \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "Campo \"%s\" sconosciuto" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2371,7 +2362,7 @@ msgstr "%s (necessario)" msgid "Object base" msgstr "Base dell'oggetto" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2741,22 +2732,22 @@ msgstr "Benvenuto %s!" msgid "References" msgstr "Riferimenti" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "Gruppi e ruoli" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "Modifica gruppi e ruoli degli utenti" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "Gruppi di appartenenza" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "Ruoli di appartenenza" @@ -2774,7 +2765,6 @@ msgstr "Algoritmo da usare per la password" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Password" @@ -2815,7 +2805,6 @@ msgid "Personal information" msgstr "Informazioni personali" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Cognome" @@ -2824,7 +2813,6 @@ msgid "Last name of this user" msgstr "Cognome utente" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Nome" @@ -3033,34 +3021,34 @@ msgstr "Casella postale" msgid "Postal code" msgstr "CAP" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "Impossibile trovare %s nell'annuario LDAP" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "Non le é permesso cambiare la propria password" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "Devi attendere %d secondi prima di cambiare di nuovo la password" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "La password si trova nella cronologia delle vecchie password" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "La password non è stata cambiata dal valore esistente" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Devi specificare la tua 'Password attuale' per procedere." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." @@ -3068,22 +3056,22 @@ msgstr "" "Le password che hai inserito come \" Nuova password \" e \"Ripeti nuova " "password\" non corrispondono." -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Imposta la nuova password" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" "La password che hai definito come 'Nuova password' è troppo simile a quella " "attuale." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "La password utilizzata come nuova è troppo breve." -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "La password contiene caratteri Unicode eventualmente problematici!" @@ -3685,26 +3673,18 @@ msgid "The branch where users are stored." msgstr "Ramo nel quale gli utenti sono immagazzinati" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "RDN gruppi" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "Il ramo nel quale i gruppi saranno immagazzinati." - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "Ruolo ACL RDN" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "Ramo nel quale i ruoli ACL sono immagazzinati" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "Limitare i membri del ruolo" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." @@ -3712,22 +3692,22 @@ msgstr "" "Quando è abilitato solo gli utenti dello stesso ramo o membri di gruppi " "dello stesso ramo possono essere aggiunti ad un ruolo." -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "Campi indirizzi separati" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" "Esporre la via, la casella postale e i campi del codice postale anziché " "l'indirizzo postale." -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "Modello indirizzo postale" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." @@ -3735,15 +3715,15 @@ msgstr "" "Quando si utilizzano campi di indirizzi separati, è possibile utilizzare un " "modello per riempire il campo postalAddress." -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Debugging" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Mostra gli errori" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." @@ -3752,11 +3732,11 @@ msgstr "" "essere disabilitato nelle installazioni di produzione, a causa di possibili " "password che potrebbero passare in chiaro." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Durata massima di una richiesta LDAP" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." @@ -3764,11 +3744,11 @@ msgstr "" "Interrompi le azioni LDAP se non ci sono risposte nel tempo limite impartito" " in secondi." -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Inserisci le statistiche dell'annuario LDAP nel giornale di sistema" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." @@ -3776,23 +3756,23 @@ msgstr "" "Invia le statistiche di timing LDAP al syslog. Questo può aiutare a trovare " "i problemi di indicizzazione o i filtri di ricerca erronei." -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Livello per il debug" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "Mostra alcune informazioni su ogni caricamento della pagina." -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Altro" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Mostra il riepilogo negli elenchi" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3801,11 +3781,11 @@ msgstr "" "delle liste, visualizzando una breve sintesi del tipo e del numero di " "elementi nella lista." -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "Mostra tab ACL su tutti gli oggetti" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." @@ -3813,71 +3793,71 @@ msgstr "" "Per l'impostazione di diritti ACL molto specifici potreste aver bisogno di " "dare accesso ad un singolo oggetto." -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "Categorie di reparto disponibili" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "Categorie disponibili nel menu a discesa" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" "Utilizza questa funzione per nascondere alcune voci di menu a determinati " "gruppi di utenti" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "Gruppo o ruolo" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "PLugin per la lista nera" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "Lista nera del menu Plugin" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Connessioni" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "Hooks che sarà chiamato quando un'azione specificasi verifica" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "Tab" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "Il tab concernente questo hook" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Modalità " -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "Quando chiamare questo comando" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "Comando" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "Il comando che sarà chiamato" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "Mostra hook di uscita" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3906,8 +3886,8 @@ msgid "Object groups" msgstr "Gruppi di oggetti" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" -msgstr "OGroup RDN" +msgid "Groups RDN" +msgstr "RDN gruppi" #: plugins/config/class_mainPluginsConfig.inc:45 msgid "Branch in which object groups will be stored" @@ -4483,7 +4463,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "Applica questo ACL a tutti gli utenti LDAP" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Membri" @@ -4535,7 +4514,6 @@ msgid "Reset category ACL" msgstr "Resetta la categoria di ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Elenco delle categorie di ACL disponibili" @@ -4963,7 +4941,6 @@ msgstr "" " per FusionDirectory recuperare i tuoi dati." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Quindi - se sei sicuro - premi 'Rimuovi' per continuare oppure 'Annulla' per" @@ -5029,96 +5006,10 @@ msgstr "" msgid "Read only" msgstr "Solo lettura" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" -"Questo puo' essere utilizzato da diversi gruppi. Si prega di controllare due" -" volte se si vuole veramente fare questo in quanto non vi è alcun modo per " -"FusionDirectory per ottenere di nuovo i vostri dati." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Guida per il copia & incolla" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Alcuni valori devono essere univoci nella directory completa, mentre alcune " -"combinazioni non hanno senso. FusionDirectory mostra i valori " -"corrispondenti. Mantieni i valori qui sotto per soddisfare i criteri di " -"sicurezza." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Ricorda che certe propietà , come fare una 'copia instantanea', non saranno " -"copiate!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"Oppure se copi o tagli una voce con FusionDirectory e poi ne cancelli " -"l'origine, potrai incorrere in errori tentando di incollarla di nuovo!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Operazione eseguita" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "Crea un nuovo oggetto usando i modelli" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "ACL attribuita alla voce attuale" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nuova ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "ACL Tipo" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Seleziona un tipo di ACL" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Opzioni supplementari per il filtro" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Utilizza il membro da" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Membri disponibli" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Elenca i destinatari possibili per i messaggi" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Elenca i destinatari del messaggio" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL per questo oggetto" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Ruoli disponibili" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "Il team di FusionDirectory" @@ -5139,46 +5030,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Questo oggetto non ha relazioni con altri oggetti." -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Impostazioni dell'utente" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Rimuovi la password" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Imposta la nuova password" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Foto personale" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Foto personale" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Elimina foto" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "Non hai il permesso di cambiare la tua password in questo momento." - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "L'algoritmo della tua password non puó essere cambiato !" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Hai cambiato con successo la tua password. Ricorda di modificare tutti i " -"programmmi configurati per usarla." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/lv/fusiondirectory.po b/locale/lv/fusiondirectory.po index 75f73c635a7eb73ff08c4e45408185f1e56ad2fa..b7a31a3db4e81d74b18e7dca6c24ec9e13425d38 100644 --- a/locale/lv/fusiondirectory.po +++ b/locale/lv/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "BrÄ«dinÄjums" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "Atļauja" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -910,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1952,7 +1945,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1994,13 +1987,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2011,7 +2004,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2047,51 +2040,51 @@ msgstr "Labot" msgid "Remove" msgstr "Noņemt" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2163,38 +2156,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2204,7 +2197,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2545,22 +2538,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2578,7 +2571,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2619,7 +2611,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "UzvÄrds" @@ -2628,7 +2619,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "VÄrds" @@ -2835,53 +2825,53 @@ msgstr "" msgid "Postal code" msgstr "Pasta indekss" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3431,179 +3421,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3630,7 +3612,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4197,7 +4179,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Biedri" @@ -4249,7 +4230,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4628,7 +4608,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Ja esat pÄrliecinÄts, spiediet \"izdzÄ“st\", lai turpinÄtu, vai \"Atcelt\", " @@ -4688,85 +4667,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4785,44 +4689,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/nb/fusiondirectory.po b/locale/nb/fusiondirectory.po index 47a6ba73497bc8b4c60b7f44e99176070fa72b07..6880f8dbf3b103b3e74d341d071db1859de0bd32 100644 --- a/locale/nb/fusiondirectory.po +++ b/locale/nb/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Norwegian BokmÃ¥l (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -910,7 +906,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1952,7 +1945,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1994,13 +1987,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2011,7 +2004,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2047,51 +2040,51 @@ msgstr "Endre" msgid "Remove" msgstr "Fjern" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2163,38 +2156,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2204,7 +2197,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2545,22 +2538,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2578,7 +2571,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2619,7 +2611,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "" @@ -2628,7 +2619,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "" @@ -2835,53 +2825,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3431,179 +3421,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3630,7 +3612,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4197,7 +4179,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4249,7 +4230,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4628,7 +4608,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4686,85 +4665,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4783,44 +4687,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/nl/fusiondirectory.po b/locale/nl/fusiondirectory.po index 7fa9f55c53c48b41421dd7396acbb6e50bbd7d06..c875a5c8879feec1e1062fdded88ae6da90700a0 100644 --- a/locale/nl/fusiondirectory.po +++ b/locale/nl/fusiondirectory.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" +"Last-Translator: Selina Oudermans <selina.oudermans@digipolis.be>, 2017\n" "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatisch" @@ -177,8 +177,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Waarschuwing" @@ -200,7 +199,6 @@ msgid "Welcome" msgstr "Welkom" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Opslaan" @@ -242,7 +240,7 @@ msgstr "PHP module en extensie verificaties" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -734,8 +732,8 @@ msgstr "Het welkomstbericht" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -796,7 +794,7 @@ msgstr "Selecteer alles" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -896,7 +894,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Configuratie fout" @@ -934,7 +932,6 @@ msgid "Permission" msgstr "Rechten" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Annuleer alles" @@ -946,7 +943,6 @@ msgstr "Kan niet plakken" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Inlognaam" @@ -963,7 +959,7 @@ msgstr "Sjabloon" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Sjabloon naam" @@ -983,7 +979,7 @@ msgstr "" "Fatale error: kan class '%s' niet instantiëren - probeer '%s' te draaien om " "dit op te lossen" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1061,69 +1057,69 @@ msgstr "Instellen" msgid "incomplete" msgstr "onvolledig" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Toch doorgaan" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Alsnog bewerken" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Je staat op het punt de LDAP inzending/inzendingen te wijzigen %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sB" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "%sKiB" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "%sMiB" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "%sGiB" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "%sTiB" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "%sPiB" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "%sEiB" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "%sZiB" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "%sYiB" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1132,87 +1128,87 @@ msgstr "" "Bestand '%s' kon niet verwijderd worden. Probeer fusiondirectory-setup " "--check-directories om de rechten correct te plaatsen." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "Kan niet wegschrijven naar revisie bestand!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "LDAP waarschuwing" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Kan geen schema informatie krijgen van de server. Geen schema verificatie " "mogelijk!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Class(es) beschikbaar" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Kan bestand '%s' niet vinden - gebruik aub '%s' om dit op te lossen" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Alle objecten in deze categorie" @@ -1247,25 +1243,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Alle categoriën" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Mijn account" @@ -1538,19 +1534,16 @@ msgstr "%s PHP extensie ontbreekt!" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Annuleren" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Toepassen" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Opslaan" @@ -2035,7 +2028,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2077,13 +2070,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2094,7 +2087,7 @@ msgstr "Gebruikersgroep" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Geen" @@ -2130,51 +2123,51 @@ msgstr "Bewerken" msgid "Remove" msgstr "Verwijderen" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KiB" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MiB" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GiB" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TiB" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "seconden" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "minuten" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "uren" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "dagen" @@ -2246,38 +2239,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2287,7 +2280,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2639,22 +2632,22 @@ msgstr "Welkom %s!" msgid "References" msgstr "Referenties" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2672,7 +2665,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Wachtwoord" @@ -2713,7 +2705,6 @@ msgid "Personal information" msgstr "Persoonlijke informatie" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Achternaam" @@ -2722,7 +2713,6 @@ msgid "Last name of this user" msgstr "Achternaam van deze gebruiker" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Voornaam" @@ -2929,54 +2919,54 @@ msgstr "" msgid "Postal code" msgstr "Postcode" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "U moet uw huidige wachtwoord opgeven om door te kunnen gaan." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nieuw wachtwoord" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" "Het huidige wachtwoord en het nieuwe wachtwoord lijken te veel op elkaar." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "Het paswoord bevat mogelijke probleemgevende Unicode karakters!" @@ -3526,179 +3516,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Debugging" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Fouten weergeven" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Maximum LDAP query tijd" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Log LDAP statistieken" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Debug level" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Terminal Service diverse" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Toon overzicht in lijsten" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Inhakers" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Modus" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "Commando" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3725,7 +3707,7 @@ msgid "Object groups" msgstr "Objectgroepen" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4292,7 +4274,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Groepsleden" @@ -4344,7 +4325,6 @@ msgid "Reset category ACL" msgstr "Reset ACL categorie" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Toon beschikbare ACL categoriëen" @@ -4753,7 +4733,6 @@ msgstr "" "mogelijkheid voor FusionDirectory is om uw data terug te krijgen." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Indien u zeker bent drukt u dan 'Verwijderen' om door te gaan of 'Annuleren'" @@ -4813,93 +4792,10 @@ msgstr "" msgid "Read only" msgstr "Read only" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Kopieer en plak wizard" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Sommige waarden moeten uniek zijn in de volledige directory terwijl sommige " -"combinaties geen zin hebben. FusionDirectory toont de relevante attributen. " -"Behoud aub de waarden hieronder om de policies te vervullen." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Onthoud dat sommige eigenschappen zoals snaphots zijn en niet kunnen " -"gekopieerd worden!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"Of als je een kopie of knip doet van een inzending in FusionDirectory en de " -"bron van het object verwijderd kan je errors krijgen tijdens het plakken van" -" het object!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Bewerking afgerond" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "Een nieuw object aanmaken aan de hand van een template" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "ACL toegekend voor huidige inzending" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nieuwe ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "ACL type" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Selecteer een ACL type" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Extra filter opties" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Gebruik leden van" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Beschikbare leden" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Toon bericht mogelijke doelen" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Toon bericht ontvangers" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL voor dit object" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Beschikbare rollen" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "Het FusionDirectory team" @@ -4918,46 +4814,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Dit object heeft geen relatie met andere objecten." -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Gebruikersinstellingen" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Wachtwoord wissen" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Nieuw wachtwoord instellen" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Persoonlijk plaatje" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Persoonlijk plaatje" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Plaatje verwijderen" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "Je hebt momenteel geen rechten om je paswoord te wijzigen" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "Je paswoord hash methode zal niet worden aangepast!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"U heeft succesvol uw wachtwoord veranderd. Denkt u eraan dat u alle " -"programma's die dit wachtwoord gebruiken ook aanpast!" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/pl/fusiondirectory.po b/locale/pl/fusiondirectory.po index e91bdaae455a95fd7e629cdd94383006094d590b..a16a7bf6cbd354f833ddcde1f2699565a5d41056 100644 --- a/locale/pl/fusiondirectory.po +++ b/locale/pl/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: setup/class_setupStepLanguage.inc:30 #: plugins/personal/generic/class_user.inc:387 @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatycznie" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Ostrzeżenie" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "Witaj" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "ZakoÅ„cz" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "Wiadomość powitalna" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "Wybierz wszystko" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "BÅ‚Ä…d konfiguracji" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "Uprawnienie" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Anuluj wszystko" @@ -893,7 +890,6 @@ msgstr "Nie można wkleić" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Login" @@ -910,7 +906,7 @@ msgstr "Szablon" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nazwa Szablonu" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -999,154 +995,154 @@ msgstr "Konfiguruj" msgid "incomplete" msgstr "niepeÅ‚ne" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Kontynuuj mimo wszystko" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Edytuj mimo wszystko" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Ostrzeżenie LDAP" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Wszystkie obiekty w tej kategorii" @@ -1180,25 +1176,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Wszystkie kategorie" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Moje konto " @@ -1471,19 +1467,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Anuluj" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Zastosuj" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Zapisz" @@ -1954,7 +1947,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1996,13 +1989,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2013,7 +2006,7 @@ msgstr "Grupa użytkownika" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2049,51 +2042,51 @@ msgstr "Edytuj" msgid "Remove" msgstr "UsuÅ„" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "godzin" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "dni" @@ -2165,38 +2158,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2206,7 +2199,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2549,22 +2542,22 @@ msgstr "Witaj %s!" msgid "References" msgstr "ZależnoÅ›ci" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2582,7 +2575,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "HasÅ‚o" @@ -2623,7 +2615,6 @@ msgid "Personal information" msgstr "Informacje osobiste" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Nazwisko" @@ -2632,7 +2623,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "ImiÄ™" @@ -2839,53 +2829,53 @@ msgstr "" msgid "Postal code" msgstr "Kod pocztowy" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "ProszÄ™ podać obecne hasÅ‚o aby kontynuować." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nowe hasÅ‚o" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "HasÅ‚o podane jako nowe jest zbyt podobne do obecnego." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3435,179 +3425,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Różne" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Zaczepy" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Tryb" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3634,7 +3616,7 @@ msgid "Object groups" msgstr "Grupy obiektów" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4201,7 +4183,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "CzÅ‚onkowie" @@ -4253,7 +4234,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Lista dostÄ™pnych kategorii ACL" @@ -4638,7 +4618,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "JeÅ›li jesteÅ› pewien - naciÅ›nij 'UsuÅ„' aby kontynuować lub 'Anuluj' aby " @@ -4698,86 +4677,10 @@ msgstr "" msgid "Read only" msgstr "Tylko do odczytu" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"PamiÄ™taj, że niektóre wÅ‚aÅ›ciwoÅ›ci jak snapshoty nie zostanÄ… skopiowane!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Operacja zakoÅ„czona" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nowy ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "typ ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Wybierz typ ACL" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Użyj czÅ‚onków z" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "DostÄ™pni czÅ‚onkowie" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "WyÅ›wietl możliwe cele wiadomoÅ›ci" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "WyÅ›wietl odbiorców wiadomoÅ›ci" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4796,46 +4699,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Ten obiekt nie posiada powiÄ…zaÅ„ z innymi obiektami." -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Ustawienia użytkownika" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Wyczyść hasÅ‚o" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Ustaw nowe hasÅ‚o" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Osobiste zdjÄ™cie" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "ZdjÄ™cie użytkownika" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "UsuÅ„ obrazek" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"PomyÅ›lnie zmieniono hasÅ‚o. ProszÄ™ pamiÄ™tać aby zmienić również ustawienia w " -"programach skonfigurowanych do używania tego hasÅ‚a." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/pt/fusiondirectory.po b/locale/pt/fusiondirectory.po index ef505a3ce6cec1e92c0c37a88fe90e6d03e530ee..fa0abaea7df85f3fe22948f1c4afa2478337d29e 100644 --- a/locale/pt/fusiondirectory.po +++ b/locale/pt/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Atenção" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Finalizar" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Erro de configuração" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "ImpossÃvel colar" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Login" @@ -910,7 +906,7 @@ msgstr "Modelo" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Nome modelo" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "Configurar" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Editar mesmo assim" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Todos os objetos nessa categoria" @@ -1180,25 +1176,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Todas as categorias" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Minha conta" @@ -1471,19 +1467,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Cancelar" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Aplicar" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Salvar" @@ -1955,7 +1948,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1997,13 +1990,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "Grupo do usuário" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2050,51 +2043,51 @@ msgstr "Editar" msgid "Remove" msgstr "Remover" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2166,38 +2159,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2207,7 +2200,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2550,22 +2543,22 @@ msgstr "Bem vindo %s!" msgid "References" msgstr "Referências" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2583,7 +2576,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Senha" @@ -2624,7 +2616,6 @@ msgid "Personal information" msgstr "Informação pessoal" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Último nome" @@ -2633,7 +2624,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Primeiro nome" @@ -2840,53 +2830,53 @@ msgstr "" msgid "Postal code" msgstr "CEP" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Você precisa especificar sua senha atual para continuar." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nova senha" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "A senha utilizada como nova e atual são muito similares." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3436,179 +3426,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3635,7 +3617,7 @@ msgid "Object groups" msgstr "Grupos de objeto" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4202,7 +4184,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Membros" @@ -4254,7 +4235,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4633,7 +4613,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Então, se você tem certeza, pressione 'Deletar' para continuar ou 'Cancelar'" @@ -4693,85 +4672,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Operação finalizada" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4790,46 +4694,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Configurações do usuário" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Senha limpa" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Definir nova senha" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Foto pessoal" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Foto do usuário" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Remover foto" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Sua senha foi alterada com sucesso. Lembre-se de alterar todos os programas " -"que a usem." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/pt_BR/fusiondirectory.po b/locale/pt_BR/fusiondirectory.po index ebda49539f221958109ad3b8f0f69846ba4c2b41..a91e25eb5b473d001b8aa407c2c662d8ed1333cc 100644 --- a/locale/pt_BR/fusiondirectory.po +++ b/locale/pt_BR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automático" @@ -177,8 +177,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Aviso" @@ -200,7 +199,6 @@ msgid "Welcome" msgstr "Bem-vindo" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Fim" @@ -237,7 +235,7 @@ msgstr "Módulo de PHP e checagem de extensões" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -711,8 +709,8 @@ msgstr "A mensagem de \"bem vindo\"" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -773,7 +771,7 @@ msgstr "Selecionar tudo" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -873,7 +871,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Erro de configuração" @@ -910,7 +908,6 @@ msgid "Permission" msgstr "Permissão" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Cancelar tudo" @@ -922,7 +919,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Login" @@ -939,7 +935,7 @@ msgstr "Modelo" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -955,7 +951,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1026,69 +1022,69 @@ msgstr "Configurar" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1097,87 +1093,87 @@ msgstr "" "Arquivo '%s' não pode ser deletado. Tente fusiondirectory-setup --check-" "directories para ajustas as permissões." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Não foi possÃvel localizar o arquivo '%s' - execute '%s' para solucionar o " "problema" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1211,25 +1207,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Todas as categorias" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Minha conta" @@ -1502,19 +1498,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Cancelar" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Aplicar" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Salvar" @@ -1985,7 +1978,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2027,13 +2020,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2044,7 +2037,7 @@ msgstr "Grupo de usuário" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Nenhum" @@ -2080,51 +2073,51 @@ msgstr "Editar" msgid "Remove" msgstr "Remover" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "segundos" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "dias" @@ -2196,38 +2189,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "Já há uma entrada com o mesmo dn: %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "A entrada %s não é existente" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2237,7 +2230,7 @@ msgstr "%s (required)" msgid "Object base" msgstr "Base de objeto" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2590,22 +2583,22 @@ msgstr "Bem-vindo %s!" msgid "References" msgstr "Referências" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2623,7 +2616,6 @@ msgstr "Método de hash para usar na senha" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Senha" @@ -2664,7 +2656,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Sobrenome" @@ -2673,7 +2664,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Nome" @@ -2880,53 +2870,53 @@ msgstr "" msgid "Postal code" msgstr "Código postal" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Você precisa especificar sua atual senha para prosseguir." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nova senha" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "A nova senha é muito similar à senha atual." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "A senha contém caracteres Unicode problemáticos." @@ -3490,179 +3480,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Diversos" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Ganchos" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Modo" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3689,7 +3671,7 @@ msgid "Object groups" msgstr "Grupo de objetos" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4256,7 +4238,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Membros" @@ -4308,7 +4289,6 @@ msgid "Reset category ACL" msgstr "Reiniciar categoria de ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Lista de categorias de ACL" @@ -4703,7 +4683,6 @@ msgstr "" "FusionDirectory não poderá desfazê-la." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Se você tem certeza, pressione 'Delete' para continuar ou 'Cancel' para " @@ -4763,93 +4742,10 @@ msgstr "" msgid "Read only" msgstr "Somente leitura" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Assistente de copiar e colar " - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Alguns valores precisam ser únicos no diretório completo caso algumas " -"combinações não façam sentido. FusionDirectory mostra os atributos " -"relevantes. Favor manter os valores abaixo para satisfazer os critérios." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Lembre-se que algumas propriedades como a de snapshots tirados não serão " -"copiadas!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"Ou se você copiar ou recortar um registro com FusionDirectory e deletar o " -"objeto fonte, você provavelmente encontrará erros enquanto cola este objeto " -"novamente!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "A operação foi concluÃda com êxito" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "ACL atribuÃda para entrada atual" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Nova ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Tipo de ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Selecione um tipo de ACL" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Opções adicionais de filtros" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Usar membros de" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Membros disponÃveis" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Lista possÃveis alvos da mensagem" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Lista de destinatários da mensagem" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL para este objeto" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Papéis disponÃveis" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "Equipe do FusionDirectory" @@ -4868,44 +4764,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Imagem de usuário" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Remover imagem" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/ru/fusiondirectory.po b/locale/ru/fusiondirectory.po index 481a33fab5a964cdea6678360f58df18d54d3afc..badc795296148b73eef70d73715095e9912f8046 100644 --- a/locale/ru/fusiondirectory.po +++ b/locale/ru/fusiondirectory.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" +"Last-Translator: Alexey Matveev <Tippet@yandex.ru>, 2017\n" "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +42,7 @@ msgstr "" "наÑтройка может быть переопределена Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ пользователÑ." #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "ÐвтоматичеÑки" @@ -180,8 +180,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Предупреждение" @@ -203,7 +202,6 @@ msgid "Welcome" msgstr "Добро пожаловать" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Готово" @@ -245,7 +243,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -718,8 +716,8 @@ msgstr "Сообщение приветÑтвиÑ" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -780,7 +778,7 @@ msgstr "Выбрать вÑе" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -880,7 +878,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Ошибка конфигурации" @@ -919,7 +917,6 @@ msgid "Permission" msgstr "Права" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Отменить вÑе" @@ -931,7 +928,6 @@ msgstr "Ðе могу вÑтавить" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" @@ -948,7 +944,7 @@ msgstr "Шаблон" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Ðазвание шаблона" @@ -966,7 +962,7 @@ msgstr "" "КритичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°: не могу Ñоздать ÑкземплÑÑ€ клаÑÑа '%s' - попробуйте " "запуÑтить '%s' чтобы иÑправить Ñто" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1045,69 +1041,69 @@ msgstr "ÐаÑтроить" msgid "incomplete" msgstr "не полный" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Продолжить в любом Ñлучае" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Редактировать в любом Ñлучае" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Ð’Ñ‹ ÑобираетеÑÑŒ редактировать LDAP запиÑÑŒ/запиÑи %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "%sB" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "%sKiB" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "%sMiB" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "%sGiB" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "%sTiB" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "%sPiB" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "%sEiB" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "%sZiB" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "%sYiB" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ÐБВГДЕÐЖЗИЙКЛМÐОПРСТУФХЦЧШЩЫÐЮЯ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1116,88 +1112,88 @@ msgstr "" "Файл '%s' не может быть удален. Попробуйте fusiondirectory-setup --check-" "directories чтобы иÑправить права." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "Ðе могу запиÑать файл проверки!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Предупреждение LDAP" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Ðе могу получить информацию о Ñхемах Ñ Ñервера. Проверить Ñхемы невозможно!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "ДоÑтупные клаÑÑ(Ñ‹)" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Ðе могу обнаружить файл '%s' - пожалуйÑта запуÑтите '%s', чтобы иÑправить " "Ñто." -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Ð’Ñе объекты в Ñтой категории" @@ -1233,25 +1229,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Ð’Ñе категории" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "ÐœÐ¾Ñ ÑƒÑ‡ÐµÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ" @@ -1524,19 +1520,16 @@ msgstr "Пропущено %s PHP раÑширение!" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Отмена" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Применить" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Сохранить" @@ -2020,7 +2013,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2062,13 +2055,13 @@ msgid "POSIX group %s" msgstr "POSIX группа %s" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "Роль %s" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "Группа %s" @@ -2079,7 +2072,7 @@ msgstr "Группа пользователÑ" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2115,51 +2108,51 @@ msgstr "Изменить" msgid "Remove" msgstr "Удалить" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "Ðе удалоÑÑŒ перемеÑтить из \"%s\" в \"%s\"" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "B" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "KiB" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "MiB" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "GiB" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "TiB" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "Ñекунды" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "минуты" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "чаÑÑ‹" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "дни" @@ -2231,38 +2224,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "Уже еÑÑ‚ÑŒ запиÑÑŒ Ñ Ñ‚Ð°ÐºÐ¸Ð¼ dn: %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "ЗапиÑÑŒ %s не ÑущеÑтвует" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "Вкладка \"%s\"" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "ÐеизвеÑтное поле \"%s\"" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2272,7 +2265,7 @@ msgstr "%s (обÑзательный)" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2628,22 +2621,22 @@ msgstr "Добро пожаловать %s!" msgid "References" msgstr "СÑылки" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "Группы и роли" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "Принадлежит группам" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "Принадлежит ролÑм" @@ -2661,7 +2654,6 @@ msgstr "ПрименÑемый метод Ð´Ð»Ñ Ñ…Ñша паролÑ" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Пароль" @@ -2702,7 +2694,6 @@ msgid "Personal information" msgstr "Ð›Ð¸Ñ‡Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "ФамилиÑ" @@ -2711,7 +2702,6 @@ msgid "Last name of this user" msgstr "Ð¤Ð°Ð¼Ð¸Ð»Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "ИмÑ" @@ -2918,53 +2908,53 @@ msgstr "" msgid "Postal code" msgstr "Почтовый индекÑ" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "Вам не разрешено изменÑÑ‚ÑŒ Ñвой пароль" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "Ð’Ñ‹ должны подождать %d Ñекунд перед повторным изменением паролÑ" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "Пароль приÑутÑтвует в иÑтории Ñтарых паролей" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Ð”Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ ÑƒÐºÐ°Ð¶Ð¸Ñ‚Ðµ Ñвой текущий пароль." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Ðовый пароль" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "Ðовый и текущий пароли Ñлишком похожи." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "Пароль Ñодержит Ñимволы Unicode, которые могут проблемы!" @@ -3541,59 +3531,51 @@ msgid "The branch where users are stored." msgstr "Ветка где пользователели хранÑÑ‚ÑÑ." #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "RDN групп" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "Ветка в которой хранÑÑ‚ÑÑ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹." - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "RDN Ð´Ð»Ñ ACL ролей" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "Ветка в которой хранÑÑ‚ÑÑ ACL ролей." -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Отладка" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Отображение ошибок" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." @@ -3601,22 +3583,22 @@ msgstr "" "Показывать PHP ошибки в верхней чаÑти Ñкрана. Следует отключить при рабочем " "иÑпользовании, потому что там могут быть отображены пароли." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "МакÑимальное Ð²Ñ€ÐµÐ¼Ñ LDAP запроÑа" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" "ОÑтановить работу Ñ LDAP еÑли нет ответа за определенное количеÑтво Ñекунд." -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Лог ÑтатиÑтики обращений к LDAP" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." @@ -3624,23 +3606,23 @@ msgstr "" "ОтÑлеживать продолжительноÑÑ‚ÑŒ обращений к LDAP в syslog. Ðто может помочь " "найти проблемы в индекÑировании и плохих фильтров поиÑка." -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Уровень отладки" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "Отображать Ñледующую информацию при каждой загрузке Ñтранице." -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Разное" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Показать краткую информацию о ÑпиÑках" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3648,79 +3630,79 @@ msgstr "" "ОпределÑет, будет ли внизу каждого ÑпиÑка отображена Ñтрока ÑоÑтоÑÐ½Ð¸Ñ Ñ " "краткой информацией о типе и количеÑтве Ñлементов ÑпиÑка." -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "Показать вкладку ACL Ð´Ð»Ñ Ð²Ñех объектов." -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "ДоÑтупные категории подразделений" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "ДоÑтупные категории подразделений в раÑкрывающемÑÑ ÑпиÑке" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Хуки" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "Режим" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "Когда вызывать Ñту команду" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "Команда, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð±ÑƒÐ´ÐµÑ‚ вызвана" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3747,8 +3729,8 @@ msgid "Object groups" msgstr "ОбъединениÑ" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" -msgstr "" +msgid "Groups RDN" +msgstr "RDN групп" #: plugins/config/class_mainPluginsConfig.inc:45 msgid "Branch in which object groups will be stored" @@ -4319,7 +4301,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "Применить Ñтот ACL Ð´Ð»Ñ Ð²Ñех пользователй LDAP" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Члены" @@ -4371,7 +4352,6 @@ msgid "Reset category ACL" msgstr "СброÑить категорию ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "СпиÑок доÑтупных ACL категорий" @@ -4784,7 +4764,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Итак - еÑли вы уверены - нажмите 'Удалить', чтобы продолжить или 'Отмена' " @@ -4844,89 +4823,10 @@ msgstr "" msgid "Read only" msgstr "Только Ð´Ð»Ñ Ñ‡Ñ‚ÐµÐ½Ð¸Ñ" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "МаÑтер копированиÑ" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Помните, что некоторые ÑвойÑтва, такие как Ñделанные Ñнапшоты, не будут " -"Ñкопированы" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"ЕÑли вы Ñкопируете или вырежете запиÑÑŒ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ FusionDirectory и удалите " -"иÑходный объект, вы можете получить ошибки при вÑтавке Ñтого объекта Ñнова!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "ÐžÐ¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð°" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "Создание нового объекта иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ ÑˆÐ°Ð±Ð»Ð¾Ð½Ñ‹" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "Ðазначенный ACL Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ запиÑи" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Ðовый ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Тип ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Выберите тип ACL" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Дополнительные опции фильтра" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "ИÑпользовать членов из" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "ДоÑтупные члены" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL Ð´Ð»Ñ Ñтого объекта" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "ДоÑтупные роли" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "Команда FusionDirectory" @@ -4945,46 +4845,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Данный объект не имеет ÑÑылок на другие объекты" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "ÐаÑтройки пользователÑ" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "УÑтановить новый пароль" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Изображение" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Ð¤Ð¾Ñ‚Ð¾Ð³Ñ€Ð°Ñ„Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Удалить изображение" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "У Ð²Ð°Ñ Ð½ÐµÐ´Ð¾Ñтаточно прав, чтобы изменить пароль." - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "Парольный метод не будет изменен!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Ð’Ñ‹ уÑпешно Ñменили Ñвой пароль. Ðе забудьте изменить нужные наÑтройки " -"иÑпользующих его программ." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/ru@petr1708/fusiondirectory.po b/locale/ru@petr1708/fusiondirectory.po index 14418cf91832b721d59cfcdc27f9b23719eb6c8c..c7c656e0edd1b783fbfaaf12458c8e5f7eecfbbe 100644 --- a/locale/ru@petr1708/fusiondirectory.po +++ b/locale/ru@petr1708/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -174,8 +174,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "" @@ -197,7 +196,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -234,7 +232,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -681,8 +679,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -743,7 +741,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -843,7 +841,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -880,7 +878,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -892,7 +889,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -909,7 +905,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -925,7 +921,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -996,154 +992,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1177,25 +1173,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1468,19 +1464,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1951,7 +1944,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1993,13 +1986,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2010,7 +2003,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2046,51 +2039,51 @@ msgstr "" msgid "Remove" msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2162,38 +2155,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2203,7 +2196,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2544,22 +2537,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2577,7 +2570,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2618,7 +2610,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "" @@ -2627,7 +2618,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "" @@ -2834,53 +2824,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3430,179 +3420,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3629,7 +3611,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4196,7 +4178,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4248,7 +4229,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4627,7 +4607,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4685,85 +4664,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4782,44 +4686,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/sv/fusiondirectory.po b/locale/sv/fusiondirectory.po index f871b79adfa572a7cf2ce9b5b4807993e68ee343..e2d3f76cc7e77d537c33588a7e8b133f665b3b32 100644 --- a/locale/sv/fusiondirectory.po +++ b/locale/sv/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Automatiskt" @@ -177,8 +177,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Varning" @@ -200,7 +199,6 @@ msgid "Welcome" msgstr "Välkommen" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Slutför" @@ -242,7 +240,7 @@ msgstr "PHP modul- och tilläggskontroll" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -729,8 +727,8 @@ msgstr "Välkomstmeddelandet" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -791,7 +789,7 @@ msgstr "Välj alla" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -891,7 +889,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Konfigurationsfel" @@ -929,7 +927,6 @@ msgid "Permission" msgstr "Rättighet" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Avbryt allt" @@ -941,7 +938,6 @@ msgstr "Kan inte klistra in" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Användarnamn" @@ -958,7 +954,7 @@ msgstr "Mall" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Mall-namn" @@ -978,7 +974,7 @@ msgstr "" "Allvarligt fel: kan inte instansiera klassen '%s' - försök köra '%s' för att" " Ã¥tgärda detta" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1055,69 +1051,69 @@ msgstr "Konfigurera" msgid "incomplete" msgstr "ofullständig" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Fortsätt ändÃ¥" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Redigera ändÃ¥" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Du kommer att redigera LDAP-posten/posterna %s" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZÅÄÖ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" @@ -1126,88 +1122,88 @@ msgstr "" "Filen '%s' kunde inte tas bort. Försök med fusiondirectory-setup --check-" "directories för att Ã¥tgärda rättighetsproblem." -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "Kan inte skriva till revisionsfil!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "LDAP-varning" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Kan inte hämta schemainformation frÃ¥n servern. Ingen schemakontroll är " "möjlig!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Klass(er) tillgänglig(a)" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Kan inte lokalisera filen '%s' - vänligen kör '%s' för att Ã¥tgärda detta" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Alla objekt i den här kategorin" @@ -1241,25 +1237,25 @@ msgstr "Kan inte koppla mot LDAP. Vänligen kontakta systemadministratören" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Alla kategorier" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Mitt konto" @@ -1532,19 +1528,16 @@ msgstr "Saknar PHP-tillägget %s !" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Avbryt" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "Spara" @@ -2029,7 +2022,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2071,13 +2064,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2088,7 +2081,7 @@ msgstr "Användarens grupp" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "Ingen" @@ -2124,51 +2117,51 @@ msgstr "Redigera" msgid "Remove" msgstr "Ta bort" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "sekunder" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2240,38 +2233,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "Det finns redan en post med samma dn : %s" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "Posten %s finns inte" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2281,7 +2274,7 @@ msgstr "%s (krävs)" msgid "Object base" msgstr "Objekt-bas" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2634,22 +2627,22 @@ msgstr "Välkommen %s!" msgid "References" msgstr "Referenser" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2667,7 +2660,6 @@ msgstr "Lösenords-hash att använda" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Lösenord" @@ -2708,7 +2700,6 @@ msgid "Personal information" msgstr "Personlig information" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Efternamn" @@ -2717,7 +2708,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Förnamn" @@ -2924,53 +2914,53 @@ msgstr "" msgid "Postal code" msgstr "Postnummer" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Du behöver ange ditt nuvarande lösenord för att fortsätta." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Nytt lösenord" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "Det nya lösenordet och det nuvarande är för lika varandra." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "Lösenordet innehÃ¥ller möjligtvis problematiska Unicode-tecken!" @@ -3545,59 +3535,51 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "Gruppers RDN" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "Grenen där grupper lagras." - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Debugging" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "Visa fel" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." @@ -3605,11 +3587,11 @@ msgstr "" "Visa PHP-fel i övre delen av skärmen. Detta bör avaktiveras i " "produktionsmiljöer, för det kan vara lösenord i felkoden." -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Maximal tid för LDAP-frÃ¥gor" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." @@ -3617,11 +3599,11 @@ msgstr "" "Stoppa LDAP-förfrÃ¥gningar om det inte kommer nÃ¥got svar inom den " "specificerade mängden sekunder." -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Logga LDAP-statistik" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." @@ -3629,23 +3611,23 @@ msgstr "" "SpÃ¥ra LDAP-timingstatistik till syslog. Detta kan hjälpa till att hitta " "indexeringsproblem eller dÃ¥liga sökfilter." -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Debug-nivÃ¥" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "Visa viss information pÃ¥ varje sidladdning." -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "Diverse" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Visa sammanfattning i listningar" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." @@ -3653,79 +3635,79 @@ msgstr "" "Avgör om ett statusfält ska visas i botten pÃ¥ listor, som visar en kort " "sammanfattning av typ och antal poster i listan." -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "Hooks" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "Hooks som anropas när specifika händelser inträffar" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "Fliken som denna hook härrör till" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "När detta kommando ska anropas" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "Kommando som ska anropas" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3752,8 +3734,8 @@ msgid "Object groups" msgstr "Objektgrupper" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" -msgstr "OGrupp RDN" +msgid "Groups RDN" +msgstr "Gruppers RDN" #: plugins/config/class_mainPluginsConfig.inc:45 msgid "Branch in which object groups will be stored" @@ -4319,7 +4301,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Medlemmar" @@ -4371,7 +4352,6 @@ msgid "Reset category ACL" msgstr "Ã…terställ kategori-ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Lista tillgängliga ACL-kategorier" @@ -4778,7 +4758,6 @@ msgstr "" "sätt för FusionDirectory att fÃ¥ tillbaka din information." #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "SÃ¥ - om du är säker - tryck 'Ta bort' för att fortsätta och 'Avbryt' för att" @@ -4838,92 +4817,10 @@ msgstr "" msgid "Read only" msgstr "Endast läsning" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Kopiera & klistra in-wizard" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" -"Vissa värden mÃ¥ste vara unika inom katalogtjänsten medan vissa kombinationer" -" inte är gÃ¥ngbara. FusionDirectory visar de relevanta attributen. Vänligen " -"behÃ¥ll värdena nedan för att uppfylla systemets policy." - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Kom ihÃ¥g att vissa egenskaper som tagna ögonblicksbilder inte kommer att " -"kopieras!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" -"Eller om du kopierar och klipper en post inom FusionDirectory och tar bort " -"källobjektet, kan du fÃ¥ fel när du klistrar in det här objektet igen!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Operation klar" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "Tilldelad ACL för nuvarande post" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "Ny ACL" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "ACL-typ" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Välj en acl-typ" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Ytterligare filter-alternativ" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Använd medlemmar frÃ¥n" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Tillgängliga medlemmar" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Lista mottagare" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL för detta objekt" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Tillgängliga roller" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "FusionDirectory-teamet" @@ -4942,46 +4839,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Detta objekt har ingen relation till andra objekt" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Användarinställningar" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Nollställ lösenord" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Ställ in nytt lösenord" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Personlig bild" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Användarbild" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Ta bort bild" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "Du har inte tillÃ¥telse att ändra lösenordet just nu" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "Din lösenordsmetod kommer inte att ändras!" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Du har ändrat ditt lösenord. Kom ihÃ¥g att ändra alla program som är " -"inställda pÃ¥ att använda det ocksÃ¥." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/ug/fusiondirectory.po b/locale/ug/fusiondirectory.po index 47cef1f4c5a8324bf80f11b110746a021191d230..5c9f0e11cc6c08fb3500c4bc793d17ec3cde378c 100644 --- a/locale/ug/fusiondirectory.po +++ b/locale/ug/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -174,8 +174,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "" @@ -197,7 +196,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "" @@ -234,7 +232,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -681,8 +679,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -743,7 +741,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -843,7 +841,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -880,7 +878,6 @@ msgid "Permission" msgstr "" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -892,7 +889,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "" @@ -909,7 +905,7 @@ msgstr "" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "" @@ -925,7 +921,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -996,154 +992,154 @@ msgstr "" msgid "incomplete" msgstr "" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1177,25 +1173,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "" @@ -1468,19 +1464,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "" @@ -1951,7 +1944,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1993,13 +1986,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2010,7 +2003,7 @@ msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2046,51 +2039,51 @@ msgstr "" msgid "Remove" msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2162,38 +2155,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2203,7 +2196,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2544,22 +2537,22 @@ msgstr "" msgid "References" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2577,7 +2570,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "" @@ -2618,7 +2610,6 @@ msgid "Personal information" msgstr "" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "" @@ -2627,7 +2618,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "" @@ -2834,53 +2824,53 @@ msgstr "" msgid "Postal code" msgstr "" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3430,179 +3420,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3629,7 +3611,7 @@ msgid "Object groups" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4196,7 +4178,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "" @@ -4248,7 +4229,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4627,7 +4607,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" @@ -4685,85 +4664,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4782,44 +4686,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/vi_VN/fusiondirectory.po b/locale/vi_VN/fusiondirectory.po index 3a136bc3caf88ea33eceb5bd089bed2dfec42525..9c3439f5a7ced3cfcb5d37e3aef6231848bd7cb0 100644 --- a/locale/vi_VN/fusiondirectory.po +++ b/locale/vi_VN/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "Tá»± Ä‘á»™ng" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "Cảnh báo" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "Chà o mừng" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "Kết thúc" @@ -237,7 +235,7 @@ msgstr "Kiểm tra các module và mở rá»™ng của PHP" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -711,8 +709,8 @@ msgstr "Tin nhắn chà o mừng" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -773,7 +771,7 @@ msgstr "Chá»n tất" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -873,7 +871,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "Lá»—i cấu hình" @@ -910,7 +908,6 @@ msgid "Permission" msgstr "Cho phép" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "Hủy bá» tất" @@ -922,7 +919,6 @@ msgstr "Không thể paste" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "Äăng nháºp" @@ -939,7 +935,7 @@ msgstr "Mẫu" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "Tên Mẫu" @@ -959,7 +955,7 @@ msgstr "" "Lá»—i nghiêm trá»ng: không thể tạo ra lá»›p '%s' - hãy thá» chạy '%s' để sá»a lá»—i " "nà y" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -1037,156 +1033,156 @@ msgstr "Cấu hình" msgid "incomplete" msgstr "chÆ°a hoà n thà nh" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "Cứ tiếp tục" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "Cứ hiệu chỉnh" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "Bạn sẽ hiệu chỉnh entry/các entry %s của LDAP" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "Không thể viết lên revision file!" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "Cảnh báo LDAP" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" "Không thể dùng thông tin lược đồ từ server. Không thể kiểm tra giản đồ!" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "Äã có lá»›p" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" "Không thể xác định vị trà file '%s'- xin hãy chạy '%s' để sá»a lá»—i nà y!" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "Tất cả các đối tượng trong hạng mục nà y" @@ -1220,25 +1216,25 @@ msgstr "Không thể nối kết vá»›i LDAP. Xin hãy liên lạc vá»›i vá»›i ad msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "Tất cả các mục" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "Tà i khoản của tôi" @@ -1511,19 +1507,16 @@ msgstr "PHP mở rá»™ng %s mất tÃch!" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "Hủy bá»" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "Ãp dụng" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "LÆ°u lại" @@ -2003,7 +1996,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -2045,13 +2038,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2062,7 +2055,7 @@ msgstr "Nhóm ngÆ°á»i dùng" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2098,51 +2091,51 @@ msgstr "Hiệu chỉnh" msgid "Remove" msgstr "Xóa bá»" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "" @@ -2214,38 +2207,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2255,7 +2248,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2600,22 +2593,22 @@ msgstr "Chà o mừng %s!" msgid "References" msgstr "Các tham chiếu" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2633,7 +2626,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "Máºt khẩu" @@ -2674,7 +2666,6 @@ msgid "Personal information" msgstr "Thông tin cá nhân" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "Há»" @@ -2683,7 +2674,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "Tên" @@ -2890,53 +2880,53 @@ msgstr "" msgid "Postal code" msgstr "Mã bÆ°u Ä‘iện" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "Bạn cần xác định máºt khẩu hiện tại để có thể tiếp tục." -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "Máºt khẩu má»›i" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "Máºt khẩu má»›i và máºt khẩu cÅ© quá giống nhau." -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3486,179 +3476,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "Sá»a lá»—i" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "Thá»i gian truy vấn LDAP tối Ä‘a" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "Äăng nháºp thống kê LDAP" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "Cấp Ä‘á»™ sá»a lá»—i" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "Hiển thị tóm tắt trên danh sách" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3685,7 +3667,7 @@ msgid "Object groups" msgstr "Tất cả các nhóm đối tượng" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4252,7 +4234,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "Các thà nh viên" @@ -4304,7 +4285,6 @@ msgid "Reset category ACL" msgstr "Xác láºp mục ACL" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "Danh sách tất cả các mục ACL hiện có" @@ -4696,7 +4676,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" "Vì thế nếu bạn chắc chắn hãy nhấn \"Xóa bá»\" để tiếp tục hoặc'Hủy bá»' để " @@ -4756,86 +4735,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "Copy & Paste wizard" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" -"Hãy nhá»› rằng má»™t số đặc tÃnh và dụ nhÆ° snapshot sẽ không được copy lại!" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "Thao tác hoà n thà nh" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "Giao ACL cho entry hiện tại" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "ACL má»›i" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "Dạng ACL" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "Chá»n má»™t dạng acl" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "Các lá»±a chá»n thêm cho bá»™ lá»c" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "Sá» dụng các thà nh viên từ" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "Những thà nh viên Ä‘ang có mặt" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "Liệt kê các mục tiêu có thể gá»i tin nhắn" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "Liệt kê ngÆ°á»i nháºn tin" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "ACL cho đối tượng nà y" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "Các vai trò hiện có" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4854,46 +4757,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "Äối tượng nà y không có mối quan hệ nà o vá»›i các đối tượng khác." -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "Thiết láºp của ngÆ°á»i dùng" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "Bá» máºt khẩu" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "Äặt máºt khẩu má»›i" - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "Ảnh cá nhân" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "Ảnh của ngÆ°á»i sá» dụng" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "Xóa ảnh " - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "Bạn không được phép thay đổi máºt khẩu tại thá»i Ä‘iểm nà y" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" -"Bạn đã thay đổi máºt khẩu thà nh công. Hãy nhá»› thay đổi cả các chÆ°Æ¡ng trình " -"cấu hình để sá» dụng được nó." - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/locale/zh/fusiondirectory.po b/locale/zh/fusiondirectory.po index eb9b526c6f385a315682cce70c7c6afd42c99e07..5fb375a763b76f345cff40cd167d9bdefefef834 100644 --- a/locale/zh/fusiondirectory.po +++ b/locale/zh/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2017-05-25 14:10+0200\n" +"POT-Creation-Date: 2017-06-22 11:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n" "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n" @@ -39,7 +39,7 @@ msgid "" msgstr "" #: setup/class_setupStepLanguage.inc:69 -#: plugins/config/class_configInLdap.inc:456 +#: plugins/config/class_configInLdap.inc:451 msgid "Automatic" msgstr "" @@ -175,8 +175,7 @@ msgstr "" #: setup/class_setupStepMigrate.inc:1234 setup/class_setupStepMigrate.inc:1297 #: setup/class_setupStepMigrate.inc:1341 include/functions.inc:846 #: html/index.php:587 html/main.php:158 setup/setup_checks.tpl.c:8 -#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2 -#: ihtml/themes/breezy/msg_dialog.tpl.c:5 +#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:5 msgid "Warning" msgstr "è¦å‘Š" @@ -198,7 +197,6 @@ msgid "Welcome" msgstr "" #: setup/class_setupStepFinish.inc:40 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26 msgid "Finish" msgstr "完æˆ" @@ -235,7 +233,7 @@ msgstr "" #: setup/class_setupStepChecks.inc:37 msgid "" "PHP setup configuration (<a href=\"?info\" target=\"_blank\">show " -"information)</a>)" +"information</a>)" msgstr "" #: setup/class_setupStepChecks.inc:48 setup/class_setupStepChecks.inc:49 @@ -682,8 +680,8 @@ msgstr "" #: include/class_logging.inc:81 include/class_session.inc:50 #: include/class_session.inc:88 include/class_session.inc:127 #: include/functions.inc:575 include/functions.inc:647 -#: include/functions.inc:768 include/functions.inc:1835 -#: include/functions.inc:1874 include/functions.inc:1905 +#: include/functions.inc:768 include/functions.inc:1824 +#: include/functions.inc:1863 include/functions.inc:1894 #: include/class_ldap.inc:790 include/class_ldap.inc:828 #: include/class_acl.inc:118 msgid "Internal error" @@ -744,7 +742,7 @@ msgstr "" #: include/class_config.inc:347 include/class_msgPool.inc:220 #: include/class_msgPool.inc:240 include/class_msgPool.inc:270 #: include/class_msgPool.inc:694 include/class_msgPool.inc:723 -#: include/simpleplugin/class_simpleTabs.inc:71 +#: include/simpleplugin/class_simpleTabs.inc:73 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87 #: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89 #: include/simpleplugin/attributes/class_FileAttribute.inc:31 @@ -844,7 +842,7 @@ msgstr "" #: include/password-methods/class_password-methods-ssha.inc:83 #: include/functions.inc:657 include/class_timezone.inc:51 #: include/class_config.inc:154 include/class_config.inc:276 -#: include/class_config.inc:795 include/class_config.inc:807 +#: include/class_config.inc:791 include/class_config.inc:803 #: html/index.php:148 html/class_passwordRecovery.inc:139 html/main.php:208 msgid "Configuration error" msgstr "" @@ -881,7 +879,6 @@ msgid "Permission" msgstr "å…许" #: include/class_CopyPasteHandler.inc:268 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20 msgid "Cancel all" msgstr "" @@ -893,7 +890,6 @@ msgstr "" #: plugins/personal/generic/class_user.inc:383 #: plugins/addons/dashboard/class_dashBoardUsers.inc:62 #: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26 -#: plugins/personal/generic/paste_generic.tpl.c:11 msgid "Login" msgstr "登录å" @@ -910,7 +906,7 @@ msgstr "模æ¿" msgid "Object template, used to create several objects with similar values" msgstr "" -#: include/class_template.inc:46 +#: include/class_template.inc:47 #: include/simpleplugin/class_simplePlugin.inc:346 msgid "Template name" msgstr "模æ¿å称" @@ -926,7 +922,7 @@ msgid "" "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: include/functions.inc:474 include/functions.inc:2552 +#: include/functions.inc:474 include/functions.inc:2541 #: include/simpleplugin/class_simplePlugin.inc:466 #: include/simpleplugin/class_simplePlugin.inc:471 #: include/simpleplugin/class_simplePlugin.inc:483 @@ -997,154 +993,154 @@ msgstr "é…ç½®" msgid "incomplete" msgstr "ä¸å®Œæ•´" -#: include/functions.inc:1258 +#: include/functions.inc:1247 msgid "Continue anyway" msgstr "ä»ç„¶ç»§ç»" -#: include/functions.inc:1260 +#: include/functions.inc:1249 msgid "Edit anyway" msgstr "ä»ç„¶ç¼–辑" -#: include/functions.inc:1262 +#: include/functions.inc:1251 #, php-format msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: include/functions.inc:1657 +#: include/functions.inc:1646 #, php-format msgid "%sB" msgstr "" -#: include/functions.inc:1658 +#: include/functions.inc:1647 #, php-format msgid "%sKiB" msgstr "" -#: include/functions.inc:1659 +#: include/functions.inc:1648 #, php-format msgid "%sMiB" msgstr "" -#: include/functions.inc:1660 +#: include/functions.inc:1649 #, php-format msgid "%sGiB" msgstr "" -#: include/functions.inc:1661 +#: include/functions.inc:1650 #, php-format msgid "%sTiB" msgstr "" -#: include/functions.inc:1662 +#: include/functions.inc:1651 #, php-format msgid "%sPiB" msgstr "" -#: include/functions.inc:1663 +#: include/functions.inc:1652 #, php-format msgid "%sEiB" msgstr "" -#: include/functions.inc:1664 +#: include/functions.inc:1653 #, php-format msgid "%sZiB" msgstr "" -#: include/functions.inc:1665 +#: include/functions.inc:1654 #, php-format msgid "%sYiB" msgstr "" -#: include/functions.inc:1697 include/class_filter.inc:305 +#: include/functions.inc:1686 include/class_filter.inc:305 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: include/functions.inc:1835 +#: include/functions.inc:1824 #, php-format msgid "" "File '%s' could not be deleted. Try fusiondirectory-setup --check-" "directories to fix permissions." msgstr "" -#: include/functions.inc:1874 +#: include/functions.inc:1863 msgid "Cannot write to revision file!" msgstr "" -#: include/functions.inc:1905 +#: include/functions.inc:1894 msgid "Cannot read revision file!" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "LDAP warning" msgstr "" -#: include/functions.inc:2019 +#: include/functions.inc:2008 msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: include/functions.inc:2042 +#: include/functions.inc:2031 msgid "Main FusionDirectory schema" msgstr "" -#: include/functions.inc:2049 +#: include/functions.inc:2038 msgid "Schema used to store FusionDirectory configuration" msgstr "" -#: include/functions.inc:2056 +#: include/functions.inc:2045 msgid "Used to store trust mode information in users or groups." msgstr "" -#: include/functions.inc:2063 +#: include/functions.inc:2052 msgid "Used to store templates." msgstr "" -#: include/functions.inc:2071 +#: include/functions.inc:2060 msgid "Used to store POSIX information." msgstr "" -#: include/functions.inc:2079 +#: include/functions.inc:2068 #, php-format msgid "Missing required object class \"%s\"!" msgstr "" -#: include/functions.inc:2081 +#: include/functions.inc:2070 #, php-format msgid "Missing optional object class \"%s\"!" msgstr "" -#: include/functions.inc:2085 +#: include/functions.inc:2074 #, php-format msgid "Class(es) available" msgstr "" -#: include/functions.inc:2103 +#: include/functions.inc:2092 msgid "" "You have installed the mixed groups plugin, but your schema configuration " "does not support this." msgstr "" -#: include/functions.inc:2104 +#: include/functions.inc:2093 msgid "" "In order to use mixed groups the objectClass \"posixGroup\" must be " "AUXILIARY" msgstr "" -#: include/functions.inc:2107 +#: include/functions.inc:2096 msgid "" "Your schema is configured to support mixed groups, but this plugin is not " "present." msgstr "" -#: include/functions.inc:2108 +#: include/functions.inc:2097 msgid "The objectClass \"posixGroup\" must be STRUCTURAL" msgstr "" -#: include/functions.inc:2553 +#: include/functions.inc:2542 #, php-format msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: include/class_pluglist.inc:181 +#: include/class_pluglist.inc:183 msgid "All objects in this category" msgstr "" @@ -1178,25 +1174,25 @@ msgstr "" msgid "Location \"%s\" could not be found in the configuration file" msgstr "" -#: include/class_config.inc:796 +#: include/class_config.inc:792 #, php-format msgid "" "The snapshot functionality is enabled, but the required variable \"%s\" is " "not set." msgstr "" -#: include/class_config.inc:808 +#: include/class_config.inc:804 #, php-format msgid "" "The snapshot functionality is enabled, but the required compression module " "is missing. Please install \"%s\"." msgstr "" -#: include/class_config.inc:916 +#: include/class_config.inc:912 msgid "All categories" msgstr "" -#: include/class_config.inc:1050 +#: include/class_config.inc:1047 msgid "My account" msgstr "我的账å·" @@ -1469,19 +1465,16 @@ msgstr "" #: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23 #: setup/setup_migrate_accounts.tpl.c:32 ihtml/themes/breezy/islocked.tpl.c:17 -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17 -#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53 -#: ihtml/themes/breezy/acl.tpl.c:59 +#: ihtml/themes/breezy/msg_dialog.tpl.c:17 msgid "Cancel" msgstr "å–消" #: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20 -#: setup/setup_migrate_accounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50 -#: ihtml/themes/breezy/acl.tpl.c:56 +#: setup/setup_migrate_accounts.tpl.c:29 msgid "Apply" msgstr "应用" -#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14 +#: include/class_msgPool.inc:502 msgid "Save" msgstr "ä¿å˜" @@ -1952,7 +1945,7 @@ msgstr "" msgid "Error while importing dn: \"%s\", please check your LDIF from line %s on!" msgstr "" -#: include/class_templateHandling.inc:474 +#: include/class_templateHandling.inc:490 #, php-format msgid "" "Recursive dependency in the template fields: \"%1$s\" cannot depend on " @@ -1994,13 +1987,13 @@ msgid "POSIX group %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:428 -#: plugins/config/class_configInLdap.inc:476 +#: plugins/config/class_configInLdap.inc:471 #, php-format msgid "Role %s" msgstr "" #: include/simpleplugin/class_dialogAttributes.inc:430 -#: plugins/config/class_configInLdap.inc:469 +#: plugins/config/class_configInLdap.inc:464 #, php-format msgid "Group %s" msgstr "" @@ -2011,7 +2004,7 @@ msgstr "用户组" #: include/simpleplugin/class_dialogAttributes.inc:634 #: include/simpleplugin/attributes/class_SelectAttribute.inc:66 -#: include/simpleplugin/attributes/class_SelectAttribute.inc:111 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:119 msgid "None" msgstr "" @@ -2047,51 +2040,51 @@ msgstr "编辑" msgid "Remove" msgstr "åˆ é™¤" -#: include/simpleplugin/class_simpleTabs.inc:72 +#: include/simpleplugin/class_simpleTabs.inc:74 #, php-format msgid "" "No plugin definitions found to initialize \"%s\", please check your " "configuration file." msgstr "" -#: include/simpleplugin/class_simpleTabs.inc:391 +#: include/simpleplugin/class_simpleTabs.inc:393 #, php-format msgid "Move from \"%s\" to \"%s\" failed" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:247 +#: include/simpleplugin/class_helpersAttribute.inc:263 msgid "B" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:248 +#: include/simpleplugin/class_helpersAttribute.inc:264 msgid "KiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:249 +#: include/simpleplugin/class_helpersAttribute.inc:265 msgid "MiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:250 +#: include/simpleplugin/class_helpersAttribute.inc:266 msgid "GiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:251 +#: include/simpleplugin/class_helpersAttribute.inc:267 msgid "TiB" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:262 +#: include/simpleplugin/class_helpersAttribute.inc:278 msgid "seconds" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:263 +#: include/simpleplugin/class_helpersAttribute.inc:279 msgid "minutes" msgstr "" -#: include/simpleplugin/class_helpersAttribute.inc:264 +#: include/simpleplugin/class_helpersAttribute.inc:280 msgid "hours" msgstr "å°æ—¶" -#: include/simpleplugin/class_helpersAttribute.inc:265 +#: include/simpleplugin/class_helpersAttribute.inc:281 msgid "days" msgstr "天" @@ -2163,38 +2156,38 @@ msgid "" "Could not compute dn: could not find objectType infos from tab class \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1299 +#: include/simpleplugin/class_simplePlugin.inc:1296 #, php-format msgid "There is already an entry with the same dn : %s" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1306 +#: include/simpleplugin/class_simplePlugin.inc:1303 #, php-format msgid "The entry %s is not existing" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1496 +#: include/simpleplugin/class_simplePlugin.inc:1493 msgid "" "The object has changed since opened in FusionDirectory. All changes that may" " be done by others will get lost if you save this entry!" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1681 +#: include/simpleplugin/class_simplePlugin.inc:1678 #, php-format msgid "Service \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1683 +#: include/simpleplugin/class_simplePlugin.inc:1680 #, php-format msgid "Tab \"%s\"" msgstr "" -#: include/simpleplugin/class_simplePlugin.inc:1835 +#: include/simpleplugin/class_simplePlugin.inc:1832 #, php-format msgid "Unknown field \"%s\"" msgstr "" -#: include/simpleplugin/class_Attribute.inc:560 +#: include/simpleplugin/class_Attribute.inc:572 #: include/simpleplugin/attributes/class_SetAttribute.inc:230 #, php-format msgid "%s (required)" @@ -2204,7 +2197,7 @@ msgstr "" msgid "Object base" msgstr "" -#: include/simpleplugin/attributes/class_SelectAttribute.inc:137 +#: include/simpleplugin/attributes/class_SelectAttribute.inc:145 #, php-format msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices" msgstr "" @@ -2545,22 +2538,22 @@ msgstr "欢迎 %s!" msgid "References" msgstr "å‚考" -#: plugins/personal/roles/class_userRoles.inc:31 +#: plugins/personal/roles/class_userRoles.inc:33 #: plugins/admin/groups/class_groupManagement.inc:35 msgid "Groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:32 +#: plugins/personal/roles/class_userRoles.inc:34 msgid "Edit user's groups and roles" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:47 -#: plugins/personal/roles/class_userRoles.inc:51 +#: plugins/personal/roles/class_userRoles.inc:49 +#: plugins/personal/roles/class_userRoles.inc:53 msgid "Groups membership" msgstr "" -#: plugins/personal/roles/class_userRoles.inc:58 -#: plugins/personal/roles/class_userRoles.inc:62 +#: plugins/personal/roles/class_userRoles.inc:60 +#: plugins/personal/roles/class_userRoles.inc:64 msgid "Roles membership" msgstr "" @@ -2578,7 +2571,6 @@ msgstr "" #: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5 #: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20 #: ihtml/themes/breezy/login.tpl.c:23 -#: plugins/personal/generic/paste_generic.tpl.c:14 msgid "Password" msgstr "å£ä»¤" @@ -2619,7 +2611,6 @@ msgid "Personal information" msgstr "个人信æ¯" #: plugins/personal/generic/class_user.inc:315 -#: plugins/personal/generic/paste_generic.tpl.c:5 msgid "Last name" msgstr "姓" @@ -2628,7 +2619,6 @@ msgid "Last name of this user" msgstr "" #: plugins/personal/generic/class_user.inc:320 -#: plugins/personal/generic/paste_generic.tpl.c:8 msgid "First name" msgstr "å" @@ -2835,53 +2825,53 @@ msgstr "" msgid "Postal code" msgstr "邮编" -#: plugins/personal/generic/class_user.inc:659 +#: plugins/personal/generic/class_user.inc:668 #, php-format msgid "Ppolicy \"%s\" could not be found in the LDAP!" msgstr "" -#: plugins/personal/generic/class_user.inc:662 +#: plugins/personal/generic/class_user.inc:671 msgid "You are not allowed to change your own password" msgstr "" -#: plugins/personal/generic/class_user.inc:673 +#: plugins/personal/generic/class_user.inc:682 #, php-format msgid "You must wait %d seconds before changing your password again" msgstr "" -#: plugins/personal/generic/class_user.inc:687 +#: plugins/personal/generic/class_user.inc:696 msgid "Password is in history of old passwords" msgstr "" -#: plugins/personal/generic/class_user.inc:692 -#: plugins/personal/generic/class_user.inc:696 +#: plugins/personal/generic/class_user.inc:701 +#: plugins/personal/generic/class_user.inc:705 msgid "Password is not being changed from existing value" msgstr "" -#: plugins/personal/generic/class_user.inc:703 +#: plugins/personal/generic/class_user.inc:712 msgid "You need to specify your current password in order to proceed." msgstr "您需è¦è¾“入当å‰å£ä»¤æ‰èƒ½ç»§ç»ã€‚" -#: plugins/personal/generic/class_user.inc:705 +#: plugins/personal/generic/class_user.inc:714 msgid "" "The passwords you've entered as \"New password\" and \"Repeated new " "password\" do not match." msgstr "" -#: plugins/personal/generic/class_user.inc:707 +#: plugins/personal/generic/class_user.inc:716 #: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32 msgid "New password" msgstr "æ–°å£ä»¤" -#: plugins/personal/generic/class_user.inc:709 +#: plugins/personal/generic/class_user.inc:718 msgid "The password used as new and current are too similar." msgstr "输入的新å£ä»¤å’Œå½“å‰å£ä»¤éžå¸¸ç›¸ä¼¼ã€‚" -#: plugins/personal/generic/class_user.inc:711 +#: plugins/personal/generic/class_user.inc:720 msgid "The password used as new is too short." msgstr "" -#: plugins/personal/generic/class_user.inc:713 +#: plugins/personal/generic/class_user.inc:722 msgid "The password contains possibly problematic Unicode characters!" msgstr "" @@ -3431,179 +3421,171 @@ msgid "The branch where users are stored." msgstr "" #: plugins/config/class_configInLdap.inc:303 -msgid "Groups RDN" -msgstr "" - -#: plugins/config/class_configInLdap.inc:303 -msgid "The branch where groups are stored." -msgstr "" - -#: plugins/config/class_configInLdap.inc:308 msgid "ACL role RDN" msgstr "" -#: plugins/config/class_configInLdap.inc:308 +#: plugins/config/class_configInLdap.inc:303 msgid "The branch where ACL roles are stored." msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "Restrict role members" msgstr "" -#: plugins/config/class_configInLdap.inc:313 +#: plugins/config/class_configInLdap.inc:308 msgid "" "When enabled only users from the same branch or members of groups from the " "same branch can be added to a role." msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "Separate address fields" msgstr "" -#: plugins/config/class_configInLdap.inc:317 +#: plugins/config/class_configInLdap.inc:312 msgid "" "Expose street, postOfficeBox and postalCode fields instead of postalAddress." msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "Postal address pattern" msgstr "" -#: plugins/config/class_configInLdap.inc:321 +#: plugins/config/class_configInLdap.inc:316 msgid "" "When using separate address fields, you can use a pattern to fill " "postalAddress field." msgstr "" -#: plugins/config/class_configInLdap.inc:327 +#: plugins/config/class_configInLdap.inc:322 msgid "Debugging" msgstr "" -#: plugins/config/class_configInLdap.inc:330 +#: plugins/config/class_configInLdap.inc:325 msgid "Display errors" msgstr "" -#: plugins/config/class_configInLdap.inc:331 +#: plugins/config/class_configInLdap.inc:326 msgid "" "Shows PHP errors in the upper part of the screen. This should be disabled in" " productive deployments, because there might be some passwords in it." msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "Maximum LDAP query time" msgstr "" -#: plugins/config/class_configInLdap.inc:335 +#: plugins/config/class_configInLdap.inc:330 msgid "" "Stop LDAP actions if there is no answer within the specified number of " "seconds." msgstr "" -#: plugins/config/class_configInLdap.inc:340 +#: plugins/config/class_configInLdap.inc:335 msgid "Log LDAP statistics" msgstr "" -#: plugins/config/class_configInLdap.inc:341 +#: plugins/config/class_configInLdap.inc:336 msgid "" "Track LDAP timing statistics to the syslog. This may help to find indexing " "problems or bad search filters." msgstr "" -#: plugins/config/class_configInLdap.inc:346 +#: plugins/config/class_configInLdap.inc:341 msgid "Debug level" msgstr "" -#: plugins/config/class_configInLdap.inc:347 +#: plugins/config/class_configInLdap.inc:342 msgid "Display certain information on each page load." msgstr "" -#: plugins/config/class_configInLdap.inc:359 +#: plugins/config/class_configInLdap.inc:354 msgid "Miscellaneous" msgstr "æ‚项" -#: plugins/config/class_configInLdap.inc:362 +#: plugins/config/class_configInLdap.inc:357 msgid "Display summary in listings" msgstr "" -#: plugins/config/class_configInLdap.inc:363 +#: plugins/config/class_configInLdap.inc:358 msgid "" "Determines whether a status bar will be shown on the bottom of lists, " "displaying a short summary of type and number of elements in the list." msgstr "" -#: plugins/config/class_configInLdap.inc:368 +#: plugins/config/class_configInLdap.inc:363 msgid "Show ACL tab on all objects" msgstr "" -#: plugins/config/class_configInLdap.inc:369 +#: plugins/config/class_configInLdap.inc:364 msgid "" "For very specific ACL rights setting where you might need to give right on a" " single object." msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available department categories" msgstr "" -#: plugins/config/class_configInLdap.inc:374 +#: plugins/config/class_configInLdap.inc:369 msgid "Available categories in the departments dropdown" msgstr "" -#: plugins/config/class_configInLdap.inc:381 +#: plugins/config/class_configInLdap.inc:376 msgid "Use this to hide some menu entry to specific groups of users" msgstr "" -#: plugins/config/class_configInLdap.inc:385 +#: plugins/config/class_configInLdap.inc:380 msgid "Group or role" msgstr "" -#: plugins/config/class_configInLdap.inc:390 +#: plugins/config/class_configInLdap.inc:385 msgid "Plugin to blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:396 +#: plugins/config/class_configInLdap.inc:391 msgid "Plugin menu blacklist" msgstr "" -#: plugins/config/class_configInLdap.inc:405 -#: plugins/config/class_configInLdap.inc:433 +#: plugins/config/class_configInLdap.inc:400 +#: plugins/config/class_configInLdap.inc:428 msgid "Hooks" msgstr "é’©å" -#: plugins/config/class_configInLdap.inc:410 +#: plugins/config/class_configInLdap.inc:405 msgid "Hooks that are called when specific actions happens" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "Tab" msgstr "" -#: plugins/config/class_configInLdap.inc:414 +#: plugins/config/class_configInLdap.inc:409 msgid "The tab that this hook concerns" msgstr "" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 #: plugins/admin/acl/class_aclAssignment.inc:41 msgid "Mode" msgstr "模å¼" -#: plugins/config/class_configInLdap.inc:419 +#: plugins/config/class_configInLdap.inc:414 msgid "When to call this command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "Command" msgstr "" -#: plugins/config/class_configInLdap.inc:426 +#: plugins/config/class_configInLdap.inc:421 msgid "The command that will be called" msgstr "" -#: plugins/config/class_configInLdap.inc:440 +#: plugins/config/class_configInLdap.inc:435 msgid "Display hook output" msgstr "" -#: plugins/config/class_configInLdap.inc:441 +#: plugins/config/class_configInLdap.inc:436 msgid "" "When enabled successful hook execution output is displayed to the user using" " a dialog." @@ -3630,7 +3612,7 @@ msgid "Object groups" msgstr "对象组" #: plugins/config/class_mainPluginsConfig.inc:45 -msgid "OGroup RDN" +msgid "Groups RDN" msgstr "" #: plugins/config/class_mainPluginsConfig.inc:45 @@ -4197,7 +4179,6 @@ msgid "Apply this ACL for all LDAP users" msgstr "" #: plugins/admin/acl/class_aclAssignment.inc:56 -#: ihtml/themes/breezy/acl.tpl.c:32 msgid "Members" msgstr "æˆå‘˜" @@ -4249,7 +4230,6 @@ msgid "Reset category ACL" msgstr "" #: plugins/admin/aclrole/class_aclEditionDialog.inc:202 -#: ihtml/themes/breezy/acl.tpl.c:41 msgid "List of available ACL categories" msgstr "" @@ -4629,7 +4609,6 @@ msgid "" msgstr "" #: ihtml/themes/breezy/simple-remove.tpl.c:8 -#: ihtml/themes/breezy/remove.tpl.c:8 msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "æ‰€ä»¥ï¼Œå¦‚æžœæ‚¨ç¡®å®šï¼Œè¯·æŒ‰â€œåˆ é™¤â€ç»§ç»ï¼Œå¦åˆ™æŒ‰â€œå–消â€é€€å‡ºã€‚" @@ -4687,85 +4666,10 @@ msgstr "" msgid "Read only" msgstr "" -#: ihtml/themes/breezy/remove.tpl.c:5 -msgid "" -"This may be used by several groups. Please double check if you really want " -"to do this since there is no way for FusionDirectory to get your data back." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2 -msgid "Copy & paste wizard" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5 -msgid "" -"Some values need to be unique in the complete directory while some " -"combinations make no sense. FusionDirectory shows the relevant attributes. " -"Please maintain the values below to fulfill the policies." -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8 -msgid "Remember that some properties like taken snapshots will not be copied!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11 -msgid "" -"Or if you copy or cut an entry within FusionDirectory and delete the source " -"object, you may get errors while pasting this object again!" -msgstr "" - -#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23 -msgid "Operation complete" -msgstr "æ“作完æˆ" - #: ihtml/themes/breezy/template.tpl.c:2 msgid "Creating a new object using templates" msgstr "" -#: ihtml/themes/breezy/acl.tpl.c:2 -msgid "Assigned ACL for current entry" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:5 -msgid "New ACL" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:8 -msgid "ACL type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14 -msgid "Select an acl type" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:17 -msgid "Additional filter options" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:20 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:23 -msgid "Available members" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29 -msgid "List message possible targets" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38 -msgid "List message recipients" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:44 -msgid "ACL for this object" -msgstr "" - -#: ihtml/themes/breezy/acl.tpl.c:47 -msgid "Available roles" -msgstr "" - #: plugins/generic/welcome/welcome.tpl.c:2 msgid "The FusionDirectory team" msgstr "" @@ -4784,44 +4688,6 @@ msgstr "" msgid "This object has no relationship to other objects." msgstr "这个对象和其他对象没有关系。" -#: plugins/personal/generic/paste_generic.tpl.c:2 -msgid "User settings" -msgstr "用户设置" - -#: plugins/personal/generic/paste_generic.tpl.c:17 -msgid "Clear password" -msgstr "清除å£ä»¤" - -#: plugins/personal/generic/paste_generic.tpl.c:20 -msgid "Set new password" -msgstr "设置新密ç " - -#: plugins/personal/generic/paste_generic.tpl.c:23 -msgid "Personal picture" -msgstr "个人图片" - -#: plugins/personal/generic/paste_generic.tpl.c:26 -msgid "User picture" -msgstr "用户图片" - -#: plugins/personal/generic/paste_generic.tpl.c:29 -msgid "Remove picture" -msgstr "åˆ é™¤å›¾ç‰‡" - -#: plugins/personal/generic/nochange.tpl.c:2 -msgid "You have no permission to change your password at this time" -msgstr "" - -#: plugins/personal/generic/nochange.tpl.c:5 -msgid "Your password hash method will not be changed!" -msgstr "" - -#: plugins/personal/generic/changed.tpl.c:2 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "您已ç»æˆåŠŸæ›´æ”¹å£ä»¤ã€‚还è¦è®°ä½æ›´æ”¹ç›¸å…³ç¨‹åºè®¾å®šã€‚" - #: plugins/addons/dashboard/groups_stats.tpl.c:2 msgid "There is 1 group:" msgid_plural "There are %1 groups:" diff --git a/plugins/addons/dashboard/class_dashBoardUsers.inc b/plugins/addons/dashboard/class_dashBoardUsers.inc index 65aefce189cb1fa2cc838d8b4c1850c8d037f782..a69ec9d3a1f67e4252ce41a590ef6ae827da0463 100644 --- a/plugins/addons/dashboard/class_dashBoardUsers.inc +++ b/plugins/addons/dashboard/class_dashBoardUsers.inc @@ -57,6 +57,19 @@ class dashboardUsers extends simplePlugin { parent::__construct($dn, $object, $parent, $mainTab); + $this->expiredAccountsColumns = array( + 'user' => array( + 'uid' => _('Login'), + 'cn' => _('Name'), + 'telephoneNumber' => _('Phone number'), + 'expirationDate' => _('Expiration date'), + ), + 'manager' => array( + 'manager_cn' => _('Name'), + 'manager_mail' => _('Email'), + 'manager_phone' => _('Phone number'), + ) + ); $this->users_stats = $this->computeUsersStats(); $this->groups_stats = $this->computeGroupsStats(); $this->expired = $this->expired_accounts_info(); @@ -155,6 +168,7 @@ class dashboardUsers extends simplePlugin } return array( + 'columns' => $this->expiredAccountsColumns, 'accounts' => $expired_accounts, 'accounts_next_days' => $next_expired_accounts, 'next_days' => $next_expired_days, @@ -176,8 +190,12 @@ class dashboardUsers extends simplePlugin $manager_phone = ''; } - /* 24 * 60 * 60 = 86400 */ - $human_shadowExpire = date('d.m.Y', $attrs['shadowExpire'][0] * 86400); + if (isset($attrs['shadowExpire'][0])) { + /* 24 * 60 * 60 = 86400 */ + $human_shadowExpire = date('d.m.Y', $attrs['shadowExpire'][0] * 86400); + } else { + $human_shadowExpire = ''; + } return array( 'uid' => $attrs['uid'][0], @@ -187,7 +205,7 @@ class dashboardUsers extends simplePlugin 'manager_cn' => $manager_cn, 'manager_mail' => $manager_mail, 'manager_phone' => $manager_phone, - 'shadowExpire' => $human_shadowExpire, + 'expirationDate' => $human_shadowExpire, ); } } diff --git a/plugins/addons/dashboard/users_accounts.tpl b/plugins/addons/dashboard/users_accounts.tpl index fcb8f286284a29a58d280dc65e7ce1a5841d4c1d..358e664ed25dc4710287ba4b9f30a1e458524ded 100644 --- a/plugins/addons/dashboard/users_accounts.tpl +++ b/plugins/addons/dashboard/users_accounts.tpl @@ -12,41 +12,39 @@ </h1> {if $attributes.expired.accounts|@count > 0} <table style="width: 100%;" class="listingTable"> - <colgroup> - <col width="10%"/> - <col width="15%"/> - <col width="15%"/> - <col width="15%"/> - <col width="15%"/> - <col width="10%"/> - </colgroup> <thead> <tr style="background-color: white; text-align:center;"> - <th colspan="4" style="background-color: white; padding:5px;"> + <th colspan="{$attributes.expired.columns.user|@count}" style="background-color: white; padding:5px;"> {t}Expired accounts{/t} </th> - <th colspan="3" style="background-color: white; padding:5px;"> + <th colspan="{$attributes.expired.columns.manager|@count}" style="background-color: white; padding:5px;"> {t}Manager concerned{/t} </th> </tr> - <tr style="background-color: #E8E8E8; height:26px;font-weight:bold;"> - <!-- uid/cn/telephonNumber/mail/shadowExpire/sambaKickoffTime --> - <th>{t}uid{/t}</th><th>{t}cn{/t}</th><th>{t}telephoneNumber{/t}</th><th>{t}shadowExpire{/t}</th> - <th>{t}manager{/t}</th><th>{t}mail{/t}</th><th>{t}telephoneNumber{/t}</th> + <tr> + {foreach from=$attributes.expired.columns.user item=colname} + <th>{$colname}</th> + {/foreach} + {foreach from=$attributes.expired.columns.manager item=colname} + <th>{$colname}</th> + {/foreach} </tr> </thead> <tbody> {foreach from=$attributes.expired.accounts item=account} <tr> - <td> {$account.uid}</td> - <td> {$account.cn}</td> - <td> {$account.telephoneNumber}</td> - <td> {$account.shadowExpire}</td> - <td> {$account.manager_cn}</td> - <td><a href="mailto:{$account.manager_mail}">{$account.manager_mail}</a></td> - <td> {$account.manager_phone}</td> + {foreach from=$attributes.expired.columns.user key=colkey item=colname} + <td> {$account.$colkey}</td> + {/foreach} + {foreach from=$attributes.expired.columns.manager key=colkey item=colname} + {if $colkey==manager_mail} + <td><a href="mailto:{$account.$colkey}">{$account.$colkey}</a></td> + {else} + <td> {$account.$colkey}</td> + {/if} + {/foreach} </tr> {/foreach} </tbody> @@ -62,39 +60,39 @@ </h1> {if $attributes.expired.accounts_next_days|@count > 0} <table style="width: 100%;" class="listingTable"> - <colgroup> - <col width="10%"/> - <col width="15%"/> - <col width="15%"/> - <col width="15%"/> - <col width="15%"/> - <col width="10%"/> - </colgroup> <thead> <tr style="background-color: white; text-align:center;"> - <th colspan="4" style="background-color: white; padding:5px;"> + <th colspan="{$attributes.expired.columns.user|@count}" style="background-color: white; padding:5px;"> {t}Next expired accounts{/t} </th> - <th colspan="3" style="background-color: white; padding:5px;"> + <th colspan="{$attributes.expired.columns.manager|@count}" style="background-color: white; padding:5px;"> {t}Manager concerned{/t} </th> </tr> + + <tr> - <!-- uid/cn/telephonNumber/mail/shadowExpire/sambaKickoffTime --> - <th>{t}uid{/t}</th><th>{t}cn{/t}</th><th>{t}telephoneNumber{/t}</th><th>{t}shadowExpire{/t}</th> - <th>{t}manager{/t}</th><th>{t}mail{/t}</th><th>{t}telephoneNumber{/t}</th> + {foreach from=$attributes.expired.columns.user item=colname} + <th>{$colname}</th> + {/foreach} + {foreach from=$attributes.expired.columns.manager item=colname} + <th>{$colname}</th> + {/foreach} </tr> </thead> <tbody> {foreach from=$attributes.expired.accounts_next_days item=account} <tr> - <td> {$account.uid}</td> - <td> {$account.cn}</td> - <td> {$account.telephoneNumber}</td> - <td> {$account.shadowExpire}</td> - <td> {$account.manager_cn}</td> - <td><a href="mailto:{$account.manager_mail}">{$account.manager_mail}</a></td> - <td> {$account.manager_phone}</td> + {foreach from=$attributes.expired.columns.user key=colkey item=colname} + <td> {$account.$colkey}</td> + {/foreach} + {foreach from=$attributes.expired.columns.manager key=colkey item=colname} + {if $colkey==manager_mail} + <td><a href="mailto:{$account.$colkey}">{$account.$colkey}</a></td> + {else} + <td> {$account.$colkey}</td> + {/if} + {/foreach} </tr> {/foreach} </tbody> diff --git a/plugins/admin/groups/class_groupManagement.inc b/plugins/admin/groups/class_groupManagement.inc index 7cd3d89a6da81b40cba8f5718ab11e9633167998..ba15890c16d455c4dec792f431fd53335967a0fa 100644 --- a/plugins/admin/groups/class_groupManagement.inc +++ b/plugins/admin/groups/class_groupManagement.inc @@ -25,7 +25,9 @@ class groupManagement extends simpleManagement protected $autoFilter = FALSE; - public static $skipTemplates = TRUE; + public static $skipTemplates = FALSE; + + protected $siActive = FALSE; static function plInfo() { @@ -47,7 +49,14 @@ class groupManagement extends simpleManagement $this->filterXMLPath = get_template_path('group-filter.xml', TRUE, dirname(__FILE__)); $this->listXMLPath = get_template_path('group-list.xml', TRUE, dirname(__FILE__)); + // Check if we are able to communicate with Argonaut server + if (class_available('supportDaemon') && class_available('argonautAction')) { + $o = new supportDaemon(); + $this->siActive = $o->is_available(); + } + parent::__construct(); + $this->headpage->registerElementFilter('filterProperties', 'groupManagement::filterProperties'); } @@ -74,6 +83,162 @@ class groupManagement extends simpleManagement } } + function configureHeadpage () + { + parent::configureHeadpage(); + + // Register Daemon Events + if ($this->siActive) { + $this->headpage->xmlData['actionmenu']['action'][4]['action'] = array(); + $this->headpage->xmlData['actionmenu']['action'][5]['action'] = array(); + $events = argonautEventTypes::get_event_types(); + foreach ($events as $name => $data) { + $this->registerAction('T_'.$name, 'handleEvent'); + $this->headpage->xmlData['actionmenu']['action'][4]['action'][] = array( + 'name' => 'T_'.$name, + 'type' => 'entry', + 'image' => $data['img'], + 'label' => $data['name'], + ); + $this->registerAction('S_'.$name, 'handleEvent'); + $this->headpage->xmlData['actionmenu']['action'][5]['action'][] = array( + 'name' => 'S_'.$name, + 'type' => 'entry', + 'image' => $data['img'], + 'label' => $data['name'], + ); + } + } else { + unset($this->headpage->xmlData['actionmenu']['action'][3]); + unset($this->headpage->xmlData['actionmenu']['action'][4]); + unset($this->headpage->xmlData['actionmenu']['action'][5]); + $this->headpage->xmlData['actionmenu']['action'] = array_values($this->headpage->xmlData['actionmenu']['action']); + } + $this->registerAction('saveEvent', 'saveEventDialog'); + } + + /*! \brief Handle Argonaut events + * All schedules and triggered events are handled here. + */ + function handleEvent($action, array $target) + { + global $config; + + if (!$this->siActive) { + return; + } + + // Detect whether this event is scheduled or triggered. + $triggered = TRUE; + if (preg_match('/^S_/', $action)) { + $triggered = FALSE; + } + + // Detect triggered or scheduled actions + $headpage = $this->getHeadpage(); + $event = preg_replace('/^[TS]_/', '', $action); + + // Now send FAI/Argonaut events here. + $mac = array(); + + // Collect target mac addresses + $ldap = $config->get_ldap_link(); + foreach ($target as $dn) { + $obj = $headpage->getEntry($dn); + if (isset($obj['member']['count'])) { + for ($i = 0; $i < $obj['member']['count']; $i++) { + $ldap->cat($obj['member'][$i]); + if ($attrs = $ldap->fetch()) { + if (isset($attrs['macAddress'][0])) { + $mac[] = $attrs['macAddress'][0]; + } else { + msg_dialog::display(_('Action canceled'), sprintf(_('System %s has no mac address defined, cannot trigger action'), $obj['member'][$i]), ERROR_DIALOG); + } + } else { + msg_dialog::display(_('Action canceled'), sprintf(_('Could not find system %s, cannot trigger action'), $obj['member'][$i]), ERROR_DIALOG); + } + } + } + } + + if ((count($mac) == 0) && $triggered) { + return; + } + + $o_queue = new supportDaemon(); + + /* Skip installation or update trigerred events, + * if this entry is currently processing. + */ + if ($triggered && in_array($event, array('reinstall','update'))) { + foreach ($mac as $key => $mac_address) { + if ($o_queue->is_currently_installing($mac_address)) { + msg_dialog::display(_('Action canceled'), sprintf(_('System %s is currently installing'), $dn), ERROR_DIALOG); + unset($mac[$key]); + logging::log('security', 'systems/'.get_class($this), '', array(), 'Skip adding "argonautAction::'.$event.'" for mac "'.$mac_address.'", there is already a job in progress.'); + } + } + } + + if ((count($mac) == 0) && $triggered) { + return; + } + + // Prepare event to be added + $events = argonautEventTypes::get_event_types(); + if (isset($events[$event])) { + $this->dialogObject = new argonautAction($event, $mac); + + if ($triggered) { + $this->dialogObject->scheduled = FALSE; + $res = $o_queue->append($this->dialogObject); + if ($o_queue->is_error()) { + msg_dialog::display(_('Infrastructure service'), msgPool::siError($o_queue->get_error()), ERROR_DIALOG); + } else { + msg_dialog::display(_('Action triggered'), sprintf(_('Action called without error (result was "%s")'), $res), INFO_DIALOG); + } + $this->closeDialogs(); + } else { + $this->dialogObject->scheduled = TRUE; + } + } + } + + /*! \brief Save event dialogs. + * And append the new Argonaut event. + */ + function saveEventDialog() + { + $this->dialogObject->save_object(); + $msgs = $this->dialogObject->check(); + if (count($msgs)) { + msg_dialog::displayChecks($msgs); + return; + } + if ($this->siActive) { + $o_queue = new supportDaemon(); + $o_queue->append($this->dialogObject); + if ($o_queue->is_error()) { + msg_dialog::display(_('Infrastructure service'), msgPool::siError($o_queue->get_error()), ERROR_DIALOG); + } + $this->closeDialogs(); + } + } + + /*! \brief Detects actions/events send by the ui + * and the corresponding targets. + */ + function detectPostActions() + { + $action = parent::detectPostActions(); + if (isset($_POST['save_event_dialog'])) { + $action['action'] = 'saveEvent'; + } elseif (isset($_POST['abort_event_dialog'])) { + $action['action'] = 'cancel'; + } + return $action; + } + static function filterProperties($row, $dn, $objectType, $attrs, $gosaGroupObjects = NULL) { global $config; @@ -173,7 +338,6 @@ class groupManagement extends simpleManagement array( array('id' => 'SERVER', 'label' => _('Show server groups')), array('id' => 'WORKSTATION', 'label' => _('Show workstation groups')), - array('id' => 'WINDOWS', 'label' => _('Show windows groups')), array('id' => 'TERMINAL', 'label' => _('Show terminal groups')), array('id' => 'PRINTER', 'label' => _('Show printer groups')), array('id' => 'PHONE', 'label' => _('Show phone groups')), diff --git a/plugins/admin/groups/class_ogroup.inc b/plugins/admin/groups/class_ogroup.inc index e88402db3241b616bd8e80a5276cd7b433568743..190c24dc2a1516b11232fc175bfeed42f3d45dda 100644 --- a/plugins/admin/groups/class_ogroup.inc +++ b/plugins/admin/groups/class_ogroup.inc @@ -27,7 +27,7 @@ class ObjectsAttribute extends GenericDialogAttribute function getFilterBlackList () { return array( - 'dn' => array_merge($this->getValue(), $this->plugin->used_workstations) + 'dn' => array_merge($this->getValue(), $this->plugin->used_workstations, array($this->plugin->dn)) ); } @@ -138,11 +138,10 @@ class ogroup extends simplePlugin static $objectTypes = array( 'U' => 'user', - 'G' => 'group', + 'G' => 'ogroup', 'A' => 'application', 'S' => 'server', 'W' => 'workstation', - 'O' => 'winstation', 'T' => 'terminal', 'F' => 'phone', 'P' => 'printer', @@ -167,11 +166,10 @@ class ogroup extends simplePlugin 'plForeignKeys' => array( 'member' => array( array('user'), - array('posixGroup'), + array('ogroup'), array('applicationGeneric'), array('serverGeneric'), array('workstationGeneric'), - array('winstationGeneric'), array('terminalGeneric'), array('phoneGeneric'), array('printGeneric'), diff --git a/plugins/admin/groups/group-filter.xml b/plugins/admin/groups/group-filter.xml index b1cceb045c1b74add880b47e25b51945222eb7d4..1ad1ba94b84fe0fea7bd3bca623dacce805451d9 100644 --- a/plugins/admin/groups/group-filter.xml +++ b/plugins/admin/groups/group-filter.xml @@ -10,7 +10,7 @@ <search> <query> <backend>LDAP</backend> - <filter>(&(|$PRIMARY$MAIL$SAMBA$ROLE$FILTERTEMPLATE(&(objectClass=groupOfNames)(|(gosaGroupObjects=[])$USER$GROUP$APPLICATION$SERVER$WORKSTATION$WINDOWS$TERMINAL$PRINTER$PHONE$SIMPLESECURITYOBJECT$UNKNOWN)))$NAME)</filter> + <filter>(&(|$PRIMARY$MAIL$SAMBA$ROLE$FILTERTEMPLATE(&(objectClass=groupOfNames)(|(gosaGroupObjects=[])$USER$GROUP$APPLICATION$SERVER$WORKSTATION$TERMINAL$PRINTER$PHONE$SIMPLESECURITYOBJECT$UNKNOWN)))$NAME)</filter> <attribute>*</attribute> </query> <scope>auto</scope> @@ -96,14 +96,6 @@ <set>(gosaGroupObjects=*W*)</set> </element> - <element> - <type>checkbox</type> - <tag>WINDOWS</tag> - <default>true</default> - <unset></unset> - <set>(gosaGroupObjects=*O*)</set> - </element> - <element> <type>checkbox</type> <tag>TERMINAL</tag> diff --git a/plugins/admin/groups/group-list.xml b/plugins/admin/groups/group-list.xml index 24525b7436373a0eee8a2ec51dcaf23181c9dc4a..4e83b6d612e1c504207322a4f6513c675a89e5d1 100644 --- a/plugins/admin/groups/group-list.xml +++ b/plugins/admin/groups/group-list.xml @@ -87,6 +87,24 @@ <type>separator</type> </action> + <action> + <type>sub</type> + <image>geticon.php?context=types&icon=action&size=16</image> + <label>Trigger action</label> + <depends>argonautAction</depends> + </action> + + <action> + <type>sub</type> + <image>geticon.php?context=actions&icon=task-schedule&size=16</image> + <label>Schedule action</label> + <depends>argonautAction</depends> + </action> + + <action> + <type>separator</type> + </action> + <action> <type>exporter</type> </action> diff --git a/plugins/config/class_configInLdap.inc b/plugins/config/class_configInLdap.inc index f4ae437a33169542e0758d7bb2fdfaab86c8ccb8..58696221b6838ca37f4ded88f757d68f192e6116 100644 --- a/plugins/config/class_configInLdap.inc +++ b/plugins/config/class_configInLdap.inc @@ -299,11 +299,6 @@ class configInLdap extends simplePlugin 'fdUserRDN', TRUE, 'ou=people' ), - new StringAttribute ( - _('Groups RDN'), _('The branch where groups are stored.'), - 'fdGroupRDN', TRUE, - 'ou=groups' - ), new StringAttribute ( _('ACL role RDN'), _('The branch where ACL roles are stored.'), 'fdAclRoleRDN', TRUE, diff --git a/plugins/config/class_mainPluginsConfig.inc b/plugins/config/class_mainPluginsConfig.inc index 6024cbe8976c4de8e479692955a454a643aba771..db2479fecc3f28df17a8442371217940cdfa20b5 100644 --- a/plugins/config/class_mainPluginsConfig.inc +++ b/plugins/config/class_mainPluginsConfig.inc @@ -1,7 +1,7 @@ <?php /* This code is part of FusionDirectory (http://www.fusiondirectory.org/) - Copyright (C) 2012-2016 FusionDirectory + Copyright (C) 2012-2017 FusionDirectory 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 @@ -42,7 +42,7 @@ class mainPluginsConfig extends simplePlugin 'name' => _('Object groups'), 'attrs' => array( new StringAttribute ( - _('OGroup RDN'), _('Branch in which object groups will be stored'), + _('Groups RDN'), _('Branch in which object groups will be stored'), 'fdOGroupRDN', TRUE, 'ou=groups' ), diff --git a/plugins/personal/generic/changed.tpl b/plugins/personal/generic/changed.tpl deleted file mode 100644 index 4fe49ed3ffc135f76424380372b4c401ca5ef4eb..0000000000000000000000000000000000000000 --- a/plugins/personal/generic/changed.tpl +++ /dev/null @@ -1,12 +0,0 @@ - -<p> - <b>{t}You've successfully changed your password. Remember to change all programms configured to use it as well.{/t}</b> -</p> - -<br> - -<p class="plugbottom"> - <input type=submit name="password_back" value="{msgPool type=backButton}"> -</p> - -<input type="hidden" name="ignore"> diff --git a/plugins/personal/generic/class_user.inc b/plugins/personal/generic/class_user.inc index bf420151d0c31ef8b0915727daa79f56a087c7ec..00da0671ab51f0797835b70c650f81c2810a8a51 100644 --- a/plugins/personal/generic/class_user.inc +++ b/plugins/personal/generic/class_user.inc @@ -321,7 +321,7 @@ class user extends simplePlugin 'givenName', TRUE, '', '', '/[^,+"?()=<>;\\\\]/' ), - new StringAttribute ( + new TextAreaAttribute ( _('Description'), _('Short description of the user'), 'description', FALSE ), @@ -549,6 +549,15 @@ class user extends simplePlugin return parent::execute(); } + protected function shouldSave() + { + if ($this->attributesAccess['userPassword']->getClear() != '') { + /* There may be hooks using this even if LDAP object is not modified */ + return TRUE; + } + return parent::shouldSave(); + } + protected function prepare_save () { global $config; diff --git a/plugins/personal/generic/nochange.tpl b/plugins/personal/generic/nochange.tpl deleted file mode 100644 index eb0ac8a12eb4384a1fe362578d5644f23b9a8710..0000000000000000000000000000000000000000 --- a/plugins/personal/generic/nochange.tpl +++ /dev/null @@ -1,8 +0,0 @@ -<p> - <b>{t}You have no permission to change your password at this time{/t}</b> -</p> -<p> - {t}Your password hash method will not be changed!{/t} -</p> - -<input type="hidden" name="ignore"> diff --git a/plugins/personal/generic/paste_generic.tpl b/plugins/personal/generic/paste_generic.tpl deleted file mode 100644 index 9f92489ac81e64b424ad5c583de6288f515eb348..0000000000000000000000000000000000000000 --- a/plugins/personal/generic/paste_generic.tpl +++ /dev/null @@ -1,59 +0,0 @@ -<h2>{t}User settings{/t}</h2> -<table width="100%"> - <tr> - <td style="vertical-align:top; border-right:1px solid #AAA; width:50%"> - <table> - <tr> - <td><label for="sn">{t}Last name{/t}</label></td> - <td><input type='text' id="sn" name="sn" size=25 maxlength=60 value="{$sn}"></td> - </tr> - <tr> - <td><label for="givenName">{t}First name{/t}</label></td> - <td><input type='text' id="givenName" name="givenName" size=25 maxlength=60 value="{$givenName}"></td> - </tr> - <tr> - <td><label for="uid">{t}Login{/t}</label></td> - <td><input type='text' id="uid" name="uid" size=25 maxlength=60 value="{$uid}"></td> - </tr> - <tr> - <td style='vertical-align:top;'> - {t}Password{/t} - </td> - <td> - <input type="radio" {if $passwordTodo=="clear"} checked{/if} name="passwordTodo" value="clear">{t}Clear password{/t}<br> - <input type="radio" {if $passwordTodo=="new"} checked{/if} name="passwordTodo" value="new">{t}Set new password{/t} - </td> - </tr> - </table> - </td> - <td style="vertical-align:top "> - <table summary="" style="width:100%; vertical-align:top; text-align:left;" cellpadding=4 border=0> - <tr> - <!-- Image container --> - <td colspan="2"> - <table> - <tr> - <td width="147" height="200" bgcolor="gray"> - <img align="middle" border="0" width="100%" src="getbin.php?rand={$rand|escape}" alt="{t}Personal picture{/t}"> - </td> - </tr> - </table> - </td> - </tr> - <tr> - <!-- Name, ... --> - <td style="vertical-align:top;"> - <input type="hidden" name="MAX_FILE_SIZE" value="2000000"> - {t}User picture{/t} - </td> - <td> - <input id="picture_file" name="picture_file" type="file" size="20" maxlength="255" accept="image/*.jpg"> - - <input type=submit name="picture_remove" value="{t}Remove picture{/t}"> - </td> - </tr> - </table> - </td> - </tr> -</table> -<br> diff --git a/plugins/personal/roles/class_userRoles.inc b/plugins/personal/roles/class_userRoles.inc index 92cf1c4996587af8ae431817768da1a91ffb6f01..18d90b4661ececc62185b45c2975c6a8926a7077 100644 --- a/plugins/personal/roles/class_userRoles.inc +++ b/plugins/personal/roles/class_userRoles.inc @@ -24,6 +24,8 @@ class userRoles extends simplePlugin protected $savedGroupsMembership = array(); protected $savedRolesMembership = array(); + protected $templateGroups = array(); + protected $templateRoles = array(); static function plInfo() { @@ -245,7 +247,7 @@ class userRoles extends simplePlugin foreach ($groupsMembership as $ogroupdn) { if (!in_array($ogroupdn, $this->savedGroupsMembership)) { $g = objects::open($ogroupdn, 'ogroup'); - if (!$g->getBaseObject()->attrIsWriteable('member')) { + if (!in_array($ogroupdn, $this->templateGroups) && !$g->getBaseObject()->attrIsWriteable('member')) { $errors[] = msgPool::permModify($ogroupdn, 'member'); continue; } @@ -282,7 +284,7 @@ class userRoles extends simplePlugin foreach ($rolesMembership as $roledn) { if (!in_array($roledn, $this->savedRolesMembership)) { $r = objects::open($roledn, 'role'); - if (!$r->getBaseObject()->attrIsWriteable('roleOccupant')) { + if (!in_array($roledn, $this->templateRoles) && !$r->getBaseObject()->attrIsWriteable('roleOccupant')) { $errors[] = msgPool::permModify($roledn, 'roleOccupant'); continue; } @@ -325,13 +327,27 @@ class userRoles extends simplePlugin $this->savedGroupsMembership = $this->groupsMembership; if (isset($this->attrs['userGroups'])) { unset($this->attrs['userGroups']['count']); - $this->groupsMembership = $this->attrs['userGroups']; + $myGroups = array_combine($this->attrs['userGroups'], $this->attrs['userGroups']); + $groups = $this->attributesAccess['groupsMembership']->attribute->getDisplayChoices(); + $groups = array_merge($myGroups, $groups); + $this->attributesAccess['groupsMembership']->attribute->setChoices(array_keys($groups), array_values($groups)); + $this->attributesAccess['groupsMembership']->setValue(array_keys($myGroups)); + $this->templateGroups = array_keys($myGroups); + } else { + $this->templateGroups = array(); } $this->savedRolesMembership = $this->rolesMembership; if (isset($this->attrs['userRoles'])) { unset($this->attrs['userRoles']['count']); - $this->rolesMembership = $this->attrs['userRoles']; + $myRoles = array_combine($this->attrs['userRoles'], $this->attrs['userRoles']); + $roles = $this->attributesAccess['rolesMembership']->attribute->getDisplayChoices(); + $roles = array_merge($myRoles, $roles); + $this->attributesAccess['rolesMembership']->attribute->setChoices(array_keys($roles), array_values($roles)); + $this->attributesAccess['rolesMembership']->setValue(array_keys($myRoles)); + $this->templateRoles = array_keys($myRoles); + } else { + $this->templateRoles = array(); } $this->is_account = ((count($this->rolesMembership) > 0) || (count($this->groupsMembership) > 0)); diff --git a/setup/class_setupStepChecks.inc b/setup/class_setupStepChecks.inc index dc8da0e70c4387edf93811f126866d46ef4f66b3..e66d2461f51afcd6e5f91b0e43caad1d0c45f252 100644 --- a/setup/class_setupStepChecks.inc +++ b/setup/class_setupStepChecks.inc @@ -34,7 +34,7 @@ class setupStepChecks extends setupStep ) ), 'setup' => array( - 'name' => _('PHP setup configuration (<a href="?info" target="_blank">show information)</a>)'), + 'name' => _('PHP setup configuration (<a href="?info" target="_blank">show information</a>)'), 'template' => get_template_path("setup_checks.tpl", TRUE, dirname(__FILE__)), 'attrs' => array( new FakeAttribute('config_checks')