From: hickert
Date: Tue, 13 Apr 2010 12:03:35 +0000 (+0000)
Subject: Removed plugins that cannot be migrated to 2.7 right now.
X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=391d5fac00a448f6eee4bf54c1074b43fee6b8c1;p=gosa.git
Removed plugins that cannot be migrated to 2.7 right now.
-they are added to gosa-contrib
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17618 594d385d-05f5-0310-b6e9-bd551577e9d8
---
diff --git a/gosa-plugins/addressbook/addons/addressbook/address_edit.tpl b/gosa-plugins/addressbook/addons/addressbook/address_edit.tpl
deleted file mode 100644
index ea90662a8..000000000
--- a/gosa-plugins/addressbook/addons/addressbook/address_edit.tpl
+++ /dev/null
@@ -1,283 +0,0 @@
-
-
-
-
-
-
- {$storage_info}
-
-
- {html_options options=$deplist selected=$storage_base}
-
-
-
-
- X
-
-
-
-
-
-
-
-
-
- {t}Personal{/t}
-
-
-
-
-
- {image path="{$home_image}"}
-
- {t}Private{/t}
-
-
-
-
-
-
-
-
- {image path="{$company_image}"}
-
- {t}Organizational{/t}
-
-
-
-
-
-
-
- {msgPool type=saveButton}
-
- {msgPool type=cancelButton}
-
-
-
-
-
-
-
-
diff --git a/gosa-plugins/addressbook/addons/addressbook/address_info.tpl b/gosa-plugins/addressbook/addons/addressbook/address_info.tpl
deleted file mode 100644
index 527838929..000000000
--- a/gosa-plugins/addressbook/addons/addressbook/address_info.tpl
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
- {$storage_info}
-
-
- X
-
-
-
-
-
-
-
-
-
-
-
- {image path="{$personal_image}"}
-
- {t}Personal{/t}
-
-
-
-
-
- {t}Name{/t}
-
-
- {$info_sn}, {$info_givenName}
-
-
-
-
- {t}Initials{/t}
-
-
- {$info_initials}
-
-
-
-
- {t}Personal title{/t}
-
-
- {$info_title}
-
-
-
-
-
-
-
-
-
- {image path="{$home_image}"}
-
- {t}Private{/t}
-
-
-
-
-
-
- {t}Address{/t}
-
-
-
- {$info_homePostalAddress}
-
-
-
-
- {t}Phone{/t}
-
-
- {$info_homePhone}
-
-
-
-
- {t}Mobile{/t}
-
-
- {$info_mobile}
-
-
-
-
- {t}Email{/t}
-
-
- {$info_mail}
-
-
-
-
-
-
-
-
-
-
-
-
- {image path="{$company_image}"}
-
- {t}Organizational{/t}
-
-
-
-
-
-
-
-
-
- {t}Company{/t}
-
-
- {$info_o}
-
-
-
-
- {t}Department{/t}
-
-
- {$info_ou}
-
-
-
-
- {t}City{/t}
-
-
- {$info_l}
-
-
-
-
- {t}Postal code{/t}
-
-
- {$info_postalCode}
-
-
-
-
- {t}Country{/t}
-
-
- {$info_st}
-
-
-
-
-
-
-
-
-
-
-
- {t}Address{/t}
-
-
-
- {$info_postalAddress}
-
-
-
-
- {t}Phone{/t}
-
-
- {$info_telephoneNumber}
-
-
-
-
- {t}FAX{/t}
-
-
- {$info_facsimileTelephoneNumber}
-
-
-
-
- {t}Pager{/t}
-
-
- {$info_pager}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc b/gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc
deleted file mode 100644
index c466c255c..000000000
--- a/gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc
+++ /dev/null
@@ -1,885 +0,0 @@
-config= &$config;
-
- $this->base = $this->config->current['BASE'];
-
- /* Check if there is a special ldap-sub-tree specified, instead of dc=addressbook, */
- $aoc = $this->config->search("addressbook", "addressbookBaseDN",array('menu'));
- if ($aoc != ""){
- $this->abobjectclass = $aoc;
- }
-
- /* Get global filter config */
- if (!session::is_set("phonefilter")){
- $ui = get_userinfo();
- $base = get_base_from_people($ui->dn);
- $phonefilter= array(
- "search_base" => $base,
- "organizational" => "checked",
- "global" => "checked",
- "search_for" => "*",
- "object_type" => "*");
- session::set("phonefilter", $phonefilter);
- }
-
- $this->ui = get_userinfo();
- $this->acl_targets_objects = $this->ui->get_acl_target_objects();
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- $smarty= get_smarty();
-
- /* Prevent empty variables for smarty */
- foreach($this->attributes as $atr) {
- $smarty->assign($atr,"");
- }
-
- /* Save formular information */
- $phonefilter= session::get("phonefilter");
- foreach( array("search_for", "search_base", "object_type") as $type){
- if (isset($_POST[$type])){
- $phonefilter[$type]= $_POST[$type];
- }
- $this->$type= $phonefilter[$type];
- }
- if (isset($_POST['search_base'])){
- foreach( array("organizational", "global") as $type){
- if (isset($_POST[$type])){
- $phonefilter[$type]= "checked";
- } else {
- $phonefilter[$type]= "";
- }
- }
- }
-
- /* Search string */
- $s= $phonefilter['search_for'];
- if ($s == "") {
- $s= "*";
- }
- if (isset($_GET['search'])){
- $s= validate(mb_substr($_GET['search'], 0, 1, "UTF8"))."*";
- if ($s == "**"){
- $s= "*";
- }
- $this->search_for= $s;
- $phonefilter['search_for']= $s;
- }
- session::set("phonefilter", $phonefilter);
-
- /* Assign create acl */
- $acl = $this->get_entry_acls($this->base);
- $smarty->assign("internal_createable", preg_match("/c/",$acl));
-
- $acl = $this->get_entry_acls($this->dn);
- $smarty->assign("internal_removeable", preg_match("/d/",$acl));
- $smarty->assign("internal_editable", preg_match("/w/",$acl));
-
- /* Perform actions with CTI hook */
- if (isset($_GET['target'])
- && isset($_GET['dial'])
- && $this->config->get_cfg_value("ctiHook") != "" ){
-
- $dialmode= $_GET['dial'];
- if ($dialmode == "telephoneNumber" ||
- $dialmode == "mobile" ||
- $dialmode == "homePhone"){
-
- /* Get target */
- $ldap= $this->config->get_ldap_link();
- $ldap->cat(base64_decode($_GET['target']), array('telephoneNumber', 'mobile', 'homePhone'));
- $attrs= $ldap->fetch();
- if (isset($attrs["$dialmode"])){
- $target= $attrs[$dialmode][0];
- } else {
- $target= "";
- }
-
- /* Get source */
- $ui= get_userinfo();
- $ldap->cat($ui->dn, array('telephoneNumber'));
- $attrs= $ldap->fetch();
- if (isset($attrs["telephoneNumber"])){
- $source= $attrs['telephoneNumber'][0];
- } else {
- $source= "";
- }
-
- /* Save to session */
- session::set('source',$source);
- session::set('target',$target);
-
- /* Perform call */
- if ($target != "" && $source != ""){
- $smarty->assign("phone_image", get_template_path('plugins/addressbook/images/phone.png'));
- $smarty->assign("dial_info", sprintf(_("Dial from %s to %s now?"), "".$source." ", "".$target." "));
- return($smarty->fetch(get_template_path('dial.tpl', TRUE)));
- return;
- } else {
- msg_dialog::display(_("Error"), _("You need to set your personal phone number in order to perform direct dials."), ERROR_DIALOG);
- }
- }
-
- }
-
- /* Finally dial */
- if (isset($_POST['dial']) && session::is_set('source') && session::is_set('target')){
- exec ($this->config->get_cfg_value("ctiHook")." '".session::get('source')."' '".session::get('target')."'", $dummy, $retval);
- session::un_set('source');
- session::un_set('target');
- }
-
-
- /* Delete entry? */
- if (isset($_POST['delete_entry_confirm'])){
-
- /* Some nice guy may send this as POST, so we've to check
- for the permissions again. */
-
- $acl = $this->get_entry_acls($this->dn);
- if(preg_match("/d/",$acl)){
-
- /* Delete request is permitted, perform LDAP action */
- $ldap= $this->config->get_ldap_link();
- $ldap->rmdir ($this->dn);
- new log("remove","addressbook/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
- if (!$ldap->success()){
- msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class()));
- }
- new log("remove","addressbook/".get_class($this),$this->dn,array(),"Addressbook object'".$this->dn."' has been removed");
-
- } else {
-
- /* Normally this shouldn't be reached, send some extra
- logs to notify the administrator */
- msg_dialog::display(_("Permission"),permDelete($this->dn),ERROR_DIALOG);
- new log("remove","addressbook/".get_class($this),$this->dn,array(),"Warning: '".$this->ui->uid."' tried to trick address book deletion.");
- }
-
- /* Remove lock file after successfull deletion */
- del_lock ($this->dn);
-
- /* Clean up */
- if (session::is_set('saved_start')){
- $_GET['start']= session::get('saved_start');
- }
- session::un_set('show_info');
- session::un_set('saved_start');
- }
-
-
- /* Delete entry? */
- if (isset($_POST['delete_cancel'])){
- del_lock ($this->dn);
- }
-
-
- /* Save address entry? */
- if (isset($_POST['save'])){
- $this->save_object();
- $this->storage_base= $_POST['storage_base'];
-
- /* Perform checks */
- $message= $this->check ();
-
- /* No errors, save object */
- if (count ($message) == 0){
- $this->save();
-
- /* Clean up */
- if (session::is_set('saved_start')){
- $_GET['start']= session::get('saved_start');
- }
- session::set('show_info',$this->dn);
- session::un_set('saved_start');
- } else {
- /* Errors found, show message */
- msg_dialog::displayChecks($message);
- }
- }
-
-
- /* Close info window */
- if (isset($_GET['close']) || isset($_POST['cancel'])){
- if (session::is_set('saved_start')){
- $_GET['start']= session::get('saved_start');
- }
- session::un_set('show_info');
- session::un_set('saved_start');
- }
-
-
- /* Start address book edit mode? */
- if (isset($_GET['global'])){
- if (!session::is_set('saved_start') && isset($_GET['start'])){
- session::set('saved_start',$_GET['start']);
- }
- switch ($_GET['global']){
- case "add":
- $this->dn= "new";
- $this->orig_cn= "";
-
- /* Clean values */
- foreach ($this->attributes as $name){
- $this->$name= "";
- }
- $this->saved_attributes= array();
- $this->storage_base= $this->config->current["BASE"];
- break;
-
- case "edit":
- /* Clean values */
- foreach ($this->attributes as $name){
- $this->$name= "";
- }
- $this->dn= session::get('show_info');
- $this->load();
- $this->orig_cn= $this->cn;
- break;
- case "remove":
- $this->dn= session::get('show_info');
- $this->load();
-
- /* Load permissions for selected 'dn' and check if
- we're allowed to remove this 'dn' */
- $acl = $this->get_entry_acls($this->dn);
- if(preg_match("/d/",$acl)){
-
- /* Check locking, save current plugin in 'back_plugin', so
- the dialog knows where to return. */
- if (($user= get_lock($this->dn)) != ""){
- return(gen_locked_message ($user, $this->dn));
- }
-
- /* Lock the current entry, so nobody will edit it during deletion */
- $ui= get_userinfo();
- add_lock ($this->dn, $ui->dn);
- $smarty->assign("info", msgPool::deleteInfo($this->dn));
- return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
- } else {
-
- /* Obviously the user isn't allowed to delete. Show message and
- clean session. */
- msg_dialog::display(_("Permission"),permDelete($this->dn),ERROR_DIALOG);
- }
- }
- session::set('show_info',"ADD");
- }
-
-
- /* Open info window */
- if (isset($_GET['show'])){
- if (!session::is_set('saved_start')){
- session::set('saved_start',$_GET['start']);
- }
- $this->dn = base64_decode($_GET['show']);
- $this->view_logged =FALSE;
- if(!$this->view_logged){
- $this->view_logged = TRUE;
- new log("view","addressbook/".get_class($this),$this->dn);
- }
- session::set('show_info',base64_decode($_GET['show']));
- }
-
-
- /* Get ldap link / build filter */
- $ldap= $this->config->get_ldap_link();
- $this->telephone_list= array ();
-
-
- /* Assemble bases
- (Depending on checkboxes, we search for organisational entries or seperated
- adressbook entries within dc=adressbook, ) */
- $bases= array();
- $filter= "";
- if ($phonefilter['global'] == "checked"){
- $bases[]= preg_replace("/".$this->config->current['BASE']."/", $this->abobjectclass.",".$this->config->current['BASE'], $this->search_base);
- } else {
- $filter= '(objectClass=gosaAccount)';
- }
- if ($phonefilter['organizational'] == "checked"){
- $bases[]= $this->search_base;
- }
-
-
- /* Only display those entries that have at least on of this attributes set */
- $must_have_this = array("telephoneNumber","facsimileTelephoneNumber","mobile","homePhone","mail");
-
- /* Requested attributes in ldap search */
- $attributes = array("sn", "givenName", "telephoneNumber", "facsimileTelephoneNumber", "mobile", "homePhone", "uid", "mail", "cn");
-
- /* Create attribute filter part */
- $attribute_filter = "";
- foreach($attributes as $att){
- $attribute_filter .= "(".$att."=".$s.")";
- }
-
- /* Walk through bases an check for usable entries */
- foreach ($bases as $base){
-
- $ldap->cd ($base);
-
- if ($phonefilter['object_type'] == '*'){
- $ldap->search (
- "(&(objectClass=person)$filter(!(objectClass=gosaUserTemplate))". // Skip templates etc ..
- "(!(uid=*$))". // Skip entries with ...$ as uid
- "(|".$attribute_filter."))"
- ,$attributes);
- } else {
- $ldap->search ("(&$filter(!(uid=*$))(!(objectClass=gosaUserTemplate))". //array
- "(".$phonefilter['object_type']."=$s))", $attributes);
- }
-
- /* Walk through LDAP results */
- while ($attrs= $ldap->fetch()){
-
- /* prevent empty vaiables */
- foreach($this->attributes as $atr) {
- if(!isset($attrs[$atr][0])) {
- $attrs[$atr][0] = "";
- }
- }
-
- /* Check if page number was posted */
- if(!isset($_GET['start'])) {
- $_GET['start']="";
- }
-
- /* Check if at least one attribute is specified */
- $skip = false;
-
- foreach($must_have_this as $attr) {
- if(isset($attrs[$attr][0]) && !empty($attrs[$attr][0])){
- $skip =false;
- break;
- }
- }
-
- /* Skip all attributes that we are not allowed to read */
- $any = false;
- foreach($attributes as $attr){
-
- $acls = $this->get_entry_acls($attrs['dn'],$attr);
- if(!preg_match("/r/",$acls)){
- $attrs[$attr][0] = "";
- }else{
- $any = true;
- }
- }
-
- /* Only show lines that have set any mail or phone informations */
- if(!$skip && $any){
-
- $this->telephone_list[$attrs['sn'][0].$attrs['dn']]=
-
- "
- ".
- $attrs['sn'][0].", ".$attrs['givenName'][0].
- "
-
-
- ".$attrs['telephoneNumber'][0]."
-
-
-
- ".$attrs['facsimileTelephoneNumber'][0]."
-
-
- ".$attrs['mobile'][0]."
-
-
-
- ".$attrs['homePhone'][0]."
-
-
-
-
-
- ";
-
-
- if(preg_match("/r/",$this->get_entry_acls($attrs['dn'],"mail"))){
- if (isset($attrs['mail'][0]) && !empty($attrs['mail'][0])){
- $dest= sprintf(_("Send mail to %s"), $attrs['mail'][0]);
- $this->telephone_list[$attrs['sn'][0].$attrs['dn']].=
-
- "".
- " ";
- }
- }
- $this->telephone_list[$attrs['sn'][0].$attrs['dn']].= " ";
- }
- }
- error_reporting(E_ALL | E_STRICT);
- }
-
- /* Sort up list */
- ksort ($this->telephone_list);
- reset ($this->telephone_list);
-
- /* Fill template variables */
- $smarty->assign("search_for", $this->search_for);
- $smarty->assign("object_type", $this->object_type);
-
- /* Create list of readable departments */
- $deps = array();
- foreach($this->config->idepartments as $dn => $name){
- if(preg_match("/r/",$this->ui->get_permissions($dn,'users/user')) || $dn == $this->config->current['BASE']){
- $deps[$dn] = $name;
- }
- }
-
- $this->base = $phonefilter['search_base'];
- $smarty->assign("deplist", $deps);
- $smarty->assign("depselect", $this->search_base);
- $smarty->assign("global", $phonefilter['global']);
- $smarty->assign("organizational", $phonefilter['organizational']);
- $smarty->assign("search_image", get_template_path('images/lists/search.png'));
- $smarty->assign("obj_image", get_template_path('plugins/addressbook/images/objects.png'));
- $smarty->assign("tree_image", get_template_path('images/lists/search-subtree.png'));
- $smarty->assign("infoimage", get_template_path('images/info.png'));
- $smarty->assign("actionimage", get_template_path('images/action.png'));
- $smarty->assign("launchimage", get_template_path('images/launch.png'));
-
- /* Generate alphabet */
- $alphabet= generate_alphabet();
-
- /* Build list output */
- $output= "";
- $mod= 0;
-
-
- /* View detailed infos */
- $smarty->assign("show_info", "");
- if (session::is_set('show_info')){
-
- $range= 4;
- $smarty->assign("show_info", "1");
- $smarty->assign("url", "main.php?plug=".validate($_GET['plug'])."&close=1");
-
- $tmp = $this->plInfo();
-
- if(isset($_POST['storage_base'])){
- $this->storage_base = $_POST['storage_base'];
- }
-
- switch (session::get('show_info')){
-
- case "ADD":
-
- $a_bases = $this->get_allowed_bases();
-
- if(!isset($a_bases[$this->storage_base])){
- $base = key($this->get_allowed_bases());
- $this->storage_base = $base;
- }
-
- $smarty->assign ('storage_base', $this->storage_base);
- $smarty->assign ('address_info', get_template_path('address_edit.tpl', TRUE));
-
- foreach($tmp['plProvidedAcls'] as $name => $translated){
- $smarty->assign($name."ACL",$this->get_entry_acls($this->abobjectclass.",".$base,$name));
- }
- break;
-
- default:
- $smarty->assign ('address_info', get_template_path('address_info.tpl', TRUE));
- foreach($tmp['plProvidedAcls'] as $name => $translated){
- $smarty->assign($name."ACL",$this->get_entry_acls($this->dn,$name));
- }
- break;
- }
-
- /* Fill variables from LDAP */
- if (session::get('show_info') != "ADD"){
- $ldap->cat(session::get('show_info'), $this->attributes);
- $info= $ldap->fetch();
- }
- foreach ($this->attributes as $name){
-
- $dn = $this->dn;
- if($dn == "new") $dn = $this->base;
-
- /* Skip entries we are not allowed to read */
- if(!preg_match("/r/",$this->get_entry_acls($dn,$name))){
- $smarty->assign("info_$name", "");
- }else
-
- if (session::get('show_info') != "ADD" && isset($info["$name"][0])){
- error_reporting(0);
- /* Special treatment for phone attributes */
- if ($name == "mobile" ||
- $name == "homePhone" ||
- $name == "telephoneNumber"){
- $smarty->assign("info_$name",
- "".$info["$name"][0]." ");
- } else {
- $smarty->assign("info_$name", preg_replace("/\n/", " ", $info["$name"][0]));
- }
- error_reporting(E_ALL | E_STRICT);
- } elseif (session::get('show_info') == "ADD" && isset($this->$name)) {
- $smarty->assign("info_$name", $this->$name);
- } else {
- $smarty->assign("info_$name", "-");
- }
- }
- if (preg_match("/,".$this->abobjectclass.",/", session::get('show_info'))){
- $storage= _("global addressbook");
- $smarty->assign("internal", 0);
- } else {
- $storage= _("user database");
- $smarty->assign("internal", 1);
- }
- if (session::get('show_info') != "ADD"){
- $smarty->assign("storage_info", sprintf(_("Contact stored in '%s'"), $storage));
- } else {
- $smarty->assign("storage_info", _("Creating new entry in"));
- }
- } else {
-
-
- if(isset($_POST['EntryPerPage'])){
- $this->range = $_POST['EntryPerPage'];
- }
- $range = $this->range;
- $smarty->assign("internal", 1);
- }
- if (isset($_GET['start'])){
- $this->start= validate($_GET['start']);
- }
- foreach ($this->telephone_list as $val){
- if ($mod < $this->start) {
- $mod++;
- continue;
- }
- if ($mod >= ($this->start + $range)){
- $mod++;
- break;
- }
- $mod++;
- $output.= "\n$val \n";
- }
-
- $smarty->assign("search_result", $output);
- $smarty->assign("apply", apply_filter());
- $smarty->assign("alphabet", $alphabet);
- if($range < 20){
- $smarty->assign("range_selector", range_selector(count($this->telephone_list), $this->start, $range));
- }else{
- $smarty->assign("range_selector", range_selector(count($this->telephone_list), $this->start, $range, "EntryPerPage"));
- }
- $tmp= array("*" => _("All"), "sn" => _("Name"), "givenName" => _("Given name"),
- "telephoneNumber" => _("Work phone"), "mobile" => _("Cell phone"),
- "homePhone" => _("Home phone"), "uid" => _("User ID"));
- natsort($tmp);
- $smarty->assign("objlist", $tmp);
-
- /* Show main page */
- $smarty->assign ('personal_image', get_template_path('plugins/addressbook/images/addr_personal.png'));
- $smarty->assign ('home_image', get_template_path('plugins/addressbook/images/addr_home.png'));
- $smarty->assign ('company_image', get_template_path('plugins/addressbook/images/addr_company.png'));
- $smarty->assign ('add_image', get_template_path('images/lists/paste.png'));
- $smarty->assign ('edit_image', get_template_path('images/lists/edit.png'));
- $smarty->assign ('delete_image', get_template_path('images/lists/delete.png'));
- return($smarty->fetch(get_template_path('contents.tpl', TRUE)));
- }
-
- function save_object()
- {
- plugin::save_object();
- foreach($this->attributes as $attr){
-
- /* save attributes depending on acls */
- $acl = $this->get_entry_acls($this->dn,$attr);
-
- if(preg_match("/w/",$acl)){
- if(isset($_POST[$attr])){
- $this->$attr = $_POST[$attr];
- }
- }
-
- }
- }
-
- function check()
- {
- /* Call common method to give check the hook */
- $message= plugin::check();
-
- /* must: sn, givenName */
- if ($this->sn == ""){
- $message[] = msgPool::required(_("Name"));
- return ($message);
- }
- if ($this->givenName == ""){
- $message[] = msgPool::required(_("Given name"));
- return ($message);
- }
-
- /* Check for valid name definition */
- if (preg_match ("/[\\\\]/", $this->sn)){
- $message[] = msgPool::invalid(_("Name"),$this->sn,"/[\\\\]");
- }
- if (preg_match ("/[\\\\]/", $this->givenName)){
- $message[] = msgPool::invalid(_("Given name"),$this->givenName,"/[\\\\]");
- }
-
- /* Check phone numbers */
- if (!tests::is_phone_nr($this->homePhone)){
- $message[] = msgPool::invalid(_("Phone"),$this->homePhone);
- }
- if (!tests::is_phone_nr($this->telephoneNumber)){
- $message[] = msgPool::invalid(_("Telephone number"),$this->telephoneNumber);
- }
- if (!tests::is_phone_nr($this->facsimileTelephoneNumber)){
- $message[] = msgPool::invalid(_("Fax"),$this->facsimileTelephoneNumber);
- }
- if (!tests::is_phone_nr($this->mobile)){
- $message[] = msgPool::invalid(_("Mobile"),$this->mobile);
- }
- if (!tests::is_phone_nr($this->pager)){
- $message[] = msgPool::invalid(_("Pager"),$this->pager);
- }
- /* Check for reserved characers */
- if (preg_match ('/[,+"<>;]/', $this->givenName)){
- $message[] = msgPool::invalid(_("Given name"),$this->givenName,'/[,+"<>;]/');
- }
- if (preg_match ('/[,+"<>;]/', $this->sn)){
- $message[] = msgPool::invalid(_("Name"),$this->sn,'/[,+"<>;]/');
- }
-
- /* Check mail */
- if (!tests::is_email($this->mail)){
- $message[] = msgPool::invalid(_("Email"),"","","your-domain@your-domain.com");
- }
-
- /* Assemble cn/dn */
- $this->cn= $this->givenName." ".$this->sn;
- if ($this->orig_cn != $this->cn || $this->storage_base != $this->orig_storage_base){
- $this->new_dn= $this->create_unique_dn("cn", preg_replace("/,*".$this->config->current['BASE']."$/", "", $this->storage_base).",".$this->abobjectclass.",".$this->config->current['BASE']);
- if ($this->new_dn == "none"){
- $message[]= _("Cannot create a unique DN for your entry. Please fill more formular fields.");
- return ($message);
- }
- } else {
- $this->new_dn= $this->dn;
- }
-
- return ($message);
- }
-
-
- function load()
- {
- /* Load base attributes */
- plugin::plugin ($this->config, $this->dn);
- $this->view_logged = FALSE;
- $this->storage_base= preg_replace('/^[^,]+,/', '', preg_replace('/'.$this->abobjectclass.',/', '', $this->dn));
- }
-
-
- function save()
- {
- /* First use parents methods to do some basic fillup in $this->attrs */
- plugin::save ();
-
- $this->attrs['cn']= $this->cn;
- $this->attrs['displayName']= $this->givenName." ".$this->sn;
-
- /* Move entry if it got another name... */
- if ($this->dn != "new" && $this->dn != $this->new_dn){
- $this->move($this->dn, $this->new_dn);
- }
- $this->dn= $this->new_dn;
-
- /* Save data. Using 'modify' implies that the entry is already present, use 'add' for
- new entries. So do a check first... */
- $ldap= $this->config->get_ldap_link();
- $ldap->cat ($this->dn,array('dn'));
- if ($ldap->fetch()){
- $mode= "modify";
- } else {
- $mode= "add";
- $ldap->cd($this->config->current['BASE']);
- $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
- }
-
- /* Finally write data with selected 'mode' */
- $ldap->cd ($this->dn);
- $this->cleanup();
- $ldap->$mode ($this->attrs);
- if (!$ldap->success()){
- msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class()));
- return (1);
- }
-
- if($mode == "add"){
- new log("create","addressbook/".get_class($this),$this->dn, array_keys($this->attrs),$ldap->get_error());
- }else{
- new log("modify","addressbook/".get_class($this),$this->dn, array_keys($this->attrs),$ldap->get_error());
- }
- }
-
-
- /* Return entry acls */
- function get_entry_acls($dn,$attr = "")
- {
- $acls = "";
- $combineACLs = FALSE;
-
- /* If combineACLs is set to false:
- Differentiate between user and addressbook acls, thus leads into two object categories.
- - real GOsa users
- - and addressbook entries
- To view addressbook entries (e.g. ou=addressbook,) you just require permissions on the ldap base for 'addressbook'.
- To view real GOsa users you have to additionally add user permissions.
-
- You can enable this option, to use only addressbook acls.
- */
- if($combineACLs){
- $dn = preg_replace("/".preg_quote($this->abobjectclass, '/').",/","",$dn);
- $acls = $this->ui->get_permissions($dn,"addressbook/addressbook",$attr);
- }else{
-
- /* Use addressbook acls */
- if(preg_match("/".preg_quote($this->abobjectclass, '/')."/",$dn)) {
- $acls = "";
- foreach($this->acl_targets_objects as $path){
- $acls .= $this->ui->get_permissions($path,"addressbook/addressbook",$attr);
- }
- }
-
- /* Use Organizational Person acls */
- else{
- $acls = $this->ui->get_permissions($dn,"addressbook/addressbookgosa",$attr);
- }
- }
-
- return($acls);
- }
-
-
- /* Return plugin informations for acl handling */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("Addressbook")." - "._("Addressbook entries"),
- "plDescription" => _("Addressbook")." - "._("Addressbook related objects"),
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 0,
- "plSection" => array("addon" => _("Addons")),
- "plCategory" => array("addressbook" => array("objectClass" => "inetOrgPerson", "description" => _("Addressbook"))),
-
- "plProvidedAcls" => array(
- "sn" => _("Surename"),
- "givenName" => _("Given name"),
- "telephoneNumber" => _("Telefon number"),
- "facsimileTelephoneNumber" => _("Fax number"),
- "mobile" => _("Mobile number"),
- "homePhone" => _("Home phone number"),
- "uid" => _("User identification"),
- "mail" => _("Mail address"),
- "pager" => _("Pager"),
- "o" => _("Organization"),
- "ou" => _("Department"),
- "l" => _("Location"),
- "postalAddress" => _("Postal address"),
- "postalCode" => _("Postal address"),
- "st" => _("State"),
- "initials" => _("Initials"),
- "title" => _("Title"),
- "homePostalAddress" => _("Home postal address"),
- "cn" => _("Common name"))
- ));
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/addressbook/addons/addressbook/contents.tpl b/gosa-plugins/addressbook/addons/addressbook/contents.tpl
deleted file mode 100644
index 4aef36f69..000000000
--- a/gosa-plugins/addressbook/addons/addressbook/contents.tpl
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
-
{t}System logs{/t}
-
-
-
-
-
{t}Actions{/t}
-
-
-
- {if $internal_createable}
- {image path='images/lists/element.png[new]'}
-
{t}Add entry{/t}
-
- {/if}
-
- {if $internal eq 0}
-
- {if $internal_editable}
- {image path='images/lists/edit.png'}
-
{t}Edit entry{/t}
-
- {/if}
-
- {if $internal_removeable}
- {image path='images/lists/trash.png'}
-
{t}Remove entry{/t}
-
- {/if}
-
- {/if}
-
-
-
-
-
-
-
- {$search_result}
-
-
-
-
-
- {if $show_info eq 1}
- {include file=$address_info}
- {/if}
-
-
-
diff --git a/gosa-plugins/addressbook/addons/addressbook/dial.tpl b/gosa-plugins/addressbook/addons/addressbook/dial.tpl
deleted file mode 100644
index 196767bbd..000000000
--- a/gosa-plugins/addressbook/addons/addressbook/dial.tpl
+++ /dev/null
@@ -1,20 +0,0 @@
-
diff --git a/gosa-plugins/addressbook/addons/addressbook/main.inc b/gosa-plugins/addressbook/addons/addressbook/main.inc
deleted file mode 100644
index 0c795afc0..000000000
--- a/gosa-plugins/addressbook/addons/addressbook/main.inc
+++ /dev/null
@@ -1,45 +0,0 @@
- set_acl_base($ui->dn);
- $addressbook -> set_acl_category("addressbook");
- session::set('addressbook',$addressbook);
- session::un_set('show_info');
- }
- $addressbook= session::get('addressbook');
-
- /* Execute formular */
- $display= $addressbook->execute ();
- $display.= " \n";
-
- /* Store changes in session */
- session::set('addressbook',$addressbook);
-}
-?>
diff --git a/gosa-plugins/addressbook/addons/addressbook/remove.tpl b/gosa-plugins/addressbook/addons/addressbook/remove.tpl
deleted file mode 100644
index 72e841f7a..000000000
--- a/gosa-plugins/addressbook/addons/addressbook/remove.tpl
+++ /dev/null
@@ -1,21 +0,0 @@
-
- {image path="images/warning.png" align="top"} {t}Warning{/t}
-
-
-
- {$info}
- {t}This includes all addressbook data in this entry. Please double check if your really want to do this since there is no way for GOsa to get your data back.{/t}
-
-
-
- {t}So - if you're sure - press 'Delete' to continue or 'Cancel' to abort.{/t}
-
-
-
-
- {msgPool type=delButton}
-
- {msgPool type=cancelButton}
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/WARNINGS b/gosa-plugins/addressbook/help/de/html/addressbook/WARNINGS
deleted file mode 100644
index 5ae6e75ec..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/WARNINGS
+++ /dev/null
@@ -1,3 +0,0 @@
-No implementation found for style `fontenc'
-No implementation found for style `graphicx'
-There is no author for this document.
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/action.png b/gosa-plugins/addressbook/help/de/html/addressbook/action.png
deleted file mode 100644
index 21d5e2f82..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/action.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/addressbook.css b/gosa-plugins/addressbook/help/de/html/addressbook/addressbook.css
deleted file mode 100644
index dfc5a9105..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/addressbook.css
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Century Schoolbook font is very similar to Computer Modern Math: cmmi */
-.MATH { font-family: "Century Schoolbook", serif; }
-.MATH I { font-family: "Century Schoolbook", serif; font-style: italic }
-.BOLDMATH { font-family: "Century Schoolbook", serif; font-weight: bold }
-
-/* implement both fixed-size and relative sizes */
-SMALL.XTINY { font-size : xx-small }
-SMALL.TINY { font-size : x-small }
-SMALL.SCRIPTSIZE { font-size : smaller }
-SMALL.FOOTNOTESIZE { font-size : small }
-SMALL.SMALL { }
-BIG.LARGE { }
-BIG.XLARGE { font-size : large }
-BIG.XXLARGE { font-size : x-large }
-BIG.HUGE { font-size : larger }
-BIG.XHUGE { font-size : xx-large }
-
-/* heading styles */
-H1 { }
-H2 { }
-H3 { }
-H4 { }
-H5 { }
-
-/* mathematics styles */
-DIV.displaymath { } /* math displays */
-TD.eqno { } /* equation-number cells */
-
-
-/* document-specific styles come next */
-DIV.navigation { }
-SPAN.textit { font-style: italic }
-SPAN.arabic { }
-SPAN.textbf { font-weight: bold }
-#hue63 { color: #000000; }
-#hue82 { color: #000000; }
-#hue85 { color: #ff0000; }
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/addressbook.html b/gosa-plugins/addressbook/help/de/html/addressbook/addressbook.html
deleted file mode 100644
index 2507379a1..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/addressbook.html
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-Zusätzliches
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Zusätzliches
-
-
-
-
-
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/closedlock.png b/gosa-plugins/addressbook/help/de/html/addressbook/closedlock.png
deleted file mode 100644
index 04a05c1cb..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/closedlock.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/dtree.png b/gosa-plugins/addressbook/help/de/html/addressbook/dtree.png
deleted file mode 100644
index 7eb790996..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/dtree.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/index.html b/gosa-plugins/addressbook/help/de/html/addressbook/index.html
deleted file mode 100644
index 2507379a1..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/index.html
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-Zusätzliches
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Zusätzliches
-
-
-
-
-
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/labels.pl b/gosa-plugins/addressbook/help/de/html/addressbook/labels.pl
deleted file mode 100644
index 34bd4cc1b..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/labels.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-# LaTeX2HTML 2002-2-1 (1.71)
-# Associate labels original text with physical files.
-
-
-1;
-
-
-# LaTeX2HTML 2002-2-1 (1.71)
-# labels from external_latex_labels array.
-
-
-1;
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/list_ogroup.png b/gosa-plugins/addressbook/help/de/html/addressbook/list_ogroup.png
deleted file mode 100644
index e50de8b71..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/list_ogroup.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/mailto.png b/gosa-plugins/addressbook/help/de/html/addressbook/mailto.png
deleted file mode 100644
index a0bc51c65..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/mailto.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node1.html b/gosa-plugins/addressbook/help/de/html/addressbook/node1.html
deleted file mode 100644
index 5e5a46195..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node1.html
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
-
-Adressbuch
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Das Adressbuch dient dazu, die Adressdaten sowohl der verwalteten
-Benutzer, als auch zusätzlicher Personen/Organisationen zentral zugängig
-zu machen. Um Einträge zu erstellen oder bestehende Einträge zu verändern
-(natürlich auch zur Einsicht), drücken Sie auf den Knopf Adressbuch
-aus der Kategorie Zusätzliches (Menü am linken Rand des Bildschirms).
-Bei Auswahl wird das Adressbuch angezeigt. Es finden sich die Spalten
-Name, Telefon, Fax, Mobiltelefon, Privat sowie die Spalte Kontakt.
-Die letztgenannte Spalte verfügt über die folgenden Knöpfe:
-
-
-
-
- : Speichert bei Auswahl den Kontakt
-als vcard-Datei.
-
- : Ermöglicht bei Auswahl das Senden
-einer Email an den Kontakt (sofern eine Email-Adresse angegeben ist).
-
-
-
-
-
-Um einen Benutzer auszuwählen, klicken Sie auf seinen Namen - Sie
-befinden sich in der Detailansicht des Benutzers.
-
-
-Um einen Eintrag zu erstellen, drücken Sie auf den Knopf Eintrag
-hinzufügen aus dem Menü Aktionen
-am rechten Rand der Seite.
-
-
-
-
-
-
-
-
-Subsections
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node2.html b/gosa-plugins/addressbook/help/de/html/addressbook/node2.html
deleted file mode 100644
index 6085d7532..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node2.html
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-
-Hinweis: Die Adressdaten bestehender Benutzer können hier
-nicht verändert werden.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Es ist weiterhin möglich, die Anzeige der Benutzer mithilfe von Filter
-einzuschränken - zu diesem Zweck dient der Kasten Filter
-am rechten Rand der Seite:
-
-
-
-Nach Namen suchen:
-
-
-
-
-Klick auf * zeigt alle Einträge an
-
-Klick auf einen Buchstaben zeigt alle Einträge an, deren Name mit
-dem gewählten Buchstaben beginnt
-
-Klick auf eine Ziffer zeigt alle Einträge an, deren Name mit der gewählten
-Ziffer beginnt
-
-
-
-Weitere Suchoptionen:
-
-
-
-
-Wählen Sie 'Zeige Benutzer der Organisation ' um die Einträge
-der regulären Benutzer anzuzeigen.
-
-Wählen 'Zeige Adressbuch-Einträge ' um die Einträge des Adressbuch
-anzuzeigen.
-
- : Beschränken Sie die Anzeige auf die
-gewählte Abteilung
-
- : Wählen Sie das Feld, auf das
-die Suche angewendet werden soll
-
-
-* Komplexere Einschränkungen über reguläre Ausdrücke bietet das
-Textfeld im unteren Bereich des Kastens Filter (beginnt mit dem Symbol
- ). In dieses Feld können Sie beliebige
-Buchstaben/Ziffern-Kombinationen eingeben, um die Suche einzuschränken.
-Um die Suchergebnisse in der Liste anzeigen zu lassen, Klicken Sie
-auf Filter anwenden .
-
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node3.html b/gosa-plugins/addressbook/help/de/html/addressbook/node3.html
deleted file mode 100644
index de344d92d..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node3.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-Generelle Informationen
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Um die Bearbeitung eines Eintrags (auch eines neuen Eintrags) abzuschliessen,
-drücken Sie den Knopf Speichern unten rechts; Um den Vorgang
-zu verwerfen, drücken Sie auf den Knopf Abbrechen , der sich
-ebenfalls unten rechts befindet.
-
-Alle Felder, die mit einem roten Sternchen * enden,
-sind Pflichtfelder und müssen daher zwingend ausgefüllt werden.
-
-Das Symbol zeigt an, dass Sie
-sich im sicheren Modus befinden.
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node4.html b/gosa-plugins/addressbook/help/de/html/addressbook/node4.html
deleted file mode 100644
index 91e2e8f79..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node4.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-Eintrag hinzufügen
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Wenn Sie den Knopf Eintrag hinzufügen gedrückt haben, wird
-die Oberfläche für das Erzeugen eines neuen Eintrags geladen. Auf
-dieser Seite können Sie verschiedene Eingaben treffen - zunächst sollten
-Sie jedoch die Abteilung auswählen, in der dieser Benutzer gespeichert
-werden soll (Hinweis : der gespeicherte Eintrag hat keinerlei
-Verbindung zu den gespeicherten Benutzern - er ist lediglich ein Adresseintrag
-im Adressbuch der Organisation).
-
-
-
-
-Subsections
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node5.html b/gosa-plugins/addressbook/help/de/html/addressbook/node5.html
deleted file mode 100644
index 3e8b8f3f2..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node5.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-Persönlich
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Vorname *
-Der Vorname des Kontakts
-
-Nachname *
-Der Nachname des Kontakts
-
-Initialen
-Die Initialen des Kontakts
-
-Titel
-Akademischer Titel des Kontakts
-
-
-
-
-
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node6.html b/gosa-plugins/addressbook/help/de/html/addressbook/node6.html
deleted file mode 100644
index e9c214909..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node6.html
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-Privat
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Adresse
-Die private Anschrift des Kontakts
-
-Telefon
-Die private Telefonnummer des Kontakts
-
-Mobiltelefon
-Die private Mobil-Nummer des Kontakts
-
-Email
-Die Email-Adresse des Kontakts
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node7.html b/gosa-plugins/addressbook/help/de/html/addressbook/node7.html
deleted file mode 100644
index 1805f3f81..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node7.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-Organisationsbezogen
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Firma
-Firmenname des Kontakts
-
-Abteilung
-Die Abteilung des Kontakts
-
-Stadt
-Die Stadt der Firma
-
-Postleitzahl
-Die Postleitzahl der Firma
-
-Land
-Das Land der Firma
-
-Adresse
-Die geschäftliche Anschrift des Kontakts
-
-Telefon
-Die geschäftliche Telefonnummer des Kontakts
-
-Fax
-Die geschäftliche Faxnummer des Kontakts
-
-Pager
-Die geschäftliche Pagernummer des Kontakts
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/node8.html b/gosa-plugins/addressbook/help/de/html/addressbook/node8.html
deleted file mode 100644
index 40f48d1a7..000000000
--- a/gosa-plugins/addressbook/help/de/html/addressbook/node8.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-About this document ...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Zusätzliches
-This document was generated using the
-LaTeX 2HTML translator Version 2002-2-1 (1.71)
-
-Copyright © 1993, 1994, 1995, 1996,
-Nikos Drakos ,
-Computer Based Learning Unit, University of Leeds.
-
-Copyright © 1997, 1998, 1999,
-Ross Moore ,
-Mathematics Department, Macquarie University, Sydney.
-
-The command line arguments were:
- latex2html -no_navigation -dir ../html/addressbook/ addressbook.tex
-
-The translation was initiated by Jan Wenzel on 2008-03-13
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/rocket.png b/gosa-plugins/addressbook/help/de/html/addressbook/rocket.png
deleted file mode 100644
index 838c38bf1..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/rocket.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/save.png b/gosa-plugins/addressbook/help/de/html/addressbook/save.png
deleted file mode 100644
index 6a9adc13c..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/save.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/html/addressbook/search.png b/gosa-plugins/addressbook/help/de/html/addressbook/search.png
deleted file mode 100644
index 593a56634..000000000
Binary files a/gosa-plugins/addressbook/help/de/html/addressbook/search.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/addressbook.lyx b/gosa-plugins/addressbook/help/de/lyx-source/addressbook.lyx
deleted file mode 100644
index 8f7e31699..000000000
--- a/gosa-plugins/addressbook/help/de/lyx-source/addressbook.lyx
+++ /dev/null
@@ -1,600 +0,0 @@
-#LyX 1.3 created this file. For more info see http://www.lyx.org/
-\lyxformat 221
-\textclass article
-\language ngerman
-\inputencoding auto
-\fontscheme default
-\graphics default
-\paperfontsize default
-\spacing single
-\papersize a4paper
-\paperpackage a4
-\use_geometry 0
-\use_amsmath 1
-\use_natbib 0
-\use_numerical_citations 0
-\paperorientation portrait
-\leftmargin 10mm
-\topmargin 10mm
-\rightmargin 10mm
-\bottommargin 20mm
-\headheight 10mm
-\headsep 10mm
-\footskip 10mm
-\secnumdepth 3
-\tocdepth 3
-\paragraph_separation indent
-\defskip medskip
-\quotes_language english
-\quotes_times 2
-\papercolumns 1
-\papersides 1
-\paperpagestyle default
-
-\layout Title
-
-
-\series bold
-Zusätzliches
-\layout Section
-
-Adressbuch
-\layout Standard
-
-Das Adressbuch dient dazu, die Adressdaten sowohl der verwalteten Benutzer,
- als auch zusätzlicher Personen/Organisationen zentral zugängig zu machen.
- Um Einträge zu erstellen oder bestehende Einträge zu verändern (natürlich
- auch zur Einsicht), drücken Sie auf den Knopf
-\series bold
-\color blue
-Adressbuch
-\series default
-\color default
- aus der Kategorie
-\series bold
-Zusätzliches
-\series default
- (Menü am linken Rand des Bildschirms).
- Bei Auswahl wird das Adressbuch angezeigt.
- Es finden sich die Spalten Name, Telefon, Fax, Mobiltelefon, Privat sowie
- die Spalte Kontakt.
- Die letztgenannte Spalte verfügt über die folgenden Knöpfe:
-\layout Itemize
-
-
-\begin_inset Graphics
- filename images/save.png
-
-\end_inset
-
-: Speichert bei Auswahl den Kontakt als vcard-Datei.
-\layout Itemize
-
-
-\begin_inset Graphics
- filename images/mailto.png
-
-\end_inset
-
-: Ermöglicht bei Auswahl das Senden einer Email an den Kontakt (sofern eine
- Email-Adresse angegeben ist).
-\begin_deeper
-\layout Standard
-\added_space_top defskip
-Um einen Benutzer auszuwählen, klicken Sie auf seinen Namen - Sie befinden
- sich in der Detailansicht des Benutzers.
-\layout Standard
-
-Um einen Eintrag zu erstellen, drücken Sie auf den Knopf
-\emph on
-Eintrag hinzufügen
-\emph default
- aus dem Menü Aktionen
-\begin_inset Graphics
- filename images/action.png
-
-\end_inset
-
- am rechten Rand der Seite.
-\end_deeper
-\layout Subsection*
-
-Hinweis:
-\series medium
- Die Adressdaten bestehender Benutzer können hier nicht verändert werden.
-\layout Standard
-
-Es ist weiterhin möglich, die Anzeige der Benutzer mithilfe von Filter einzuschr
-änken - zu diesem Zweck dient der Kasten Filter
-\color black
-
-\begin_inset Graphics
- filename images/rocket.png
-
-\end_inset
-
- am rechten Rand der Seite:
-\layout Itemize
-
-Nach Namen suchen:
-\begin_deeper
-\layout Itemize
-
-Klick auf * zeigt alle Einträge an
-\layout Itemize
-
-Klick auf einen Buchstaben zeigt alle Einträge an, deren Name mit dem gewählten
- Buchstaben beginnt
-\layout Itemize
-
-Klick auf eine Ziffer zeigt alle Einträge an, deren Name mit der gewählten
- Ziffer beginnt
-\end_deeper
-\layout Itemize
-
-Weitere Suchoptionen:
-\begin_deeper
-\layout Itemize
-
-Wählen Sie '
-\emph on
-Zeige Benutzer der Organisation
-\emph default
-' um die Einträge der regulären Benutzer anzuzeigen.
-\layout Itemize
-
-Wählen '
-\emph on
-Zeige Adressbuch-Einträge
-\emph default
-' um die Einträge des Adressbuch anzuzeigen.
-\layout Itemize
-
-
-\begin_inset Graphics
- filename images/dtree.png
-
-\end_inset
-
-: Beschränken Sie die Anzeige auf die gewählte Abteilung
-\layout Itemize
-
-
-\begin_inset Graphics
- filename images/list_ogroup.png
-
-\end_inset
-
-: Wählen Sie das Feld, auf das die Suche angewendet werden soll
-\layout Standard
-
-* Komplexere Einschränkungen über reguläre Ausdrücke bietet das Textfeld
- im unteren Bereich des Kastens Filter (beginnt mit dem Symbol
-\begin_inset Graphics
- filename images/search.png
-
-\end_inset
-
-).
- In dieses Feld können Sie beliebige Buchstaben/Ziffern-Kombinationen eingeben,
- um die Suche einzuschränken.
- Um die Suchergebnisse in der Liste anzeigen zu lassen, Klicken Sie auf
-
-\emph on
-Filter anwenden
-\emph default
-.
-\end_deeper
-\layout Subsection*
-
-Generelle Informationen
-\layout Itemize
-
-Um die Bearbeitung eines Eintrags (auch eines neuen Eintrags) abzuschliessen,
- drücken Sie den Knopf
-\emph on
-Speichern
-\emph default
- unten rechts; Um den Vorgang zu verwerfen, drücken Sie auf den Knopf
-\emph on
-Abbrechen
-\emph default
-, der sich ebenfalls unten rechts befindet.
-\layout Itemize
-
-Alle Felder, die mit einem roten Sternchen
-\color red
-*
-\color default
- enden, sind Pflichtfelder und müssen daher zwingend ausgefüllt werden.
-\layout Itemize
-
-Das Symbol
-\begin_inset Graphics
- filename images/closedlock.png
-
-\end_inset
-
- zeigt an, dass Sie sich im sicheren Modus befinden.
-\layout Subsection
-\pagebreak_top
-Eintrag hinzufügen
-\layout Standard
-
-Wenn Sie den Knopf
-\emph on
-Eintrag hinzufügen
-\emph default
- gedrückt haben, wird die Oberfläche für das Erzeugen eines neuen Eintrags
- geladen.
- Auf dieser Seite können Sie verschiedene Eingaben treffen - zunächst sollten
- Sie jedoch die Abteilung auswählen, in der dieser Benutzer gespeichert
- werden soll (
-\series bold
-Hinweis
-\series default
-: der gespeicherte Eintrag hat keinerlei Verbindung zu den gespeicherten
- Benutzern - er ist lediglich ein Adresseintrag im Adressbuch der Organisation).
-\layout Subsubsection
-
-Persönlich
-\layout Standard
-
-
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-
-\color black
-Vorname
-\color red
-*
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Der Vorname des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-
-\color black
-Nachname
-\color red
-*
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Der Nachname des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Initialen
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die Initialen des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Titel
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Akademischer Titel des Kontakts
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\layout Subsubsection
-\added_space_top medskip
-Privat
-\layout Standard
-
-
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Adresse
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die private Anschrift des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Telefon
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die private Telefonnummer des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Mobiltelefon
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die private Mobil-Nummer des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Email
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die Email-Adresse des Kontakts
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\layout Subsubsection
-
-Organisationsbezogen
-\layout Standard
-
-
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Firma
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Firmenname des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Abteilung
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die Abteilung des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Stadt
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die Stadt der Firma
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Postleitzahl
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die Postleitzahl der Firma
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Land
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Das Land der Firma
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Adresse
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die geschäftliche Anschrift des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Telefon
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die geschäftliche Telefonnummer des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Fax
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die geschäftliche Faxnummer des Kontakts
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Pager
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Die geschäftliche Pagernummer des Kontakts
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\the_end
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/action.png b/gosa-plugins/addressbook/help/de/lyx-source/images/action.png
deleted file mode 100644
index 21d5e2f82..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/action.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/closedlock.png b/gosa-plugins/addressbook/help/de/lyx-source/images/closedlock.png
deleted file mode 100644
index 04a05c1cb..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/closedlock.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/dtree.png b/gosa-plugins/addressbook/help/de/lyx-source/images/dtree.png
deleted file mode 100644
index 7eb790996..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/dtree.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/editpaste.png b/gosa-plugins/addressbook/help/de/lyx-source/images/editpaste.png
deleted file mode 100644
index 636a4c5a0..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/editpaste.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/list_ogroup.png b/gosa-plugins/addressbook/help/de/lyx-source/images/list_ogroup.png
deleted file mode 100644
index e50de8b71..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/list_ogroup.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/mailto.png b/gosa-plugins/addressbook/help/de/lyx-source/images/mailto.png
deleted file mode 100644
index a0bc51c65..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/mailto.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/rocket.png b/gosa-plugins/addressbook/help/de/lyx-source/images/rocket.png
deleted file mode 100644
index 838c38bf1..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/rocket.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/save.png b/gosa-plugins/addressbook/help/de/lyx-source/images/save.png
deleted file mode 100644
index 6a9adc13c..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/save.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/de/lyx-source/images/search.png b/gosa-plugins/addressbook/help/de/lyx-source/images/search.png
deleted file mode 100644
index 593a56634..000000000
Binary files a/gosa-plugins/addressbook/help/de/lyx-source/images/search.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/WARNINGS b/gosa-plugins/addressbook/help/en/html/addressbook/WARNINGS
deleted file mode 100644
index e6a7e599d..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/WARNINGS
+++ /dev/null
@@ -1,5 +0,0 @@
-No implementation found for style `fontenc'
-No implementation found for style `geometry'
-No implementation found for style `graphicx'
-
-There is no author for this document.
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/action.png b/gosa-plugins/addressbook/help/en/html/addressbook/action.png
deleted file mode 100644
index 21d5e2f82..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/action.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/addressbook.css b/gosa-plugins/addressbook/help/en/html/addressbook/addressbook.css
deleted file mode 100644
index 8b42a4746..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/addressbook.css and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/addressbook.html b/gosa-plugins/addressbook/help/en/html/addressbook/addressbook.html
deleted file mode 100644
index d25a91ea2..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/addressbook.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-ADDONS
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ADDONS
-
-
-
-
-
-
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/closedlock.png b/gosa-plugins/addressbook/help/en/html/addressbook/closedlock.png
deleted file mode 100644
index 04a05c1cb..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/closedlock.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/dtree.png b/gosa-plugins/addressbook/help/en/html/addressbook/dtree.png
deleted file mode 100644
index 7eb790996..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/dtree.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/editpaste.png b/gosa-plugins/addressbook/help/en/html/addressbook/editpaste.png
deleted file mode 100644
index 636a4c5a0..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/editpaste.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/index.html b/gosa-plugins/addressbook/help/en/html/addressbook/index.html
deleted file mode 100644
index d25a91ea2..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/index.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-ADDONS
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ADDONS
-
-
-
-
-
-
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/labels.pl b/gosa-plugins/addressbook/help/en/html/addressbook/labels.pl
deleted file mode 100644
index 34bd4cc1b..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/labels.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-# LaTeX2HTML 2002-2-1 (1.71)
-# Associate labels original text with physical files.
-
-
-1;
-
-
-# LaTeX2HTML 2002-2-1 (1.71)
-# labels from external_latex_labels array.
-
-
-1;
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/list_ogroup.png b/gosa-plugins/addressbook/help/en/html/addressbook/list_ogroup.png
deleted file mode 100644
index e50de8b71..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/list_ogroup.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/mailto.png b/gosa-plugins/addressbook/help/en/html/addressbook/mailto.png
deleted file mode 100644
index a0bc51c65..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/mailto.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/node1.html b/gosa-plugins/addressbook/help/en/html/addressbook/node1.html
deleted file mode 100644
index b1348fba9..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/node1.html
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-
-Addressbook
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-The administrator can create or modify the user data or access to
-informations about users when clicking on Addressbook
-button in the Addons on the left. The Address book page is displayed. You will
-find on this page the name, the phone, the fax, the mobile and the
-private number of users. The last column contains the following icons
-:
-
-
-
-
- save entry as vcard,
-
- send a mail to the user.
-
-
-To select an user you have to click on his name, it will show you
-the complete data of the selected user.
-
-
-To create or modify an entry, the administrator can use the following
-icon within the box Actions :
-
-
-
-
- Add entry,
-
-
-Pay attention, the users created in the Administration part can't
-be modified here, only the consultation of data is allowed.
-
-
-Below the Actions
- box you will find a box called Filters
- .
-
-
-
-This table purpose is to change the display of the
-users and their data :
-
-- Click on a letter to show all the users name starting
-with this letter;
-
-- Click on the asterisk and the list of user name
-will be ordoned alphabetically.
-
-
-Lower, others possibilities of display exist :
-
-
-- Check one or more options to get a restricted selection :
-
-
-Check 'Show organizational entries ' and all the users created
-in the Administration part are displayed.
-
-
-Check 'Show addressbook entries ' and all the users created
-on the addressbook are displayed.
-
-
-- You can search by department;
-
-
-- Your search can be based on
-informations of one or many users;
-
-
-- Your search can be based on one element. Insert a letter or a number
-followed by an asterisk or a name in the field .
-Then Click on the Apply filter button to display users.
-
-
-
-
-All the fields followed by a red asterisk must be filled.
-
-
-The icon show you are in secure
-mode.
-
-
-
-
-
-
-
-Subsections
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/node2.html b/gosa-plugins/addressbook/help/en/html/addressbook/node2.html
deleted file mode 100644
index 87180e7ae..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/node2.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-Add entry
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-When clicking on 'Add entry', the interface creating a new
-entry in display. The administrator has to fill the fields with informations
-about the user. This new entry has no link with users created in the
-Administration part. This entry is only build into the addressbook
-of the organization.
-
-
-Before the administrator can choose the department where the new entry
-will be saved, he can make a choice of department on the scroll list
-int the title bar.
-
-
-To save data click on the Save button, to delete data click
-on the Cancel button and you come back at the complete list
-of users.
-
-
-
-
-Subsections
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/node3.html b/gosa-plugins/addressbook/help/en/html/addressbook/node3.html
deleted file mode 100644
index 507fd0a59..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/node3.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-Personal
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Last name *
-Insert the user's name
-
-First name *
-Insert the first name of the user
-
-Initials
-Insert the initials of the user
-
-Personal title
-Mention the professional title of the person
-
-
-
-
-
-
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/node4.html b/gosa-plugins/addressbook/help/en/html/addressbook/node4.html
deleted file mode 100644
index 62798ca52..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/node4.html
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-Private
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Address
-Insert the user's private address
-
-Téléphone
-Insert the user's private phone
-
-Portable
-Insert the user's mobile phone
-
-Email
-Insert the user's email address
-
-
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/node5.html b/gosa-plugins/addressbook/help/en/html/addressbook/node5.html
deleted file mode 100644
index 9a517f29a..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/node5.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-Organizational
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Company
-Insert the company's name of the user
-
-Department
-Insert the department where the user is located
-
-City
-Insert the city where the company is
-
-Postal code
-Insert the postal code of the company
-
-Country
-Insert the country where the company is implanted
-
-Address
-Insert company's address
-
-Phone
-Insert the user's phone number
-
-FAX
-Insert the user's fax number
-
-Pager
-Insert the user's pager
-
-
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/node6.html b/gosa-plugins/addressbook/help/en/html/addressbook/node6.html
deleted file mode 100644
index 37860a642..000000000
--- a/gosa-plugins/addressbook/help/en/html/addressbook/node6.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-About this document ...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ADDONS
-This document was generated using the
-LaTeX 2HTML translator Version 2002-2-1 (1.71)
-
-Copyright © 1993, 1994, 1995, 1996,
-Nikos Drakos ,
-Computer Based Learning Unit, University of Leeds.
-
-Copyright © 1997, 1998, 1999,
-Ross Moore ,
-Mathematics Department, Macquarie University, Sydney.
-
-The command line arguments were:
- latex2html -no_navigation -dir ../html/addressbook/ addressbook.tex
-
-The translation was initiated by Jan Wenzel on 2008-03-13
-
-
-Jan Wenzel
-2008-03-13
-
-
-
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/rocket.png b/gosa-plugins/addressbook/help/en/html/addressbook/rocket.png
deleted file mode 100644
index 838c38bf1..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/rocket.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/save.png b/gosa-plugins/addressbook/help/en/html/addressbook/save.png
deleted file mode 100644
index 6a9adc13c..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/save.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/html/addressbook/search.png b/gosa-plugins/addressbook/help/en/html/addressbook/search.png
deleted file mode 100644
index 593a56634..000000000
Binary files a/gosa-plugins/addressbook/help/en/html/addressbook/search.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/addressbook.lyx b/gosa-plugins/addressbook/help/en/lyx-source/addressbook.lyx
deleted file mode 100644
index ff983f8be..000000000
--- a/gosa-plugins/addressbook/help/en/lyx-source/addressbook.lyx
+++ /dev/null
@@ -1,726 +0,0 @@
-#LyX 1.5.3 created this file. For more info see http://www.lyx.org/
-\lyxformat 276
-\begin_document
-\begin_header
-\textclass article
-\language french
-\inputencoding auto
-\font_roman default
-\font_sans default
-\font_typewriter default
-\font_default_family default
-\font_sc false
-\font_osf false
-\font_sf_scale 100
-\font_tt_scale 100
-\graphics default
-\paperfontsize default
-\spacing single
-\papersize a4paper
-\use_geometry true
-\use_amsmath 1
-\use_esint 0
-\cite_engine basic
-\use_bibtopic false
-\paperorientation portrait
-\leftmargin 10mm
-\topmargin 10mm
-\rightmargin 10mm
-\bottommargin 20mm
-\headheight 10mm
-\headsep 10mm
-\footskip 10mm
-\secnumdepth 3
-\tocdepth 3
-\paragraph_separation indent
-\defskip medskip
-\quotes_language english
-\papercolumns 1
-\papersides 1
-\paperpagestyle default
-\bullet 0 1 20 -1
-\bullet 1 1 20 -1
-\bullet 2 1 20 -1
-\bullet 3 1 20 4
-\tracking_changes false
-\output_changes false
-\author ""
-\end_header
-
-\begin_body
-
-\begin_layout Title
-
-\series bold
-ADDONS
-\end_layout
-
-\begin_layout Section
-Addressbook
-\end_layout
-
-\begin_layout Standard
-The administrator can create or modify the user data or access to informations
- about users when clicking on
-\series bold
-\color blue
-Addressbook
-\series default
-\color none
-
-\color inherit
-button in the
-\color none
-
-\series bold
-\color inherit
-Addons
-\series default
-\color none
-
-\color inherit
-on the left.
-
-\color none
-
-\color black
-The
-\color none
-
-\family sans
-\color black
-Address book
-\family default
-\color inherit
-page is displayed.
- You will find on this page the name, the phone, the fax, the mobile and
- the private number of users.
- The last column contains the following icons :
-\end_layout
-
-\begin_layout Itemize
-\begin_inset Graphics
- filename images/save.png
-
-\end_inset
-
- save entry as vcard,
-\end_layout
-
-\begin_layout Itemize
-\begin_inset Graphics
- filename images/mailto.png
-
-\end_inset
-
- send a mail to the user.
-\end_layout
-
-\begin_layout Standard
-To select an user you have to click on his name, it will show you the complete
- data of the selected user.
-
-\end_layout
-
-\begin_layout Standard
-To create or modify an entry, the administrator can use the following icon
- within the box
-\emph on
-Actions
-\emph default
-
-\begin_inset Graphics
- filename images/action.png
-
-\end_inset
-
-:
-\end_layout
-
-\begin_layout Itemize
-\begin_inset Graphics
- filename images/editpaste.png
-
-\end_inset
-
- Add entry,
-\end_layout
-
-\begin_layout Standard
-Pay attention, the users created in the Administration part can't be modified
- here, only the consultation of data is allowed.
-\end_layout
-
-\begin_layout Standard
-
-\color black
-Below the
-\emph on
-Actions
-\emph default
-
-\begin_inset Graphics
- filename images/action.png
-
-\end_inset
-
-box you will find a box called
-\emph on
-Filters
-\emph default
-
-\begin_inset Graphics
- filename images/rocket.png
-
-\end_inset
-
-.
-
-\end_layout
-
-\begin_layout Itemize
-
-\color black
-This table purpose is to change the display of the users and their data
- :
-\end_layout
-
-\begin_deeper
-\begin_layout Standard
-
-\color black
-- Click on a letter to show all the users name starting with this letter;
-\end_layout
-
-\begin_layout Standard
-
-\color black
-- Click on the asterisk and the list of user name will be ordoned alphabetically.
-\end_layout
-
-\end_deeper
-\begin_layout Itemize
-Lower, others possibilities of display exist :
-\end_layout
-
-\begin_deeper
-\begin_layout Standard
-- Check one or more options to get a restricted selection :
-\end_layout
-
-\begin_layout Standard
-Check '
-\shape italic
-Show organizational entries
-\shape default
-' and all the users created in the Administration part are displayed.
-\end_layout
-
-\begin_layout Standard
-Check '
-\shape italic
-Show addressbook entries
-\shape default
-' and all the users created on the addressbook are displayed.
-\end_layout
-
-\begin_layout Standard
--
-\begin_inset Graphics
- filename images/dtree.png
-
-\end_inset
-
- You can search by department;
-\end_layout
-
-\begin_layout Standard
--
-\begin_inset Graphics
- filename images/list_ogroup.png
-
-\end_inset
-
- Your search can be based on informations of one or many users;
-\end_layout
-
-\begin_layout Standard
-- Your search can be based on one element.
- Insert a letter or a number followed by an asterisk or a name in the field
-
-\begin_inset Graphics
- filename images/search.png
-
-\end_inset
-
-.
- Then Click on the
-\shape italic
-Apply filter
-\shape default
- button to display users.
-\end_layout
-
-\end_deeper
-\begin_layout Standard
-All the fields followed by a red asterisk must be filled.
-\end_layout
-
-\begin_layout Standard
-The icon
-\begin_inset Graphics
- filename images/closedlock.png
-
-\end_inset
-
- show you are in secure mode.
-\end_layout
-
-\begin_layout Standard
-
-\newpage
-
-\end_layout
-
-\begin_layout Subsection
-Add entry
-\end_layout
-
-\begin_layout Standard
-When clicking on 'Add entry', the interface
-\shape slanted
-creating a new entry in
-\shape default
- display.
- The administrator has to fill the fields with informations about the user.
- This new entry has no link with users created in the Administration part.
- This entry is only build into the addressbook of the organization.
-
-\end_layout
-
-\begin_layout Standard
-Before the administrator can choose the department where the new entry will
- be saved, he can make a choice of department on the scroll list int the
- title bar.
-\end_layout
-
-\begin_layout Standard
-To save data click on the
-\shape italic
-Save
-\shape default
- button, to delete data click on the
-\shape italic
-Cancel
-\shape default
- button and you come back at the complete list of users.
-\end_layout
-
-\begin_layout Subsubsection
-Personal
-\end_layout
-
-\begin_layout Standard
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-
-\color black
-Last name
-\color red
-*
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's name
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-
-\color black
-First name
-\color red
-*
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the first name of the user
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Initials
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the initials of the user
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Personal title
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Mention the professional title of the person
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-\begin_inset VSpace medskip
-\end_inset
-
-
-\end_layout
-
-\begin_layout Subsubsection
-Private
-\end_layout
-
-\begin_layout Standard
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Address
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's private address
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Téléphone
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's private phone
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Portable
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's mobile phone
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Email
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's email address
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Subsubsection
-Organizational
-\end_layout
-
-\begin_layout Standard
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Company
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the company's name of the user
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Department
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the department where the user is located
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-City
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the city where the company is
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Postal code
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the postal code of the company
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Country
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the country where the company is implanted
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Address
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert company's address
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Phone
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's phone number
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-FAX
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's fax number
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Pager
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Insert the user's pager
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\end_body
-\end_document
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/action.png b/gosa-plugins/addressbook/help/en/lyx-source/images/action.png
deleted file mode 100644
index 21d5e2f82..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/action.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/closedlock.png b/gosa-plugins/addressbook/help/en/lyx-source/images/closedlock.png
deleted file mode 100644
index 04a05c1cb..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/closedlock.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/dtree.png b/gosa-plugins/addressbook/help/en/lyx-source/images/dtree.png
deleted file mode 100644
index 7eb790996..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/dtree.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/editpaste.png b/gosa-plugins/addressbook/help/en/lyx-source/images/editpaste.png
deleted file mode 100644
index 636a4c5a0..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/editpaste.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/list_ogroup.png b/gosa-plugins/addressbook/help/en/lyx-source/images/list_ogroup.png
deleted file mode 100644
index e50de8b71..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/list_ogroup.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/mailto.png b/gosa-plugins/addressbook/help/en/lyx-source/images/mailto.png
deleted file mode 100644
index a0bc51c65..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/mailto.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/rocket.png b/gosa-plugins/addressbook/help/en/lyx-source/images/rocket.png
deleted file mode 100644
index 838c38bf1..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/rocket.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/save.png b/gosa-plugins/addressbook/help/en/lyx-source/images/save.png
deleted file mode 100644
index 6a9adc13c..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/save.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/en/lyx-source/images/search.png b/gosa-plugins/addressbook/help/en/lyx-source/images/search.png
deleted file mode 100644
index 593a56634..000000000
Binary files a/gosa-plugins/addressbook/help/en/lyx-source/images/search.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/addressbook.lyx b/gosa-plugins/addressbook/help/es/lyx-source/addressbook.lyx
deleted file mode 100644
index a1c7dffc9..000000000
--- a/gosa-plugins/addressbook/help/es/lyx-source/addressbook.lyx
+++ /dev/null
@@ -1,680 +0,0 @@
-#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
-\lyxformat 245
-\begin_document
-\begin_header
-\textclass article
-\language spanish
-\inputencoding auto
-\fontscheme default
-\graphics default
-\paperfontsize default
-\spacing single
-\papersize a4paper
-\use_geometry true
-\use_amsmath 1
-\cite_engine basic
-\use_bibtopic false
-\paperorientation portrait
-\leftmargin 10mm
-\topmargin 10mm
-\rightmargin 10mm
-\bottommargin 20mm
-\headheight 10mm
-\headsep 10mm
-\footskip 10mm
-\secnumdepth 3
-\tocdepth 3
-\paragraph_separation indent
-\defskip medskip
-\quotes_language swedish
-\papercolumns 1
-\papersides 1
-\paperpagestyle default
-\bullet 0 1 20 -1
-\bullet 1 1 20 -1
-\bullet 2 1 20 -1
-\bullet 3 1 20 4
-\tracking_changes false
-\output_changes true
-\end_header
-
-\begin_body
-
-\begin_layout Title
-
-\series bold
-AGREGADOS
-\end_layout
-
-\begin_layout Section
-Libreta de direcciones
-\end_layout
-
-\begin_layout Standard
-El administrador puede crear o modificar los datos de los usuarios o acceder
- a los datos de los mismos.
- Para ver la libreta de direcciones seleccione el botón
-\series bold
-\color blue
-Libreta de direcciones
-\series default
-\color none
- que esta a la izquierda, en los
-\series bold
-Agregados
-\series default
-.
- En esa página va a encontrar el nombre, el teléfono, el fax, el celular
- y el número de teléfono personal de los usuarios.
- La última columna tiene los siguientes iconos :
-\end_layout
-
-\begin_layout Itemize
-\begin_inset Graphics
- filename images/save.png
-
-\end_inset
-
- la posibilidad de guardar las entradas en formato vcard,
-\end_layout
-
-\begin_layout Itemize
-\begin_inset Graphics
- filename images/mailto.png
-
-\end_inset
-
- la posibilidad de mandar un correo electrónico al usuario.
-\end_layout
-
-\begin_layout Standard
-Para seleccionar un usuario hay que presionar con el puntero sobre el mismo,
- esto va a mostrar los datos completos del usuario seleccionado.
-
-\end_layout
-
-\begin_layout Standard
-Para crear o modificar una entrada, el administrador usa (
-\begin_inset Graphics
- filename images/action.png
-
-\end_inset
-
-) el siguiente icono :
-\end_layout
-
-\begin_layout Itemize
-\begin_inset Graphics
- filename images/editpaste.png
-
-\end_inset
-
- para agregar una entrada,
-\end_layout
-
-\begin_layout Standard
-Preste atención ya que los usuarios creados en la parte de Administración
- no pueden ser modificados acá, solo se puede consultar los datos.
-\end_layout
-
-\begin_layout Standard
-
-\color black
-Debajo de la tabla Acciones va a encontrar una tabla llamada Filtros
-\begin_inset Graphics
- filename images/rocket.png
-
-\end_inset
-
-.
-
-\end_layout
-
-\begin_layout Itemize
-
-\color black
-Esta tabla tiene como propósito el cambiar la vista de los usuarios y de
- los datos de los mismos:
-\end_layout
-
-\begin_deeper
-\begin_layout Standard
-
-\color black
-- Seleccione sobre una letra para ver todos los nombres de usuarios que
- comienzan con esa letra;
-\end_layout
-
-\begin_layout Standard
-
-\color black
-- Seleccione sobre el asterisco y la lista de usuarios se va a mostrar ordenada
- alfabéticamente.
-\end_layout
-
-\end_deeper
-\begin_layout Itemize
-Más abajo hay otras posibilidades para cambiar la vista :
-\end_layout
-
-\begin_deeper
-\begin_layout Standard
-- Marque una o más opciones para obtener una lista restringida :
-\end_layout
-
-\begin_layout Standard
-Marque '
-\shape italic
-Mostrar entradas de organización
-\shape default
-' y se mostraran todos los usuarios creados en la parte del Administración
- de usuarios.
-\end_layout
-
-\begin_layout Standard
-Marque '
-\shape italic
-Mostrar entradas de la libreta de direcciones
-\shape default
-' y se mostraran todos los usuarios creados en la libreta de direcciones.
-\end_layout
-
-\begin_layout Standard
--
-\begin_inset Graphics
- filename images/dtree.png
-
-\end_inset
-
- Puede buscar por departamento;
-\end_layout
-
-\begin_layout Standard
--
-\begin_inset Graphics
- filename images/list_ogroup.png
-
-\end_inset
-
- La búsqueda puede ser basada en información de uno o más usuarios;
-\end_layout
-
-\begin_layout Standard
-- La búsqueda puede estar basada en un elemento.
- Ingrese una letra o número seguido por un asterisco o el nombre en el campo
-
-\begin_inset Graphics
- filename images/search.png
-
-\end_inset
-
-.
- Luego seleccione el botón
-\shape italic
-Aplicar filtro
-\shape default
- para ver los usuarios.
-\end_layout
-
-\end_deeper
-\begin_layout Standard
-Todos los campos que tienen al lado un asterisco rojo deden ser completados.
-\end_layout
-
-\begin_layout Standard
-El icono
-\begin_inset Graphics
- filename images/closedlock.png
-
-\end_inset
-
- indica que está en un modo seguro.
-\end_layout
-
-\begin_layout Standard
-
-\newpage
-
-\end_layout
-
-\begin_layout Subsection
-Añadir entrada
-\end_layout
-
-\begin_layout Standard
-Para acceder a la interfase para crear una nueva entrada presione sobre
- 'Añadir entrada'.
- El administrador tiene que llenar los campos con la información sobre el
- usuario.
- Estas estradas no están relacionadas con los usuarios creados en la parte
- de Administración de usuarios.
- Esta entrada solo estará en la libreta de direcciones de la organización.
-
-\end_layout
-
-\begin_layout Standard
-El administrador puede elegir en que departamento va a guardar la entrada
- eligiendolo de la lista desplegable que esta en la barra de titulo.
-\end_layout
-
-\begin_layout Standard
-Para grabar los datos presione el botón
-\shape italic
-Grabar
-\shape default
-, para borrar los datos y regresar a la lista de los usuarios presione el
- botón
-\shape italic
-Cancelar
-\shape default
-.
-\end_layout
-
-\begin_layout Subsubsection
-Personal
-\end_layout
-
-\begin_layout Standard
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-
-\color black
-Apellido
-\color red
-*
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el apellido del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-
-\color black
-Nombre
-\color red
-*
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el nombre del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Iniciales
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese las iniciales del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Título profesional
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Mencione el título profesional de la persona
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Standard
-\begin_inset VSpace medskip
-\end_inset
-
-
-\end_layout
-
-\begin_layout Subsubsection
-Privado
-\end_layout
-
-\begin_layout Standard
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Dirección
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese la dirección privada del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Teléfono
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el número de teléfono privado del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Teléfono Móvil
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el número de teléfono móvil privado del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Correo Electrónico
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese la dirección de correo electrónico
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\begin_layout Subsubsection
-Organización
-\end_layout
-
-\begin_layout Standard
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Compañia
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el nombre de la compañia del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Departamento
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el departamento donde está ubicado el usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Ciudad
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingresa el nombre de la ciudad de donde es la compañia
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Código Postal
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el codigo postal de la compañia
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Pais
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el pais en donde reside la compañia
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Dirección
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese la dirección de la compañia
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Teléfono
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el número de telefono del usuario
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-FAX
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el número de fax
-\end_layout
-
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\begin_layout Standard
-Pager
-\end_layout
-
-\end_inset
- |
-
-\begin_inset Text
-
-\begin_layout Standard
-Ingrese el número del pager
-\end_layout
-
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\end_layout
-
-\end_body
-\end_document
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/action.png b/gosa-plugins/addressbook/help/es/lyx-source/images/action.png
deleted file mode 100644
index 21d5e2f82..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/action.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/closedlock.png b/gosa-plugins/addressbook/help/es/lyx-source/images/closedlock.png
deleted file mode 100644
index 04a05c1cb..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/closedlock.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/dtree.png b/gosa-plugins/addressbook/help/es/lyx-source/images/dtree.png
deleted file mode 100644
index 7eb790996..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/dtree.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/editpaste.png b/gosa-plugins/addressbook/help/es/lyx-source/images/editpaste.png
deleted file mode 100644
index 636a4c5a0..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/editpaste.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/list_ogroup.png b/gosa-plugins/addressbook/help/es/lyx-source/images/list_ogroup.png
deleted file mode 100644
index e50de8b71..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/list_ogroup.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/mailto.png b/gosa-plugins/addressbook/help/es/lyx-source/images/mailto.png
deleted file mode 100644
index 92d602c58..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/mailto.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/rocket.png b/gosa-plugins/addressbook/help/es/lyx-source/images/rocket.png
deleted file mode 100644
index 838c38bf1..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/rocket.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/save.png b/gosa-plugins/addressbook/help/es/lyx-source/images/save.png
deleted file mode 100644
index 6a9adc13c..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/save.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/es/lyx-source/images/search.png b/gosa-plugins/addressbook/help/es/lyx-source/images/search.png
deleted file mode 100644
index 593a56634..000000000
Binary files a/gosa-plugins/addressbook/help/es/lyx-source/images/search.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/addressbook.lyx b/gosa-plugins/addressbook/help/fr/lyx-source/addressbook.lyx
deleted file mode 100644
index b8d4eba5c..000000000
--- a/gosa-plugins/addressbook/help/fr/lyx-source/addressbook.lyx
+++ /dev/null
@@ -1,675 +0,0 @@
-#LyX 1.3 created this file. For more info see http://www.lyx.org/
-\lyxformat 221
-\textclass article
-\language frenchb
-\inputencoding auto
-\fontscheme default
-\graphics default
-\paperfontsize default
-\spacing single
-\papersize a4paper
-\paperpackage a4
-\use_geometry 1
-\use_amsmath 0
-\use_natbib 0
-\use_numerical_citations 0
-\paperorientation portrait
-\leftmargin 10mm
-\topmargin 10mm
-\rightmargin 10mm
-\bottommargin 20mm
-\headheight 10mm
-\headsep 10mm
-\footskip 10mm
-\secnumdepth 3
-\tocdepth 3
-\paragraph_separation indent
-\defskip medskip
-\quotes_language english
-\quotes_times 2
-\papercolumns 1
-\papersides 1
-\paperpagestyle default
-\bullet 0
- 1
- 20
- -1
-\end_bullet
-\bullet 1
- 1
- 20
- -1
-\end_bullet
-\bullet 2
- 1
- 20
- -1
-\end_bullet
-\bullet 3
- 1
- 20
- 4
-\end_bullet
-
-\layout Title
-
-
-\series bold
-CARNET D'ADRESSE
-\layout Section
-
-Carnet d'adresses
-\layout Standard
-
-L'administrateur peut créer ou modifier les données d'un utilisateur ou
- accéder aux informations sur l'utilisateur en cliquant sur le bouton
-\series bold
-\color blue
-Carnet d'adresse
-\series default
-\color default
- de la partie
-\series bold
-Extensions
-\series default
- du menu de gauche dans GOsa.
- La page
-\family sans
-\color black
- Carnet d'adresses
-\family default
-\color default
- s'affiche.
- Sont repris sur cette page le nom, le numéro de téléphone professionnel,
- le numéro de fax professionel, le numéro de téléphone mobile et le numéro
- de téléphone privé des utilisateurs avec dans la dernière colonne
-\begin_inset Quotes eld
-\end_inset
-
-contact
-\begin_inset Quotes erd
-\end_inset
-
- les éléments suivants :
-\layout Itemize
-
-
-\begin_inset Graphics
- filename images/save.png
-
-\end_inset
-
- la possibilité d'enregistrer l'entrée sous le format vcard
-\color red
-?
-\color default
- ,
-\layout Itemize
-
-
-\begin_inset Graphics
- filename images/mailto.png
-
-\end_inset
-
- la possibilité d'envoyer un mail à l'utilisateur séléctionné.
-\layout Standard
-
-Pour séléctionner un utilisateur il suffit de cliquer sur son nom, s'afficheront
- alors les données complètes de cet utilisateur préalablement entrées par
- l'administrateur.
- Pour créer ou manipuler une entrée l'administrateur dispose (dans le deuxième
- tableau à droite dans la fenêtre
-\begin_inset Graphics
- filename images/action.png
-
-\end_inset
-
-) de trois actions possibles :
-\layout Itemize
-
-Pour ajouter une entrée cliquez sur
-\begin_inset Graphics
- filename images/editpaste.png
-
-\end_inset
-
-,
-\layout Itemize
-
-Pour modifier une entrée cliquez sur
-\begin_inset Graphics
- filename images/edit.png
-
-\end_inset
-
-,
-\layout Itemize
-
-Pour supprimer une entrée cliquez sur
-\begin_inset Graphics
- filename images/editdelete.png
-
-\end_inset
-
-.
-\layout Standard
-
-Attention, les utilisateurs créés dans la partie Administration ne peuvent
- être modifiés dans cette partie de GOsa, seule le consultation des données
- de ces utilisateurs est autorisée.
-\layout Standard
-
-
-\color black
-Sous le tableau des actions on trouve un tableau intitulé Filtres
-\begin_inset Graphics
- filename images/rocket.png
-
-\end_inset
-
-.
-
-\layout Itemize
-
-
-\color black
-Ce tableau sert à modifier l'affichage des utilisateurs et de leurs données
- :
-\begin_deeper
-\layout Standard
-
-
-\color black
-- Cliquer sur une lettre, par exemple la lettre L, pour que s'affichent
- tous les utilisateurs dont le nom commence par la lettre L;
-\layout Standard
-
-
-\color black
-- Cliquez sur l'astérisque et tous les noms d'utilisateurs apparaîtront.
-\end_deeper
-\layout Itemize
-
-Plus bas d'autres possibilités d'affichage sont possibles :
-\begin_deeper
-\layout Standard
-
-- Cochez une ou plusieurs propositions pour un affichage différencié :
-\layout Standard
-
-Cochez '
-\shape italic
-Afficher les entrées de l'organisation
-\shape default
-' et tous les utilisateurs crées dans la partie Administration de GOsa s'affiche
-ront.
-\layout Standard
-
-Cochez '
-\shape italic
-Afficher les entrées du carnet d'adresses
-\shape default
-' et les utilisateurs créées à partir du Carnet d'adresses s'afficheront.
-\layout Standard
-
--
-\begin_inset Graphics
- filename images/dtree.png
-
-\end_inset
-
- Vous pouvez faire une recherche par département;
-\layout Standard
-
--
-\begin_inset Graphics
- filename images/list_ogroup.png
-
-\end_inset
-
- La recherche peut aussi être faite à partir d'une donnée d'un ou plusieurs
- utilisateur(s);
-\layout Standard
-
-- Ou encore sur un élément.
- Insérez une lettre ou un numéro suivi de l'astérisque ou un nom d'utilisateur
- dans le champ précédé d'une loupe
-\begin_inset Graphics
- filename images/search.png
-
-\end_inset
-
-, il symbolise la recherche d'un item.
- Cliquez sur le bouton Appliquer pour faire apparaître le(s) utilisateur(s)
- recherché(s).
-\end_deeper
-\layout Standard
-
-Tous les champs précédés d'une astérisque doivent être remplis obligatoirement.
-\layout Standard
-
-L'image
-\begin_inset Graphics
- filename images/closedlock.png
-
-\end_inset
-
- signale que vous êtes en mode sécurisé.
-\layout Subsection
-\pagebreak_top
-Ajouter une entrée
-\layout Standard
-
-Lorsque vous cliquez sur 'Ajouter une entrée', l'interface
-\shape slanted
-création d'une nouvelle entrée
-\shape default
- s'affiche.
- Il suffit pour l'administrateur de remplir les champs avec les informations
- dont il dispose sur l'utilisateur.
- Cette nouvelle entrée n'aura pas de lien avec les utilisateurs crées dans
- la partie Administration.
- Elle s'incorpore uniquement dans le carnet d'adresses de la société.
-
-\layout Standard
-
-Avant la création vous pouvez choisir le département dans lequel vous désirez
- enregistrer le nouvel utilisateur, il suffit de choisir dans le menu déroulant,
- dans la barre de titre, le département souhaité.
-\layout Standard
-
-Pour valider les données introduites il faut cliquer sur le bouton Enregistrer
- au bas de la page, utilisez le bouton Annuler pour ne pas enregistrer les
- données, il vous renvoie aussitôt à la liste complète des utilisateurs.
-\layout Subsubsection
-
-Personnel
-\layout Standard
-
-
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Nom
-\color red
-*
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le nom de l'utilisateur
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Prénom
-\color red
-*
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le prénom de l'utilisateur
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Initiales
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez la première lettre du prénom et du nom
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Titre personnel
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Indiquer le genre de l'utilisateur (Madame, Monsieur, Mademoiselle)
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\layout Subsubsection
-\added_space_top medskip
-Privé
-\layout Standard
-
-
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Adresse
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez l'adresse privée et complète de l'utilisateur
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Téléphone
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez son numéro de téléphone privé
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Portable
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez son numéro de téléphone mobile privé
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Email
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez son adresse Email
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\layout Subsubsection
-
-Organisation
-\layout Standard
-
-
-\begin_inset Tabular
-
-
-
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Société
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le nom de la société dont fait partie l'utilisateur
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Département
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le nom du département où l'utilisateur doit être enregistré
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Ville
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez la ville où la société est localisée
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Code postal
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le code postal de la société
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Pays
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le pays où la société est implantée
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Adresse
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez l'adresse de la société
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Téléphone
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le numéro professionnel de l'utilisateur
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-FAX
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le numéro de fax de l'utilisateur
-\end_inset
- |
-
-
-
-\begin_inset Text
-
-\layout Standard
-
-Bip
-\end_inset
- |
-
-\begin_inset Text
-
-\layout Standard
-
-Insérez le numéro de Bip de l'utilisateur
-\end_inset
- |
-
-
-
-\end_inset
-
-
-\layout Subsection
-
-Modifier une entrée
-\layout Standard
-
-La modification des entrées ne peut s'oppérer que sur des entrées créées
- via le carnet d'adresses.
-\layout Standard
-
-Il suffit de cliquer sur 'Modifier une entrée' pour que l'interface
-\shape italic
-création d'une nouvelle entrée
-\shape default
- s'affiche.
- Les données de l'utilisateur sont alors modifiables.
-\layout Standard
-
-Pour enregistrer les modifications, cliquez sur le bouton Enregistrer, pour
- sauvegarder sans les modifications, cliquez sur le bouton Annuler.
-\layout Subsection
-
-Supprimer une entrée
-\layout Standard
-
-La suppression des entrées ne peut s'oppérer que sur des entrées créées
- via le carnet d'adresses.
-\layout Standard
-
-Pour supprimer un utilisateur cliquez sur le bouton Supprimer.
-
-\layout Standard
-
-\the_end
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/action.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/action.png
deleted file mode 100644
index 21d5e2f82..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/action.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/closedlock.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/closedlock.png
deleted file mode 100644
index 04a05c1cb..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/closedlock.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/dtree.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/dtree.png
deleted file mode 100644
index 7eb790996..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/dtree.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/edit.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/edit.png
deleted file mode 100644
index a8b69f73f..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/edit.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/editdelete.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/editdelete.png
deleted file mode 100644
index 6d0d29d76..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/editdelete.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/editpaste.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/editpaste.png
deleted file mode 100644
index 636a4c5a0..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/editpaste.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/list_ogroup.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/list_ogroup.png
deleted file mode 100644
index e50de8b71..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/list_ogroup.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/mailto.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/mailto.png
deleted file mode 100644
index 92d602c58..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/mailto.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/rocket.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/rocket.png
deleted file mode 100644
index 838c38bf1..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/rocket.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/save.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/save.png
deleted file mode 100644
index 6a9adc13c..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/save.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/fr/lyx-source/images/search.png b/gosa-plugins/addressbook/help/fr/lyx-source/images/search.png
deleted file mode 100644
index 593a56634..000000000
Binary files a/gosa-plugins/addressbook/help/fr/lyx-source/images/search.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/help/guide.xml b/gosa-plugins/addressbook/help/guide.xml
deleted file mode 100644
index bd06957a6..000000000
--- a/gosa-plugins/addressbook/help/guide.xml
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/gosa-plugins/addressbook/html/getvcard.php b/gosa-plugins/addressbook/html/getvcard.php
deleted file mode 100644
index 24245d6bd..000000000
--- a/gosa-plugins/addressbook/html/getvcard.php
+++ /dev/null
@@ -1,170 +0,0 @@
-get_ldap_link();
-$ldap->cat(base64_decode(validate($_GET['dn'])));
-
-/*
- * Generate vcard for specified IDs
- */
-while ($attrs= $ldap->fetch()){
- /* Header / Name */
- echo "BEGIN:VCARD\n";
- echo "VERSION:3.0\n";
- echo "FN:".preg_replace('/,/', '\\,', $attrs['cn'][0])."\n";
-
- /* Assemble titles for N attribute */
- $titles= "";
- if (isset($attrs['personalTitle'])){
- $titles= $attrs['personalTitle'][0];
- }
- if (isset($attrs['academicTitle'])){
- if ($titles != ""){
- $titles.= ",".$attrs['academicTitle'][0];
- } else {
- $titles= $attrs['academicTitle'][0];
- }
- }
- echo "N:".$attrs['sn'][0].";".$attrs['givenName'][0].";;;$titles\n";
-
- /* Generate random UID */
- $uid= "";
- srand(make_seed());
- $chars= '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
- for ($i= 0; $i<16; $i++){
- $uid.= $chars[rand(0, strlen($chars)-1)];
- }
- echo "UID:$uid\n";
-
- /* Mail addresses */
- if (isset($attrs['mail'][0])){
- echo "EMAIL;TYPE=internet,pref:".$attrs['mail'][0]."\n";
- if (isset($attrs['gosaMailAlternateAddress'])){
- for ($i= 0; $i<$attrs['gosaMailAlternateAddress']['count']; $i++){
- echo "EMAIL;TYPE=internet:".
- $attrs['gosaMailAlternateAddress'][$i]."\n";
- }
- }
- }
-
- /* Export date */
- echo "REV:".date("Y-m-d")."\n";
- echo "CLASS:PUBLIC\n";
-
- /* Fill address */
- if (isset($attrs['homePostalAddress'])){
- @list($street,$town,$country)= preg_split('/\n/', $attrs['homePostalAddress'][0]);
- echo "ADR;TYPE=home:;;".trim($street).";".trim($town).";;;".
- trim($country)."\n";
- }
- if (isset($attrs['postalAddress'])){
- @list($street,$town,$country)= preg_split('/\n/', $attrs['postalAddress'][0]);
- echo "ADR;TYPE=work,pref:;;".trim($street).";".trim($town).";;;".
- trim($country)."\n";
- }
-
- /* Telephone numbers */
- if (isset($attrs['homePhone'])){
- echo "TEL;TYPE=home:".$attrs['homePhone'][0]."\n";
- }
- if (isset($attrs['telephoneNumber'])){
- echo "TEL;TYPE=work,pref:".$attrs['telephoneNumber'][0]."\n";
- }
- if (isset($attrs['mobile'])){
- echo "TEL;TYPE=cell:".$attrs['mobile'][0]."\n";
- }
- if (isset($attrs['pager'])){
- echo "TEL;TYPE=pager:".$attrs['pager'][0]."\n";
- }
-
- /* Set organization */
- if (isset($attrs['o'])){
- echo "ORG:".$attrs['o'][0]."\n";
- }
-
- echo "NOTE:Exported by GOsa - https://gosa.gonicus.de\n";
- echo "SORT-STRING:".$attrs['sn'][0]."\n";
- if (isset($attrs['labeledURI'][0])){
- echo "URL:".$attrs['labeledURI'][0]."\n";
- }
-
- /* Add user certificate */
-#if (isset($attrs['userCertificate;binary'])){
-# $cert= $ldap->get_attribute($ldap->getDN(), "userCertificate;binary");
-# $cert= preg_replace('/\r\n/', chr(10).' ', chunk_split(base64_encode($cert)));
-# echo "KEY;ENCODING=b:".preg_replace('/\n $/', '', $cert)."\n";
-#}
-
- /* Add picture */
- if (isset($attrs['jpegPhoto'])){
- $photodata= $ldap->get_attribute($ldap->getDN(), "jpegPhoto");
- $photodata= preg_replace('/\r\n/', chr(10).' ', chunk_split(base64_encode($photodata)));
- echo "PHOTO;ENCODING=b;TYPE=JPEG:".preg_replace('/\n $/', '', $photodata)."\n";
- }
-
- /* Day of birth */
- if (isset($attrs['dayOfBirth'][0])){
- echo "BDAY:".$attrs['dayOfBirth'][0]."\n";
- }
-
- echo "END:VCARD\n\n";
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/addressbook/html/images/addr_company.png b/gosa-plugins/addressbook/html/images/addr_company.png
deleted file mode 100644
index 80a173d72..000000000
Binary files a/gosa-plugins/addressbook/html/images/addr_company.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/html/images/addr_home.png b/gosa-plugins/addressbook/html/images/addr_home.png
deleted file mode 100644
index 14ee4846f..000000000
Binary files a/gosa-plugins/addressbook/html/images/addr_home.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/html/images/addr_personal.png b/gosa-plugins/addressbook/html/images/addr_personal.png
deleted file mode 100644
index ecf17bc31..000000000
Binary files a/gosa-plugins/addressbook/html/images/addr_personal.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/html/images/objects.png b/gosa-plugins/addressbook/html/images/objects.png
deleted file mode 100644
index e50de8b71..000000000
Binary files a/gosa-plugins/addressbook/html/images/objects.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/html/images/phone.png b/gosa-plugins/addressbook/html/images/phone.png
deleted file mode 100644
index 638ede970..000000000
Binary files a/gosa-plugins/addressbook/html/images/phone.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/html/images/plugin.png b/gosa-plugins/addressbook/html/images/plugin.png
deleted file mode 100644
index 69bb68f2f..000000000
Binary files a/gosa-plugins/addressbook/html/images/plugin.png and /dev/null differ
diff --git a/gosa-plugins/addressbook/locale/de/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/de/LC_MESSAGES/messages.po
deleted file mode 100644
index 92beef70f..000000000
--- a/gosa-plugins/addressbook/locale/de/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,437 +0,0 @@
-# translation of messages.po to Deutsch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-#
-# Alfred Schroeder , 2004.
-# Cajus Pollmeier , 2004, 2005, 2006.
-# Jan Wenzel , 2004,2005, 2008.
-# Stefan Koehler , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2009-03-03 14:53+0100\n"
-"Last-Translator: Jan Wenzel \n"
-"Language-Team: German \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: html/getvcard.php:39
-msgid "Internal error"
-msgstr "Interner Fehler"
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr "Fehlende Parameter!"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "Persönlich"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "Name"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "Initialien"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "Titel"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "Privat"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "Adresse"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "Telefon"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "Mobiltelefon"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "Email"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "Organisationsbezogen"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "Firma"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "Abteilung"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "Stadt"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "Postleitzahl"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "Land"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "Fax"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "Pager"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "Warnung"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-"Dies umfasst alle in diesem Eintrag gespeicherten Informationen. Ãberlegen "
-"Sie genau, was Sie tun, da es keine Möglichkeit für GOsa gibt, die Daten "
-"wiederherzustellen."
-
-#: addons/addressbook/remove.tpl:10
-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 "
-"'Abbrechen' zum Abbruch."
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "Wähle Verbindung..."
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "Wählen"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "Adressbuch"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr "GOsa"
-
-#: addons/addressbook/class_addressbook.inc:12
-msgid "GOsa related objects"
-msgstr "GOsa-bezogene Objekte"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "Dies tut etwas"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "Soll von %s nach %s gewählt werden?"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr "Fehler"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr ""
-"Um direkt wählen zu können müssen Sie zuerst Ihre persönliche Telefonnummer "
-"einstellen."
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-msgid "LDAP error"
-msgstr "LDAP-Fehler"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-msgid "Permission"
-msgstr "Berechtigung"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "Speichere Kontakt für %s als vcard"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "Sende eine Mail an %s"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "dem globalen Adressbuch"
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr "Fax-Datenbank"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr "Kontakt wurde in '%s' abgelegt"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Erzeugen eines neuen Eintrags in"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "Alle"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "Vorname"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "Telefon (Arbeit)"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "Mobiltelefon"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "Telefon (zu Hause)"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "Benutzer-ID"
-
-#: addons/addressbook/class_addressbook.inc:719
-msgid "Telephone number"
-msgstr "Telefonnummer"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "Fax"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-"Es kann kein eindeutiger DN für diesen Eintrag erzeugt werden. Füllen Sie "
-"bitte weitere Felder aus."
-
-#: addons/addressbook/class_addressbook.inc:853
-msgid "Addressbook entries"
-msgstr "Adressbuch-Einträge"
-
-#: addons/addressbook/class_addressbook.inc:854
-msgid "Addressbook related objects"
-msgstr "Adressbuch-bezogene Objekte"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "Zusätzliches"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "Nachname"
-
-#: addons/addressbook/class_addressbook.inc:864
-msgid "Telefon number"
-msgstr "Telefonnummer"
-
-#: addons/addressbook/class_addressbook.inc:865
-msgid "Fax number"
-msgstr "Faxnummer"
-
-#: addons/addressbook/class_addressbook.inc:866
-msgid "Mobile number"
-msgstr "Mobiltelefon"
-
-#: addons/addressbook/class_addressbook.inc:867
-msgid "Home phone number"
-msgstr "Telefonnummer (privat)"
-
-#: addons/addressbook/class_addressbook.inc:868
-msgid "User identification"
-msgstr "Benutzerkennung"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "Mail-Adresse"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "Organisation"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "Ort"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "Adresse"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Land"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "Titel"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr "Private Adresse"
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "Name"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "Wählen Sie die Abteilung, in der der Eintrag abgelegt werden soll"
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr "Nachname"
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr "Vorname"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "Kontakt"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "Information"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"Das Telefonlistenmodul bietet Auflistungs- und Suchfunktionen für die "
-"Mitarbeiter Ihrer Organisation. Bei Eingaben wie 'gon' wird dementsprechend "
-"sowohl 'Gonicus' als auch 'gone' gefunden."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "Aktionen"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "Eintrag hinzufügen"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "Eintrag bearbeiten"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "Eintrag entfernen"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "Filter"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "Wählen Sie dies, um gewöhnliche Benutzer anzuzeigen"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "Zeige Benutzer der Organisation"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr "Wählen, um Adressbucheinträge zu sehen"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "Zeige Adressbuch-Einträge"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "Zeige Ergebnisse der Abteilung"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "Wählen Sie die Abteilung, auf die die Suchfunktion angewandt wird"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "Untersuchtes Objekt"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "Wählen Sie das Objekt, auf das die Suchfunktion angewandt wird"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "Suche nach"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "Suchtext"
diff --git a/gosa-plugins/addressbook/locale/es/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/es/LC_MESSAGES/messages.po
deleted file mode 100644
index 1f9912f20..000000000
--- a/gosa-plugins/addressbook/locale/es/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,479 +0,0 @@
-# translation of admin.po to
-# translation of systems.po to
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# , 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: admin\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2010-01-24 00:04+0100\n"
-"Last-Translator: \n"
-"Language-Team: Spanish <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: html/getvcard.php:39
-msgid "Internal error"
-msgstr "Error interno"
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr "¡Faltan parámetros!"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "Personal"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "Nombre"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "Iniciales"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "TÃtulo Personal"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "Privado"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "Dirección"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "Teléfono"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "Móvil"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "Correo Electrónico"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "Organización"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "CompañÃa"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "Departamento"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "Ciudad"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "Código Postal"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "PaÃs"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "FAX"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "Buscapersonas"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "Aviso"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-"Esto incluye toda la información de la libreta de direcciones en esta "
-"entrada. Si está seguro de lo que quiere hacer pulse dos veces, ya que no "
-"hay forma de que GOsa recupere la información."
-
-#: addons/addressbook/remove.tpl:10
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Entonces, si esta seguro, presione Eliminar para continuar o "
-"Cancelar para Abortar."
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "Marcando conexión..."
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "Marcar"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "Libreta direcciones"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr "GOsa"
-
-#: addons/addressbook/class_addressbook.inc:12
-msgid "GOsa related objects"
-msgstr "Objetos relacionados con GOsa"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "Esto hace algo"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "¿Llamar desde %s a %s ahora?"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr "Error"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr ""
-"Necesita introducir su número de teléfono personal para poder realizar "
-"llamadas directas."
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-msgid "LDAP error"
-msgstr "Error LDAP"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-msgid "Permission"
-msgstr "Permisos"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "Salvar el contacto %s como una vcard"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "Enviar correo a %s"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "libreta de contactos global"
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr "usuario de Base de datos"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr "Contacto guardado en '%s'"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Creando una nueva entrada en"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "Todo"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "Nombre de pila"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "Teléfono de empresa"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "Teléfono Móvil"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "Teléfono particular"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "Identificador (ID) de usuario"
-
-#: addons/addressbook/class_addressbook.inc:719
-msgid "Telephone number"
-msgstr "Número de teléfono"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "Fax"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-"No se puede crear un 'DN' único para esta entrada. Por favor rellene los "
-"campos del formulario."
-
-#: addons/addressbook/class_addressbook.inc:853
-msgid "Addressbook entries"
-msgstr "Entradas en la libreta direcciones"
-
-#: addons/addressbook/class_addressbook.inc:854
-msgid "Addressbook related objects"
-msgstr "Objetos relacionados con la libreta direcciones"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "Añadidos"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "Apellidos"
-
-#: addons/addressbook/class_addressbook.inc:864
-msgid "Telefon number"
-msgstr "Número de teléfono"
-
-#: addons/addressbook/class_addressbook.inc:865
-msgid "Fax number"
-msgstr "Número de Fax"
-
-#: addons/addressbook/class_addressbook.inc:866
-msgid "Mobile number"
-msgstr "Teléfono móvil"
-
-#: addons/addressbook/class_addressbook.inc:867
-msgid "Home phone number"
-msgstr "Número de teléfono personal"
-
-#: addons/addressbook/class_addressbook.inc:868
-msgid "User identification"
-msgstr "Identificación de Usuario"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "Dirección correo electrónico"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "Organización"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "Localización"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "Código Postal"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Provincia"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "TÃtulo"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr "Dirección Postal personal"
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "Nombre común"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "Elija un departamento para guardar la entrada"
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr "Apellido"
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr "Nombre"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "Contacto"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "Información"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"La extensión de lista telefónica tiene las facilidades de listado y búsqueda "
-"de usuarios para su organización. Se puede introducir asterisco (*) como en "
-"'Go*us' para encontrar 'Gonicus'. Use estos filtros para mejorar su búsqueda."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "Acciones"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "Añadir entrada"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "Editar entrada"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "Eliminar entrada"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "Filtros"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "Seleccione para ver usuarios genéricos"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "Mostrar entradas organizativas"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr "Seleccione para ver los usuarios en la libreta de direcciones"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "Enseñar las entradas de la libreta de direcciones"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "Mostrar resultados para el departamento"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "Escoja el departamento base de la búsqueda"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "Encontrar objeto"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "Elegir el objeto que sera buscado"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "Buscar por"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "Cadena de búsqueda"
-
-#~ msgid "Cancel"
-#~ msgstr "Cancelar"
-
-#~ msgid "Save"
-#~ msgstr "Guardar"
-
-#~ msgid "Delete"
-#~ msgstr "Eliminar"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "Permisos"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "No tiene permisos para eliminar este departamento."
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "No se ha asignado ningún valor al campo obligatorio 'Nombre'."
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr ""
-#~ "No se ha asignado ningún valor al campo obligatorio 'Nombre de pila'."
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "El campo 'Nombre' no tiene caracteres validos."
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "El campo 'Nombre de pila' contiene caracteres no validos"
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "El campo 'Teléfono' tiene un número de teléfono no valido."
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "El campo 'Fax' tiene un número de teléfono no valido."
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "El campo 'Teléfono móvil' contiene un número de teléfono invalido."
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr ""
-#~ "El campo 'Dispositivo de Búsqueda' contiene un número de teléfono "
-#~ "invalido."
diff --git a/gosa-plugins/addressbook/locale/fr/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/fr/LC_MESSAGES/messages.po
deleted file mode 100644
index 76bb8ce86..000000000
--- a/gosa-plugins/addressbook/locale/fr/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,434 +0,0 @@
-# translation of messages.po to
-# Benoit Mortier , 2005, 2006, 2007, 2008, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2009-02-28 13:55+0100\n"
-"Last-Translator: Benoit Mortier \n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: html/getvcard.php:39
-msgid "Internal error"
-msgstr "Erreur interne"
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr "Paramètres manquants !"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "Personnel"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "Nom"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "Initiales"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "Titre Personnel"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "Privé"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "Adresse"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "Téléphone"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "GSM"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "Adresse de messagerie"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "Organisation"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "Société"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "Département"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "Ville"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "Code postal"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "Pays"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "FAX"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "Bip"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "Avertissement"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-"Ceci inclut toutes les données du carnet d'adresse situées dans cette "
-"entrée. Veuillez vérifier si vous voulez réaliser cette opération, toutes "
-"les données seront définitivement perdues, il n'y a pas de moyen pour GOsa "
-"de les récupérer."
-
-#: addons/addressbook/remove.tpl:10
-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 "
-"'Annuler' pour abandonner."
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "Appel en cours ..."
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "Appeler"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "Carnet d'adresses"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:12
-msgid "GOsa related objects"
-msgstr "Objets liés à GOsa"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "Ceci fait quelque chose"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "Appeler de %s vers %s maintenant ?"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr "Erreur"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr ""
-"Vous n'avez pas de numéro de téléphone personnel indiqué. Veuillez rectifier "
-"cela afin de pouvoir faire des appels directs."
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-msgid "LDAP error"
-msgstr "Erreur LDAP"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-msgid "Permission"
-msgstr "Permissions"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "Enregistrer le contact %s au format vcard"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "Envoyer un message à %s"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "Carnet d'adresses général"
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr "Base de données des utilisateurs"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr "Contact enregistré dans '%s'"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Création d'une nouvelle entrée dans"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "Tout"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "Prénom"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "Téléphone du bureau"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "GSM"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "Téléphone personnel"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "ID de l'utilisateur"
-
-#: addons/addressbook/class_addressbook.inc:719
-msgid "Telephone number"
-msgstr "Numéro de téléphone"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "Fax"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-"Impossible de créer un DN unique pour cette entrée. Veuillez remplir plus de "
-"champs."
-
-#: addons/addressbook/class_addressbook.inc:853
-msgid "Addressbook entries"
-msgstr "Entrées du carnet d'adresses"
-
-#: addons/addressbook/class_addressbook.inc:854
-msgid "Addressbook related objects"
-msgstr "objets liés au carnet d'adresse"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "Extensions"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "Nom de famille"
-
-#: addons/addressbook/class_addressbook.inc:864
-msgid "Telefon number"
-msgstr "Numéro de téléphone"
-
-#: addons/addressbook/class_addressbook.inc:865
-msgid "Fax number"
-msgstr "Numéro de fax"
-
-#: addons/addressbook/class_addressbook.inc:866
-msgid "Mobile number"
-msgstr "Numéro de GSM"
-
-#: addons/addressbook/class_addressbook.inc:867
-msgid "Home phone number"
-msgstr "Numéro de téléphone privé"
-
-#: addons/addressbook/class_addressbook.inc:868
-msgid "User identification"
-msgstr "Information Utilisateur"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "Adresse de messagerie"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "Entreprise"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "Lieu"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "Adresse postale"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Département"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "Titre"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr "Adresse postale personnelle"
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "Nom complet"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "Choisissez le département où l'entrée sera stockée"
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr "Nom de famille"
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr "Prénom"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "Contact"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "Information"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"L'extension gérant les listes de numéros de téléphone permet de les mettre à "
-"disposition de vos utilisateurs. Vous pouvez utiliser les [*] dans vos "
-"recherches, comme dans 'Go*us' pour trouver 'Gonicus'. Utilisez les filtres "
-"ci dessous pour réduire l'étendue de votre recherche."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "Actions"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "Ajouter une entrée"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "Modifier une entrée"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "Supprimer une entrée"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "Filtres"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "Sélectionnez afin d'afficher les utilisateurs habituels"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "Afficher les entrées de l'organisation"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr ""
-"Sélectionner pour afficher les utilisateurs présent dans le carnet d'adresse"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "Afficher les entrées du carnet d'adresses"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "Afficher les résultats pour le département"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "Sélectionner le département où sera effectuée la recherche"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "Objet correspondant"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "Indiquez l'objet dans lequel la recherche sera effectuée"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "Recherche de"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "Phrase de recherche"
diff --git a/gosa-plugins/addressbook/locale/it/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/it/LC_MESSAGES/messages.po
deleted file mode 100644
index c6c2833eb..000000000
--- a/gosa-plugins/addressbook/locale/it/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,478 +0,0 @@
-# translation of messages.po to Italian
-# Copyright (c) 2005 B-Open Solutions srl - http://www.bopen.it/
-# Copyright (c) 2005 Alessandro Amici
-# Alessandro Amici , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2005-11-18 15:26+0100\n"
-"Last-Translator: Alessandro Amici \n"
-"Language-Team: Italian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9.1\n"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Internal error"
-msgstr "Terminal Server"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Nome applicazione"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "Personale"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "Cognome"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "Iniziali"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "Titolo onorifico"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "Privato"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "Indirizzo"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "Telefono"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "Cellulare"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "Indirizzo email"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "Organizzazione"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "Azienda"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "Dipartimento"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "Città "
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "CAP"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "Paese"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "FAX"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "Pager"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "Attenzione"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-
-#: addons/addressbook/remove.tpl:10
-#, fuzzy
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Quindi - Se sei sicuro - premi Rimuovi per continuare o Annulla"
-"i> per abortire."
-
-#: addons/addressbook/dial.tpl:3
-#, fuzzy
-msgid "Dial connection..."
-msgstr "Disconnessione "
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-#, fuzzy
-msgid "Dial"
-msgstr "disabilitato"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "Rubrica"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:12
-#, fuzzy
-msgid "GOsa related objects"
-msgstr "Gruppo di oggetti"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "Questo fa qualcosa"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:197
-#, fuzzy
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr "Devi specificare la tua 'Password attuale' per procedere."
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-#, fuzzy
-msgid "LDAP error"
-msgstr "Errore LDAP"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-#, fuzzy
-msgid "Permission"
-msgstr "Permessi"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:610
-#, fuzzy
-msgid "global addressbook"
-msgstr "Rubrica"
-
-#: addons/addressbook/class_addressbook.inc:613
-#, fuzzy
-msgid "user database"
-msgstr "Database"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, fuzzy, php-format
-msgid "Contact stored in '%s'"
-msgstr "Rimuovi"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Crea in"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "Nome"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "Telefono del lavoro"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "Cellolare"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "Telefono privato"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:719
-#, fuzzy
-msgid "Telephone number"
-msgstr "Numero di telefono"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "Fax"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:853
-#, fuzzy
-msgid "Addressbook entries"
-msgstr "Mostra contatti della rubrica"
-
-#: addons/addressbook/class_addressbook.inc:854
-#, fuzzy
-msgid "Addressbook related objects"
-msgstr "Mostra contatti della rubrica"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "Extra"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "Cognome"
-
-#: addons/addressbook/class_addressbook.inc:864
-#, fuzzy
-msgid "Telefon number"
-msgstr "Numero di telefono"
-
-#: addons/addressbook/class_addressbook.inc:865
-#, fuzzy
-msgid "Fax number"
-msgstr "Numero di telefono"
-
-#: addons/addressbook/class_addressbook.inc:866
-#, fuzzy
-msgid "Mobile number"
-msgstr "Cellulare"
-
-#: addons/addressbook/class_addressbook.inc:867
-#, fuzzy
-msgid "Home phone number"
-msgstr "Numero di telefono"
-
-#: addons/addressbook/class_addressbook.inc:868
-#, fuzzy
-msgid "User identification"
-msgstr "Amministrazione utenti"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "Indirizzo principale"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "Organizzazione"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "Località "
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "CAP"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Stato"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "Titolo"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "Nome comune"
-
-#: addons/addressbook/address_edit.tpl:7
-#, fuzzy
-msgid "Choose the department to store entry in"
-msgstr "Scegli il dipartimento di base per la ricerca"
-
-#: addons/addressbook/address_edit.tpl:30
-#, fuzzy
-msgid "Last name"
-msgstr "Scegli il tuo numero di telefono personale"
-
-#: addons/addressbook/address_edit.tpl:33
-#, fuzzy
-msgid "First name"
-msgstr "Liste di blocco"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "Contatto"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "Informazioni"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"Il plugin della lista telefonica permette di cercare le persone nel sito. "
-"Puoi utilizzare l'asterisco [*] come carattere jolly. Usa i filtri sotto per "
-"caratterizzaze la ricerca."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "Azioni"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "Aggiungi contatto"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "Modifica contatto"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "Elimina contatto"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "Filtri"
-
-#: addons/addressbook/contents.tpl:75
-#, fuzzy
-msgid "Select to see regular users"
-msgstr "Seleziona per vedere gli utenti template"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "Mostra contatti di organizzazioni"
-
-#: addons/addressbook/contents.tpl:76
-#, fuzzy
-msgid "Select to see users in addressbook"
-msgstr "Seleziona per vedere gli utenti di posta"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "Mostra contatti della rubrica"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "Mostra risultati per dipartimento"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "Scegli il dipartimento di base per la ricerca"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "Oggetto corrispondente"
-
-#: addons/addressbook/contents.tpl:100
-#, fuzzy
-msgid "Choose the object that will be searched in"
-msgstr "Scegli il dipartimento di base per la ricerca"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "Cerca"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "Ricerca"
-
-#~ msgid "Cancel"
-#~ msgstr "Annulla"
-
-#~ msgid "Save"
-#~ msgstr "Salva"
-
-#~ msgid "Delete"
-#~ msgstr "Rimuovi"
-
-#~ msgid "Address book"
-#~ msgstr "Rubrica"
-
-#, fuzzy
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "Mostra contatti della rubrica"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "Permessi"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "Non hai il permesso di cambiare la tua password."
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr ""
-#~ "Inserire un indirizzo di posta valido nel campo 'Indirizzo principale'."
diff --git a/gosa-plugins/addressbook/locale/messages.po b/gosa-plugins/addressbook/locale/messages.po
deleted file mode 100644
index 310a381c1..000000000
--- a/gosa-plugins/addressbook/locale/messages.po
+++ /dev/null
@@ -1,421 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: html/getvcard.php:39
-msgid "Internal error"
-msgstr ""
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr ""
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr ""
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr ""
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-
-#: addons/addressbook/remove.tpl:10
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr ""
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:12
-msgid "GOsa related objects"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-msgid "LDAP error"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-msgid "Permission"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:719
-msgid "Telephone number"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:853
-msgid "Addressbook entries"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:854
-msgid "Addressbook related objects"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:864
-msgid "Telefon number"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:865
-msgid "Fax number"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:866
-msgid "Mobile number"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:867
-msgid "Home phone number"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:868
-msgid "User identification"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr ""
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr ""
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr ""
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr ""
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr ""
diff --git a/gosa-plugins/addressbook/locale/nl/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/nl/LC_MESSAGES/messages.po
deleted file mode 100644
index 8bc567e71..000000000
--- a/gosa-plugins/addressbook/locale/nl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,442 +0,0 @@
-# translation of messages.po to Dutch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-# Alfred Schroeder , 2004.
-# Cajus Pollmeier , 2004.
-#
-# Translator:
-# Niels Klomp (CareWorks ICT Services) , 2005,2006,2007,2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2008-06-09 17:54+0100\n"
-"Last-Translator: Niels Klomp (CareWorks ICT Services) \n"
-"Language-Team: CareWorks ICT Services \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Internal error"
-msgstr "Terminal server"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Programmanaam"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "Persoonlijk"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "Naam"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "Initialen"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "Aanhef"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "Privé"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "Adres"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "Telefoon"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "GSM"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "E-mail"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "Bedrijfsmatig"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "Bedrijf"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "Afdeling"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "Plaats"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "Postcode"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "Land"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "Fax"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "Pieper"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "Waarschuwing"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-"Dit omvat alle adresboek data in dit record. Verzeker uzelf ervan dat dit "
-"hetgeen is dat u wenst, aangezien er geen manier voor GOsa is om deze data "
-"terug te halen."
-
-#: addons/addressbook/remove.tpl:10
-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' "
-"om te annuleren."
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "Bel..."
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "Kies"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "Adresboek"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr "GOsa"
-
-#: addons/addressbook/class_addressbook.inc:12
-#, fuzzy
-msgid "GOsa related objects"
-msgstr "Nieuw FAI object aanmaken"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "Dit doet iets"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "Nu van %s naar %s bellen?"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr "Fout"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr ""
-"Er moet een privé telefoonnummer opgegeven zijn om direkt te kunnen bellen"
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-msgid "LDAP error"
-msgstr "LDAP fout"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-#, fuzzy
-msgid "Permission"
-msgstr "Rechten"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "Sla contact voor %s op als vcard"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "Stuur E-mail naar %s"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "globaal adresboek"
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr "gebruiker database"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr "Contact opgeslagen in '%s'"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Maak invoer aan in"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "Alle"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "Voornaam"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "Telefoon werk"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "GSM"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "Telefoon privé"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "Gebruikers ID"
-
-#: addons/addressbook/class_addressbook.inc:719
-msgid "Telephone number"
-msgstr "Telefoonnummer"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "Fax"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-"Kan geen unieke DN aanmaken voor uw invoer. Vul a.u.b. meer formulier velden "
-"in."
-
-#: addons/addressbook/class_addressbook.inc:853
-#, fuzzy
-msgid "Addressbook entries"
-msgstr "Toon adresboek regels"
-
-#: addons/addressbook/class_addressbook.inc:854
-#, fuzzy
-msgid "Addressbook related objects"
-msgstr "Adresboek invoer ACLs"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "Plugins"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "Achternaam"
-
-#: addons/addressbook/class_addressbook.inc:864
-msgid "Telefon number"
-msgstr "Telefoonnummer"
-
-#: addons/addressbook/class_addressbook.inc:865
-msgid "Fax number"
-msgstr "FAX nummer"
-
-#: addons/addressbook/class_addressbook.inc:866
-msgid "Mobile number"
-msgstr "GSM nummer"
-
-#: addons/addressbook/class_addressbook.inc:867
-msgid "Home phone number"
-msgstr "Prive nummer"
-
-#: addons/addressbook/class_addressbook.inc:868
-msgid "User identification"
-msgstr "Gebruiker identificatie"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "E-mail adres"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "Organisatie"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "Plaats"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "Postadres"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Provincie"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "Titel"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr "Postadres thuis"
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "Algemene naam"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "Selecteer de afdeling waarin de invoer bewaard wordt."
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr "Achternaam"
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr "Voornaam"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "Contact"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "Informatie"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"De telefoonlijst module biedt zoek en weergave mogelijkheden binnen uw "
-"organisatie. U kunt een asterisk (*) gebruiken als wildcard. 'Go*us' zal "
-"bijvoorbeeld 'Gonicus' vinden. Gebruik de selectie mogelijkheden om uw "
-"zoekopdracht verder te verfijnen."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "Acties"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "Invoer toevoegen"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "Invoer bewerken"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "Invoer verwijderen"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "Filters"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "Selecteer om gewone gebruikers te tonen"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "Toon gebruikers binnen de organisatie"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr "Selecteer om gebruikers in het adresboek te zien"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "Toon adresboek regels"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "Toon resultaten voor afdeling"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "Selecteer de afdeling waarbinnen gezocht zal worden"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "Zoek op"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "Selecteer het object waarbinnen gezocht zal worden"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "Zoek naar"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "Zoekstring"
diff --git a/gosa-plugins/addressbook/locale/pl/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/pl/LC_MESSAGES/messages.po
deleted file mode 100644
index 2187f102c..000000000
--- a/gosa-plugins/addressbook/locale/pl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,484 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: polski\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2009-09-05 15:16+0100\n"
-"Last-Translator: Piort Rybicki \n"
-"Language-Team: Piotr Rybicki \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Polish\n"
-"X-Poedit-Country: POLAND\n"
-"X-Poedit-SourceCharset: iso-8859-2\n"
-"X-Poedit-Basepath: tedst\n"
-
-#: html/getvcard.php:39
-msgid "Internal error"
-msgstr "BÅÄ
d wewnÄtrzny"
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr "Brak parametrów!"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "Osobiste"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "ImiÄ"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "InicjaÅy"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "Osobisty tytuÅ"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "Prywatne"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "Adres"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "Telefon"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "Komórka"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "Email"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "Organizacyjne"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "Firma"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "Departament"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "Miasto"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "Kod pocztowy"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "Kraj"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "FAX"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "Pager"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "Ostrzeżenie"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-"Operacja odnosi siÄ do wszystkich danych ksiÄ
żki adresowej w tym elemencie. "
-"ProszÄ upewniÄ siÄ Å¼e jest to pożÄ
dana akcja, gdyż nie bÄdzie możliwoÅci "
-"powrotu."
-
-#: addons/addressbook/remove.tpl:10
-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 "
-"anulowaÄ."
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "PoÅÄ
czenie dzwonienia..."
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "Dzwonienie"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "KsiÄ
żka adresowa"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr "GOsa"
-
-#: addons/addressbook/class_addressbook.inc:12
-msgid "GOsa related objects"
-msgstr "PowiÄ
zane obiekty GOsa"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "To robi coÅ"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "ZadzwoniÄ teraz z '%s' do '%s'?"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr "BÅÄ
d"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr ""
-"Musisz ustawiÄ swój osobisty numer telefonu aby móc wykonywaÄ bezpoÅrednie "
-"poÅÄ
czenia."
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-msgid "LDAP error"
-msgstr "bÅÄ
d LDAP"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-msgid "Permission"
-msgstr "Uprawnienie"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "Zapisz kontakt dla %s jako wizytówka"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "WyÅlij email do %s"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "Globalna ksiÄ
żka adresowa"
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr "użyj bazy"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr "Kontakt zachowany w '%s'"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Tworzenie nowego elementu w"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "Wszystkie"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "ImiÄ"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "Telefon do pracy"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "Numer telefonu komórkowego"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "Telefon domowy"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "Identyfikator użytkownika"
-
-#: addons/addressbook/class_addressbook.inc:719
-msgid "Telephone number"
-msgstr "Numer telefonu"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "Fax"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-"Nie można utworzyÄ unikalnego DN dla tego elementu. ProszÄ wypeÅniÄ wiÄcej "
-"pól formularza."
-
-#: addons/addressbook/class_addressbook.inc:853
-msgid "Addressbook entries"
-msgstr "Wpisy ksiÄ
żki adresowej"
-
-#: addons/addressbook/class_addressbook.inc:854
-msgid "Addressbook related objects"
-msgstr "PowiÄ
zane obiekty ksiÄ
żki adresowej"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "Dodatki"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "Nazwisko"
-
-#: addons/addressbook/class_addressbook.inc:864
-msgid "Telefon number"
-msgstr "Numer telefonu"
-
-#: addons/addressbook/class_addressbook.inc:865
-msgid "Fax number"
-msgstr "Numer fax"
-
-#: addons/addressbook/class_addressbook.inc:866
-msgid "Mobile number"
-msgstr "Telefon komórkowy"
-
-#: addons/addressbook/class_addressbook.inc:867
-msgid "Home phone number"
-msgstr "Numer telefonu domowego"
-
-#: addons/addressbook/class_addressbook.inc:868
-msgid "User identification"
-msgstr "Identyfikacja użytkownika"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "Adres email"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "Organizacja"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "Lokalizacja"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "Adres pocztowy"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Stan"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "TytuÅ"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr "Adres domowy"
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "Nazwa potoczna"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "Wybierz departament do przechowania wpisu"
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr "Nazwisko"
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr "ImiÄ"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "Kontakt"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "Informacja"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"Dodatek lista telefonów udostÄpnia listÄ oraz mechanizmy wyszukiwania dla "
-"ludzi w firmie. Mozna podawaÄ gwiazdkÄ [*] np. 'Go*us' aby znaleÅ¼Ä "
-"'Gonicus'. Użyj filtrów poniżej aby zawÄziÄ wyniki wyszukiwania."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "Akcje"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "Dodaj pozycjÄ"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "Edycja pozycji"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "UsuÅ pozycjÄ"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "Filtry"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "Wybierz aby zobaczyÄ zwykÅych użytkowników"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "Pokaż elementy organizacyjne"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr "Wybierz aby zobaczyÄ użytkowników w ksiÄ
żce adresowej"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "Pokaż elementy ksiÄ
żki adresowej"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "WyÅwietl wyniki dla departamentu"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "Wybierz departament na którym wyszukiwanie bÄdzie bazowaÄ"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "Dopasuj obiekt"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "Wybierz obiekt w którym bÄdziesz przeszukiwaÄ"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "Szukaj dla"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "Poszukiwany napis"
-
-#~ msgid "You're about to delete the entry %s."
-#~ msgstr "Zamierzasz usunÄ
Ä element %s."
-
-#~ msgid "Cancel"
-#~ msgstr "Anuluj"
-
-#~ msgid "Save"
-#~ msgstr "Zapisz"
-
-#~ msgid "Delete"
-#~ msgstr "UsuÅ"
-
-#~ msgid "Address book"
-#~ msgstr "KsiÄ
żka adresowa"
-
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "Usuwanie wpisu ksiÄ
żki adresowej '%s' nieudane."
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "Uprawnienia"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "Brak uprawnieÅ do usuniÄcia tego departamentu."
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "Wymagane pole 'Nazwa' jest puste."
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr "Wymagane pole 'Podana nazwa' jest puste."
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "Pole 'Nazwa' zawiera niedozwolone znaki."
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "Pole 'Podana nazwa' zawiera niedozwolone znaki."
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "Pole 'Telefon' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "Pole 'Fax' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "Pole 'Komórka' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr "Pole 'Pager' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr "ProszÄ podaÄ prawidÅowy adres email w polu 'Podstawowy adres'"
diff --git a/gosa-plugins/addressbook/locale/pt_BR/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/pt_BR/LC_MESSAGES/messages.po
deleted file mode 100644
index a94377959..000000000
--- a/gosa-plugins/addressbook/locale/pt_BR/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,420 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: GOsa plugin - addressbook\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2010-03-12 18:14-0300\n"
-"Last-Translator: Marcos Amorim \n"
-"Language-Team: Marcos Amorim Clever de Oliveira \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: BRAZIL\n"
-
-#: html/getvcard.php:39
-msgid "Internal error"
-msgstr "Erro interno"
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr "Faltando parâmetros!"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "Pessoal"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "Nome"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "Iniciais"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "TÃtulo pessoal"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74
-#: addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "Privado"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "Endereço"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221
-#: addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "Telefone"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106
-#: addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "Celular"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "Email"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "Organização"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "Empresa"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "Departamento"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "Cidade"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "Código postal"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "PaÃs"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "FAX"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "Pager"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "Aviso"
-
-#: addons/addressbook/remove.tpl:6
-msgid "This includes all addressbook data in this entry. Please double check if your really want to do this since there is no way for GOsa to get your data back."
-msgstr "Isto inclui todos os dados do catálogo de endereços nesta entrada. Por favor, verifique se você realmente quer isto pois o GOsa não tem como restaurar seus dados anteriores."
-
-#: addons/addressbook/remove.tpl:10
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Portanto - se você está certo - pressione 'Excluir' para continuar ou \"Cancelar\" para abortar."
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "Conexão discada"
-
-#: addons/addressbook/dial.tpl:10
-#: addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "Dial"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859
-#: addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "Catálogo de Endereços"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr "GOsa"
-
-#: addons/addressbook/class_addressbook.inc:12
-msgid "GOsa related objects"
-msgstr "Exibir objetos de departamento"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "Isto faz algo"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "Chamada de %s para %s agora?"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr "Erro"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "You need to set your personal phone number in order to perform direct dials."
-msgstr "Você não possui um número pessoal de telefone definido. Por favor, altere isso parar permitir chamadas diretas."
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-msgid "LDAP error"
-msgstr "Erro LDAP"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-msgid "Permission"
-msgstr "Permissão"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "Salvar contato para %s como vcard"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "Enviar email para %s"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "Catálogo de Endereços global"
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr "banco de dados de usuário"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr "Contato armazenado em '%s'"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Criando nova entrada em"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "Tudo"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "Nome"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "Telefone comercial"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "Telefone celular"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "Telefone residencial"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "ID do usuário"
-
-#: addons/addressbook/class_addressbook.inc:719
-msgid "Telephone number"
-msgstr "Número de telefone"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "Fax"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid "Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr "Não foi possÃvel criar um DN único para sua entrada. Por favor, preencha mais campos do formulário."
-
-#: addons/addressbook/class_addressbook.inc:853
-msgid "Addressbook entries"
-msgstr "Entradas de catálogo de endereços"
-
-#: addons/addressbook/class_addressbook.inc:854
-msgid "Addressbook related objects"
-msgstr "Objetos relacionados no catálogo de endereços"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "Addons"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "Sobrenome"
-
-#: addons/addressbook/class_addressbook.inc:864
-msgid "Telefon number"
-msgstr "Número de Telefone"
-
-#: addons/addressbook/class_addressbook.inc:865
-msgid "Fax number"
-msgstr "Número do Fax"
-
-#: addons/addressbook/class_addressbook.inc:866
-msgid "Mobile number"
-msgstr "Número do celular"
-
-#: addons/addressbook/class_addressbook.inc:867
-msgid "Home phone number"
-msgstr "Telefone residêncial"
-
-#: addons/addressbook/class_addressbook.inc:868
-msgid "User identification"
-msgstr "Identificação do usuário"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "Endereço de Email"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "Organização"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "Localização"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "Código Postal"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Estado"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "TÃtulo"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr "Endereço residêncial"
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "Nome comum"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "Escolha o departamento para armazenar a entrada em"
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr "Ãltimo Nome"
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr "Primeiro Nome"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "Contato"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "Informação"
-
-#: addons/addressbook/contents.tpl:37
-msgid "The telephone list plugin provides list and search facilities for the people in your site. You may want to specify the asterisk [*] like in 'Go*us' to find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr "O plugin de lista telefônica provê lista e funções de busca para as pessoas. Você pode especificar um asterisco [*] como em 'Go*us' para procurar 'Gonicus'. Use os filtros abaixo para melhorar sua pesquisa."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "Ações"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "Adicionar entrada"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "Editar entrada"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "Remover entrada"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "Filtros"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "Selecione para ver usuários regulares"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "Exibir entradas organizacionais"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr "Selecione para ver usuários no catálogo de endereços"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "Exibir entradas de catálogo de endereços"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "Exibir resultados para departamento"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "Escolha o departamento na qual a pesquisa sera baseada"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "Objeto combinado"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "Escolha o objeto que será procurado em"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "Procurar por"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "Procura por"
-
diff --git a/gosa-plugins/addressbook/locale/ru/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/ru/LC_MESSAGES/messages.po
deleted file mode 100644
index 8997bd95e..000000000
--- a/gosa-plugins/addressbook/locale/ru/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,506 +0,0 @@
-# Translation of messages.po to Russian
-# Valia V. Vaneeva , 2004.
-# $Id: messages.po,v 1.61 2005/04/18 10:37:13 migor-guest Exp $
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2005-04-18 14:35+0300\n"
-"Last-Translator: Igor Muratov \n"
-"Language-Team: ALT Linux Team\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: poEdit 1.3.1\n"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Internal error"
-msgstr "ТеÑминал-ÑеÑвеÑ"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "ÐÑиложение"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "ÐонÑакÑ"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "ФамилиÑ"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "ÐÑÑеÑÑво"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "ÐбÑаÑение"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "ÐиÑнÑй"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "ÐдÑеÑ"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "ТелеÑон"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "ÐобилÑнÑй"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "Email"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "ÐÑганизаÑиÑ"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "ÐомпаниÑ"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "ÐодÑазделение"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "ÐоÑод"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "ÐоÑÑовÑй индекÑ"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "СÑÑана"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "ФакÑ"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "ÐейджеÑ"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "ÐÑедÑпÑеждение"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-"ÐÑо вклÑÑÐ°ÐµÑ Ð²Ñе обÑекÑÑ Ð°Ð´ÑеÑной книги. ÐÑовеÑÑе дейÑÑвиÑелÑно ли ÑÑо Ñак, "
-"поÑколÑÐºÑ GOsa не ÑÐ¼Ð¾Ð¶ÐµÑ Ð¾ÑмениÑÑ ÑезÑлÑÑаÑÑ ÑÑой опеÑаÑии."
-
-#: addons/addressbook/remove.tpl:10
-#, fuzzy
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"ÐÑли Ð²Ñ ÑвеÑÐµÐ½Ñ Ð² ÑвоиÑ
дейÑÑвиÑÑ
, нажмиÑе на ÐºÐ½Ð¾Ð¿ÐºÑ Ð£Ð´Ð°Ð»Ð¸ÑÑ , инаÑе "
-"нажмиÑе ÐÑмена ."
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "Соединение..."
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "Ðвонок"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "ÐдÑеÑÐ½Ð°Ñ ÐºÐ½Ð¸Ð³Ð°"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:12
-#, fuzzy
-msgid "GOsa related objects"
-msgstr "ÐбÑÐµÐºÑ Ð³ÑÑппÑ"
-
-#: addons/addressbook/class_addressbook.inc:24
-msgid "This does something"
-msgstr "ЧÑо-Ñо бÑдеÑ"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "Ðвоним Ñ %s на %s?"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:197
-#, fuzzy
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr ""
-"У Ð²Ð°Ñ Ð½ÐµÑ Ð¿ÐµÑÑоналÑного набоÑа ÑелеÑонов. ÐаÑÑÑойÑе ÑÑо пÑежде Ñем звониÑÑ."
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-#, fuzzy
-msgid "LDAP error"
-msgstr "ÐÑибка LDAP:"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-#, fuzzy
-msgid "Permission"
-msgstr "ÐÑава Ð´Ð»Ñ Ñленов гÑÑппÑ"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "СоÑ
ÑаниÑÑ ÐºÐ¾Ð½ÑакÑнÑÑ Ð¸Ð½ÑоÑмаÑÐ¸Ñ %s в ÑоÑмаÑе vcard"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "ÐÑпÑавиÑÑ %s ÑообÑение по Ñл. поÑÑе"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "обÑÐ°Ñ Ð°Ð´ÑеÑÐ½Ð°Ñ ÐºÐ½Ð¸Ð³Ð°"
-
-#: addons/addressbook/class_addressbook.inc:613
-#, fuzzy
-msgid "user database"
-msgstr "ÐÐ°Ð·Ñ Ð´Ð°Ð½Ð½ÑÑ
"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, fuzzy, php-format
-msgid "Contact stored in '%s'"
-msgstr "ÐонÑÐ°ÐºÑ ÑоÑ
Ñанен в %s"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "Создание нового обÑекÑа в"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "ÐÑе"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "ÐмÑ"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "РабоÑий ÑелеÑон"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "СоÑовÑй ÑелеÑон"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "ÐомаÑний ÑелеÑон"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "ÐденÑиÑикаÑÐ¾Ñ Ð¿Ð¾Ð»ÑзоваÑелÑ"
-
-#: addons/addressbook/class_addressbook.inc:719
-#, fuzzy
-msgid "Telephone number"
-msgstr "ТелеÑоннÑе номеÑа"
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "ФакÑ"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr ""
-"Ðевозможно ÑоздаÑÑ ÑникалÑнÑй DN Ð´Ð»Ñ Ð¾Ð±ÑекÑа. ÐаполниÑе вÑе Ð¿Ð¾Ð»Ñ ÑоÑмÑ."
-
-#: addons/addressbook/class_addressbook.inc:853
-#, fuzzy
-msgid "Addressbook entries"
-msgstr "ÐоказаÑÑ Ð¾Ð±ÑекÑÑ Ð°Ð´ÑеÑной книги"
-
-#: addons/addressbook/class_addressbook.inc:854
-#, fuzzy
-msgid "Addressbook related objects"
-msgstr "ÐоказаÑÑ Ð¾Ð±ÑекÑÑ Ð°Ð´ÑеÑной книги"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "ÐополниÑелÑно"
-
-#: addons/addressbook/class_addressbook.inc:862
-#, fuzzy
-msgid "Surename"
-msgstr "ÐÐ¼Ñ ÑеÑвеÑа"
-
-#: addons/addressbook/class_addressbook.inc:864
-#, fuzzy
-msgid "Telefon number"
-msgstr "ТелеÑоннÑе номеÑа"
-
-#: addons/addressbook/class_addressbook.inc:865
-#, fuzzy
-msgid "Fax number"
-msgstr "ТеÑминал"
-
-#: addons/addressbook/class_addressbook.inc:866
-#, fuzzy
-msgid "Mobile number"
-msgstr "ÐомаÑний ÑелеÑон"
-
-#: addons/addressbook/class_addressbook.inc:867
-#, fuzzy
-msgid "Home phone number"
-msgstr "ТелеÑоннÑе номеÑа"
-
-#: addons/addressbook/class_addressbook.inc:868
-#, fuzzy
-msgid "User identification"
-msgstr "ÐнÑоÑмаÑиÑ"
-
-#: addons/addressbook/class_addressbook.inc:869
-#, fuzzy
-msgid "Mail address"
-msgstr "MAC-адÑеÑ"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "ÐÑганизаÑиÑ"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "ÐеÑÑоположение"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-#, fuzzy
-msgid "Postal address"
-msgstr "ÐоÑÑовÑй индекÑ"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "Ðдм. единиÑа"
-
-#: addons/addressbook/class_addressbook.inc:878
-#, fuzzy
-msgid "Title"
-msgstr "ФайлÑ"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr ""
-
-#: addons/addressbook/class_addressbook.inc:880
-#, fuzzy
-msgid "Common name"
-msgstr "ÐеÑÑоположение"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "ÐÑбÑаÑÑ Ñаздел, Ð´Ð»Ñ Ñ
ÑÐ°Ð½ÐµÐ½Ð¸Ñ Ð¾Ð±ÑекÑа"
-
-#: addons/addressbook/address_edit.tpl:30
-#, fuzzy
-msgid "Last name"
-msgstr "СпиÑок"
-
-#: addons/addressbook/address_edit.tpl:33
-#, fuzzy
-msgid "First name"
-msgstr "СпиÑок"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "ÐонÑакÑ"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "ÐнÑоÑмаÑиÑ"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"ÐÑÐ¾Ñ Ð¼Ð¾Ð´ÑÐ»Ñ Ð¿ÑедоÑÑавлÑÐµÑ Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾ÑÑи пÑоÑмоÑÑа и поиÑка инÑоÑмаÑии Ð´Ð»Ñ "
-"полÑзоваÑелей ваÑего ÑайÑа. Ð Ñаблоне Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе иÑполÑзоваÑÑ Ð·Ð²ÐµÐ·Ð´Ð¾ÑÐºÑ [*], "
-"напÑимеÑ, \"Ð*н\", ÑÑÐ¾Ð±Ñ Ð½Ð°Ð¹Ñи Ð¸Ð¼Ñ \"Ðван\". УÑоÑниÑÑ ÑезÑлÑÑаÑÑ Ð¿Ð¾Ð¸Ñка "
-"можно Ñ Ð¿Ð¾Ð¼Ð¾ÑÑÑ ÑилÑÑÑов ниже."
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "ÐейÑÑвиÑ"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "ÐобавиÑÑ Ð¾Ð±ÑекÑ"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "РедакÑиоваÑÑ Ð¾Ð±ÑекÑ"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "УдалиÑÑ Ð¾Ð±ÑекÑ"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "ФилÑÑÑÑ"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "ÐÑбеÑиÑе, ÑÑÐ¾Ð±Ñ Ð¿ÑоÑмоÑÑеÑÑ Ð¿Ð¾Ð»ÑзоваÑелей"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "ÐоказаÑÑ Ð¾ÑганизаÑионнÑе обÑекÑÑ"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr "ÐÑбеÑиÑе, ÑÑÐ¾Ð±Ñ Ð¿ÑоÑмоÑÑеÑÑ Ð¿Ð¾Ð»ÑзоваÑелей в адÑеÑной книге"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "ÐоказаÑÑ Ð¾Ð±ÑекÑÑ Ð°Ð´ÑеÑной книги"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "ÐоказаÑÑ ÑезÑлÑÑаÑÑ Ð´Ð»Ñ Ð¿Ð¾Ð´ÑазделениÑ"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "ÐÑбÑаÑÑ Ñаздел, Ð´Ð»Ñ ÐºÐ¾ÑоÑого бÑÐ´ÐµÑ Ð¾ÑÑÑеÑÑвлен поиÑк"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "СооÑвеÑÑÑвÑÑÑий обÑекÑ"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "ÐÑбеÑиÑе обÑекÑ, в коÑоÑом бÑÐ´ÐµÑ Ð¾ÑÑÑеÑÑвлен поиÑк"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "ÐоиÑк"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "СÑÑока поиÑка"
-
-#~ msgid "You're about to delete the entry %s."
-#~ msgstr "ÐÑ ÑобиÑаеÑеÑÑ ÑдалиÑÑ Ð¾Ð±ÑÐµÐºÑ %s."
-
-#~ msgid "Cancel"
-#~ msgstr "ÐÑмена"
-
-#~ msgid "Save"
-#~ msgstr "СоÑ
ÑаниÑÑ"
-
-#~ msgid "Delete"
-#~ msgstr "УдалиÑÑ"
-
-#~ msgid "Address book"
-#~ msgstr "ÐдÑеÑÐ½Ð°Ñ ÐºÐ½Ð¸Ð³Ð°"
-
-#, fuzzy
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "ÐоказаÑÑ Ð¾Ð±ÑекÑÑ Ð°Ð´ÑеÑной книги"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "ÐÑава Ð´Ð»Ñ Ñленов гÑÑппÑ"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "У Ð²Ð°Ñ Ð½ÐµÐ´Ð¾ÑÑаÑоÑно пÑав Ð´Ð»Ñ ÑÐ´Ð°Ð»ÐµÐ½Ð¸Ñ ÑÑого подÑазделениÑ."
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐмÑ\" не заполнено."
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐиÑное имÑ\" не заполнено."
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐмÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑе ÑимволÑ."
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐиÑное имÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑе ÑимволÑ."
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ТелеÑон\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ФакÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐобилÑнÑй\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐºÐ¾ÑÑекÑнÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐейджеÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐºÐ¾ÑÑекÑнÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr "ÐведиÑе коÑÑекÑное знаÑение в поле \"ÐÑновной адÑеÑ\"."
diff --git a/gosa-plugins/addressbook/locale/zh/LC_MESSAGES/messages.po b/gosa-plugins/addressbook/locale/zh/LC_MESSAGES/messages.po
deleted file mode 100644
index 3db760521..000000000
--- a/gosa-plugins/addressbook/locale/zh/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,494 +0,0 @@
-# translation of messages.po to Chinese Simplified
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-# Jiang Xin , 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:28+0100\n"
-"PO-Revision-Date: 2007-06-03 12:27+0800\n"
-"Last-Translator: Jiang Xin \n"
-"Language-Team: Chinese Simplified \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Internal error"
-msgstr "ç»ç«¯æå¡å¨"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "åºç¨ç¨åºå称"
-
-#: addons/addressbook/address_info.tpl:18
-#: addons/addressbook/address_edit.tpl:24
-msgid "Personal"
-msgstr "个人"
-
-#: addons/addressbook/address_info.tpl:24
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:698
-#: addons/addressbook/class_addressbook.inc:708
-#: addons/addressbook/class_addressbook.inc:735
-#: addons/addressbook/contents.tpl:14
-msgid "Name"
-msgstr "å称"
-
-#: addons/addressbook/address_info.tpl:32
-#: addons/addressbook/class_addressbook.inc:877
-#: addons/addressbook/address_edit.tpl:48
-msgid "Initials"
-msgstr "ä¸é´å"
-
-#: addons/addressbook/address_info.tpl:40
-#: addons/addressbook/address_edit.tpl:60
-msgid "Personal title"
-msgstr "个人称è°"
-
-#: addons/addressbook/address_info.tpl:53
-#: addons/addressbook/address_edit.tpl:74 addons/addressbook/contents.tpl:15
-msgid "Private"
-msgstr "ç§äººçµè¯"
-
-#: addons/addressbook/address_info.tpl:59
-#: addons/addressbook/address_info.tpl:155
-#: addons/addressbook/address_edit.tpl:80
-#: addons/addressbook/address_edit.tpl:207
-msgid "Address"
-msgstr "ä½å"
-
-#: addons/addressbook/address_info.tpl:67
-#: addons/addressbook/address_info.tpl:163
-#: addons/addressbook/class_addressbook.inc:716
-#: addons/addressbook/address_edit.tpl:94
-#: addons/addressbook/address_edit.tpl:221 addons/addressbook/contents.tpl:14
-msgid "Phone"
-msgstr "çµè¯"
-
-#: addons/addressbook/address_info.tpl:75
-#: addons/addressbook/class_addressbook.inc:725
-#: addons/addressbook/address_edit.tpl:106 addons/addressbook/contents.tpl:15
-msgid "Mobile"
-msgstr "ææº"
-
-#: addons/addressbook/address_info.tpl:83
-#: addons/addressbook/class_addressbook.inc:740
-#: addons/addressbook/address_edit.tpl:118
-msgid "Email"
-msgstr "é®ä»¶"
-
-#: addons/addressbook/address_info.tpl:99
-#: addons/addressbook/address_edit.tpl:134
-msgid "Organizational"
-msgstr "ç»ç»"
-
-#: addons/addressbook/address_info.tpl:109
-#: addons/addressbook/address_edit.tpl:143
-msgid "Company"
-msgstr "å
¬å¸"
-
-#: addons/addressbook/address_info.tpl:117
-#: addons/addressbook/class_addressbook.inc:872
-#: addons/addressbook/address_edit.tpl:155
-msgid "Department"
-msgstr "é¨é¨"
-
-#: addons/addressbook/address_info.tpl:125
-#: addons/addressbook/address_edit.tpl:167
-msgid "City"
-msgstr "åå¸"
-
-#: addons/addressbook/address_info.tpl:133
-#: addons/addressbook/address_edit.tpl:179
-msgid "Postal code"
-msgstr "é®ç¼"
-
-#: addons/addressbook/address_info.tpl:141
-#: addons/addressbook/address_edit.tpl:191
-msgid "Country"
-msgstr "å½å®¶"
-
-#: addons/addressbook/address_info.tpl:171
-#: addons/addressbook/address_edit.tpl:233
-msgid "FAX"
-msgstr "ä¼ ç"
-
-#: addons/addressbook/address_info.tpl:179
-#: addons/addressbook/class_addressbook.inc:728
-#: addons/addressbook/class_addressbook.inc:870
-#: addons/addressbook/address_edit.tpl:246
-msgid "Pager"
-msgstr "å¼æº"
-
-#: addons/addressbook/remove.tpl:2
-msgid "Warning"
-msgstr "è¦å"
-
-#: addons/addressbook/remove.tpl:6
-msgid ""
-"This includes all addressbook data in this entry. Please double check if "
-"your really want to do this since there is no way for GOsa to get your data "
-"back."
-msgstr ""
-"è¿ä¸ªæ¡ç®å
å«ææçå°åç°¿æ°æ®ï¼è¯·å次æ£æ¥æ¨æ¯å¦è¦è¿ä¹åï¼å 为 GOsa 没æåæ³å°"
-"æ¨çæ°æ®æ¾åã"
-
-#: addons/addressbook/remove.tpl:10
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "æ以ï¼å¦ææ¨ç¡®å®ï¼è¯·æâå é¤â继ç»ï¼å¦åæâåæ¶âéåºã"
-
-#: addons/addressbook/dial.tpl:3
-msgid "Dial connection..."
-msgstr "æ¨å·ä¸..."
-
-#: addons/addressbook/dial.tpl:10 addons/addressbook/class_addressbook.inc:463
-#: addons/addressbook/class_addressbook.inc:470
-#: addons/addressbook/class_addressbook.inc:474
-#: addons/addressbook/class_addressbook.inc:598
-msgid "Dial"
-msgstr "æ¨å·"
-
-#: addons/addressbook/class_addressbook.inc:11
-#: addons/addressbook/class_addressbook.inc:12
-#: addons/addressbook/class_addressbook.inc:23
-#: addons/addressbook/class_addressbook.inc:853
-#: addons/addressbook/class_addressbook.inc:854
-#: addons/addressbook/class_addressbook.inc:859 addons/addressbook/main.inc:43
-msgid "Addressbook"
-msgstr "å°åç°¿"
-
-#: addons/addressbook/class_addressbook.inc:11
-msgid "GOsa"
-msgstr "GOsa"
-
-#: addons/addressbook/class_addressbook.inc:12
-#, fuzzy
-msgid "GOsa related objects"
-msgstr "åå»ºæ° FAI 对象"
-
-#: addons/addressbook/class_addressbook.inc:24
-#, fuzzy
-msgid "This does something"
-msgstr "******"
-
-#: addons/addressbook/class_addressbook.inc:193
-#, php-format
-msgid "Dial from %s to %s now?"
-msgstr "ç°å¨ä» %s æ¨å·å° %s ä¹ï¼"
-
-#: addons/addressbook/class_addressbook.inc:197
-msgid "Error"
-msgstr "é误"
-
-#: addons/addressbook/class_addressbook.inc:197
-#, fuzzy
-msgid ""
-"You need to set your personal phone number in order to perform direct dials."
-msgstr "æ¨å°æªè®¾ç½®ä¸ªäººçµè¯å·ç ãè¦æ³ä½¿ç¨ç´æ¥æ¨å·éè¦ä¿®æ¹ä¸ªäººçµè¯å·ç ã"
-
-#: addons/addressbook/class_addressbook.inc:225
-#: addons/addressbook/class_addressbook.inc:799
-#, fuzzy
-msgid "LDAP error"
-msgstr "LDAP é误:"
-
-#: addons/addressbook/class_addressbook.inc:233
-#: addons/addressbook/class_addressbook.inc:341
-#, fuzzy
-msgid "Permission"
-msgstr "å
许"
-
-#: addons/addressbook/class_addressbook.inc:480
-#, php-format
-msgid "Save contact for %s as vcard"
-msgstr "ä¿å %s çå
容为 vcard"
-
-#: addons/addressbook/class_addressbook.inc:486
-#, php-format
-msgid "Send mail to %s"
-msgstr "åéé®ä»¶å° %s"
-
-#: addons/addressbook/class_addressbook.inc:610
-msgid "global addressbook"
-msgstr "å
¨å±å°åç°¿"
-
-#: addons/addressbook/class_addressbook.inc:613
-msgid "user database"
-msgstr "ç¨æ·æ°æ®åº"
-
-#: addons/addressbook/class_addressbook.inc:617
-#, php-format
-msgid "Contact stored in '%s'"
-msgstr "èç³»æ¹å¼ä¿åå° '%s'"
-
-#: addons/addressbook/class_addressbook.inc:619
-msgid "Creating new entry in"
-msgstr "å建æ°æ¡ç®å°"
-
-#: addons/addressbook/class_addressbook.inc:658
-msgid "All"
-msgstr "å
¨é¨"
-
-#: addons/addressbook/class_addressbook.inc:658
-#: addons/addressbook/class_addressbook.inc:702
-#: addons/addressbook/class_addressbook.inc:711
-#: addons/addressbook/class_addressbook.inc:732
-#: addons/addressbook/class_addressbook.inc:863
-msgid "Given name"
-msgstr "å"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Work phone"
-msgstr "å·¥ä½çµè¯"
-
-#: addons/addressbook/class_addressbook.inc:659
-msgid "Cell phone"
-msgstr "移å¨çµè¯"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "Home phone"
-msgstr "ä½å®
çµè¯"
-
-#: addons/addressbook/class_addressbook.inc:660
-msgid "User ID"
-msgstr "ç¨æ· ID"
-
-#: addons/addressbook/class_addressbook.inc:719
-#, fuzzy
-msgid "Telephone number"
-msgstr "çµè¯å·ç "
-
-#: addons/addressbook/class_addressbook.inc:722
-#: addons/addressbook/contents.tpl:14
-msgid "Fax"
-msgstr "ä¼ ç"
-
-#: addons/addressbook/class_addressbook.inc:748
-msgid ""
-"Cannot create a unique DN for your entry. Please fill more formular fields."
-msgstr "æ æ³ä¸ºæ¨çæ¡ç®å建ä¸ä¸ªå¯ä¸ DNã请填åæ´å¤å段ã"
-
-#: addons/addressbook/class_addressbook.inc:853
-#, fuzzy
-msgid "Addressbook entries"
-msgstr "æ¾ç¤ºå°åç°¿è®°å½"
-
-#: addons/addressbook/class_addressbook.inc:854
-#, fuzzy
-msgid "Addressbook related objects"
-msgstr "ä¿åå°åç°¿æ¡ç®å¤±è´¥"
-
-#: addons/addressbook/class_addressbook.inc:858
-msgid "Addons"
-msgstr "æ件"
-
-#: addons/addressbook/class_addressbook.inc:862
-msgid "Surename"
-msgstr "å§"
-
-#: addons/addressbook/class_addressbook.inc:864
-#, fuzzy
-msgid "Telefon number"
-msgstr "çµè¯å·ç "
-
-#: addons/addressbook/class_addressbook.inc:865
-#, fuzzy
-msgid "Fax number"
-msgstr "ç³»åå·"
-
-#: addons/addressbook/class_addressbook.inc:866
-#, fuzzy
-msgid "Mobile number"
-msgstr "çµè¯å·ç "
-
-#: addons/addressbook/class_addressbook.inc:867
-#, fuzzy
-msgid "Home phone number"
-msgstr "çµè¯å·ç "
-
-#: addons/addressbook/class_addressbook.inc:868
-#, fuzzy
-msgid "User identification"
-msgstr "ç¨æ·ä¿¡æ¯"
-
-#: addons/addressbook/class_addressbook.inc:869
-msgid "Mail address"
-msgstr "é®ä»¶å°å"
-
-#: addons/addressbook/class_addressbook.inc:871
-msgid "Organization"
-msgstr "ç»ç»/å
¬å¸"
-
-#: addons/addressbook/class_addressbook.inc:873
-msgid "Location"
-msgstr "ä½ç½®"
-
-#: addons/addressbook/class_addressbook.inc:874
-#: addons/addressbook/class_addressbook.inc:875
-msgid "Postal address"
-msgstr "å°å"
-
-#: addons/addressbook/class_addressbook.inc:876
-msgid "State"
-msgstr "å·/ç"
-
-#: addons/addressbook/class_addressbook.inc:878
-msgid "Title"
-msgstr "称è°"
-
-#: addons/addressbook/class_addressbook.inc:879
-msgid "Home postal address"
-msgstr "ä½å®
å°å"
-
-#: addons/addressbook/class_addressbook.inc:880
-msgid "Common name"
-msgstr "常ç¨å"
-
-#: addons/addressbook/address_edit.tpl:7
-msgid "Choose the department to store entry in"
-msgstr "éæ©æ¾ç½®æ¡ç®çé¨é¨"
-
-#: addons/addressbook/address_edit.tpl:30
-msgid "Last name"
-msgstr "å§"
-
-#: addons/addressbook/address_edit.tpl:33
-msgid "First name"
-msgstr "å"
-
-#: addons/addressbook/contents.tpl:15
-msgid "Contact"
-msgstr "èç³»"
-
-#: addons/addressbook/contents.tpl:33
-msgid "Information"
-msgstr "æ示信æ¯"
-
-#: addons/addressbook/contents.tpl:37
-msgid ""
-"The telephone list plugin provides list and search facilities for the people "
-"in your site. You may want to specify the asterisk [*] like in 'Go*us' to "
-"find 'Gonicus'. Use the filters below to narrow down your search."
-msgstr ""
-"çµè¯å表æ件æä¾äºé对æ¨ç«ç¹ç¨æ·çå表åæ¥è¯¢åè½ãæ¨å¯ä»¥ç¨éé
符[*]ï¼"
-"å¦âGo*usâææ¥æ¥è¯¢âGonicusâã使ç¨ä¸é¢çè¿æ»¤å¨æ¥è¿æ»¤æ¥è¯¢ç»æã"
-
-#: addons/addressbook/contents.tpl:42
-msgid "Actions"
-msgstr "å¨ä½"
-
-#: addons/addressbook/contents.tpl:48
-msgid "Add entry"
-msgstr "æ·»å è®°å½"
-
-#: addons/addressbook/contents.tpl:54
-msgid "Edit entry"
-msgstr "ç¼è¾è®°å½"
-
-#: addons/addressbook/contents.tpl:58
-msgid "Remove entry"
-msgstr "å é¤è®°å½"
-
-#: addons/addressbook/contents.tpl:65
-msgid "Filters"
-msgstr "è¿æ»¤å¨"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Select to see regular users"
-msgstr "éæ©æ¥çæ®éç¨æ·"
-
-#: addons/addressbook/contents.tpl:75
-msgid "Show organizational entries"
-msgstr "æ¾ç¤ºç»ç»è®°å½"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Select to see users in addressbook"
-msgstr "éæ©æ¥çå°åç°¿ä¸ç¨æ·"
-
-#: addons/addressbook/contents.tpl:76
-msgid "Show addressbook entries"
-msgstr "æ¾ç¤ºå°åç°¿è®°å½"
-
-#: addons/addressbook/contents.tpl:84
-msgid "Display results for department"
-msgstr "æ¾ç¤ºé¨é¨çç»æ"
-
-#: addons/addressbook/contents.tpl:87
-msgid "Choose the department the search will be based on"
-msgstr "éæ©ä¸ä¸ªé¨é¨æ¥åæ¥è¯¢"
-
-#: addons/addressbook/contents.tpl:97
-msgid "Match object"
-msgstr "å¹é
对象"
-
-#: addons/addressbook/contents.tpl:100
-msgid "Choose the object that will be searched in"
-msgstr "éæ©è¦å¨å
¶ä¸æ¥è¯¢ç对象"
-
-#: addons/addressbook/contents.tpl:109
-msgid "Search for"
-msgstr "æ¥è¯¢"
-
-#: addons/addressbook/contents.tpl:112
-msgid "Search string"
-msgstr "æ¥æ¾å符串"
-
-#~ msgid "You're about to delete the entry %s."
-#~ msgstr "æ¨å°è¦å é¤æ¡ç® %sã"
-
-#~ msgid "Cancel"
-#~ msgstr "åæ¶"
-
-#~ msgid "Save"
-#~ msgstr "ä¿å"
-
-#~ msgid "Delete"
-#~ msgstr "å é¤"
-
-#~ msgid "Address book"
-#~ msgstr "å°åç°¿"
-
-#, fuzzy
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "å é¤å°åç°¿æ¡ç®å¤±è´¥"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "å
许"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "æ¨æ æå é¤è¿ä¸ªé¨é¨ã"
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "éè¦çâå§åâå段没æ设置"
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr "éè¦çâæåâå段没æ设置"
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "âå§åâå段å
å«æ æå符ã"
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "âæåâå段å
å«æ æå符ã"
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "âçµè¯âå段å
å«æ æçµè¯å·ç ã"
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "âä¼ çâå段å
å«ä¸ä¸ªæ æçµè¯å·ç "
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "âææºâå段å
å«æ æææºå·ç ã"
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr "âä¼ å¼âå段å
å«æ æçµè¯å·ç ã"
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr "请å¨â主é®ä»¶å°åâä¸è¾å
¥ä¸ä¸ªææçé®ä»¶å°åã"
diff --git a/gosa-plugins/addressbook/plugin.dsc b/gosa-plugins/addressbook/plugin.dsc
deleted file mode 100644
index f48a8560b..000000000
--- a/gosa-plugins/addressbook/plugin.dsc
+++ /dev/null
@@ -1,7 +0,0 @@
-[gosa-plugin]
-name = addressbook
-description = "Simple addressbook addon"
-version = 2.6.8
-author = "Cajus Pollmeier "
-maintainer = "GOsa packages maintainers group "
-homepage = https://oss.gonicus.de/labs/gosa/
diff --git a/gosa-plugins/dak/addons/dak/class_DAK.inc b/gosa-plugins/dak/addons/dak/class_DAK.inc
deleted file mode 100644
index 985dedda5..000000000
--- a/gosa-plugins/dak/addons/dak/class_DAK.inc
+++ /dev/null
@@ -1,121 +0,0 @@
-get_ldap_link();
- $ldap->cd($config->current['BASE']);
- $ldap->search("(&(macAddress=*)(FAIrepository=*)(objectClass=FAIrepositoryServer))",array("cn","FAIrepository","macAddress"));
- while($attrs = $ldap->fetch()){
- for($i = 0 ; $i < $attrs['FAIrepository']['count'] ; $i ++){
- list($url,$parent,$release,$sections) = explode("|",$attrs['FAIrepository'][$i]);
- $repo['SECTIONS'] = explode(",",$sections);
- $repo['SERVER'] = $attrs['cn'][0];
- $repo['RELEASE'] = $release;
- $repo['MAC'] = $attrs['macAddress'][0];
- $repo['PARENT'] = $parent;
- $repo['URL'] = $url;
- $repo['DN'] = $attrs['dn'];
- $res[] = $repo;
- }
- }
- return($res);
- }
-
-
- /*! \brief Returns all configured repository server and some
- informations about release/sections/parent.
- @param Object The GOsa configuration object.
- @return Array Repository infromations.
- */
- public static function get_repositories_by_server($config)
- {
- if(!$config instanceOf config){
- trigger_error("Invalid config object given, aborting.");
- return;
- }
- $res = array();
- $rest = get_sub_list("(&(macAddress=*)(FAIrepository=*)(objectClass=FAIrepositoryServer))",
- "server",get_ou("serverRDN"),$config->current['BASE'],
- array("cn","FAIrepository","macAddress"),GL_SUBSEARCH);
-
- foreach($rest as $attrs){
- $serv = array();
- $serv['REPOSITORIES'] = array();
- for($i = 0 ; $i < $attrs['FAIrepository']['count'] ; $i ++){
- list($url,$parent,$release,$sections) = explode("|",$attrs['FAIrepository'][$i]);
- $repo['SECTIONS'] = explode(",",$sections);
- $repo['RELEASE'] = $release;
- $repo['PARENT'] = $parent;
- $repo['URL'] = $url;
- $serv['REPOSITORIES'] [] = $repo;
- }
- $serv['MAC'] = $attrs['macAddress'][0];
- $serv['DN'] = $attrs['dn'];
- $serv['SERVER'] = $attrs['cn'][0];
- $res[] = $serv;
- }
- return($res);
- }
-
-
- /*! \brief Returns all keyring entries for the specified server
- @param String The servers mac address.
- @return Array All keyring entries.
- */
- public static function list_keys($server)
- {
- $o_queue = new gosaSupportDaemon();
- $data = $o_queue->DAK_keyring_entries($server);
- if($o_queue->is_error()){
- msg_dialog::display(_("Error"), $o_queue->get_error(), ERROR_DIALOG);
- }
- return($data);
- }
-
-
- /*! \brief Imports the given key into a keyring specified by server
- @param String The mac address of the server that provides the keyring.
- @param String The Key to import.
- @return Boolean TRUE in case of success else FALSE.
- */
- public static function import_key($server,$key)
- {
- $o_queue = new gosaSupportDaemon();
- $o_queue->DAK_import_key($server,$key);
- if($o_queue->is_error()){
- msg_dialog::display(_("Error"), $o_queue->get_error(), ERROR_DIALOG);
- return(FALSE);
- }
- return(TRUE);
- }
-
-
- /*! \brief Removes the given key from a keyring.
- @param String The servers mac address where the keyring is located.
- @param String The Key UID to remove.
- @return Boolean TRUE in case of success else FALSE.
- */
- public static function remove_key($server,$key)
- {
- $o_queue = new gosaSupportDaemon();
- $o_queue->DAK_remove_key($server,$key);
- if($o_queue->is_error()){
- msg_dialog::display(_("Error"), $o_queue->get_error(), ERROR_DIALOG);
- return(FALSE);
- }
- return(TRUE);
- }
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/dak/addons/dak/class_dakkeyring.inc b/gosa-plugins/dak/addons/dak/class_dakkeyring.inc
deleted file mode 100644
index abb3d86d8..000000000
--- a/gosa-plugins/dak/addons/dak/class_dakkeyring.inc
+++ /dev/null
@@ -1,292 +0,0 @@
-Servers = DAK::get_repositories_by_server($this->config);
- if(count($this->Servers)){
- $this->selected_Server = key($this->Servers);
- }
- }
-
-
- /*! \brief Create HTML output for this plugin.
- @return String HTML output.
- */
- public function execute()
- {
- plugin::execute();
-
- if(isset($_POST['search'])){
- $this->refresh_list();
- }
-
- $smarty= get_smarty();
- $smarty->assign("Servers" , $this->Servers);
- $smarty->assign("selected_Server" , $this->selected_Server);
- $smarty->assign("list",$this->CreateList());
- return($smarty->fetch (get_template_path('dak_keyring.tpl', TRUE, dirname(__FILE__))));
- }
-
-
- /*! \brief Refresh the list of keys for the currently selected server
- This function is automatically called when a key was added and removed.
- */
- private function refresh_list()
- {
- $details = array();
- foreach($this->list as $entry){
- if(isset($entry['DETAILS']) && $entry['DETAILS'] && isset($entry['ATTRIBUTES']['UID'])){
- $details[] = $entry['ATTRIBUTES']['UID'];
- }
- }
-
- $tmp = DAK::list_keys($this->Servers[$this->selected_Server]['MAC']);
- $this->list = array();
- foreach($tmp as $entry){
- if(isset($entry['ATTRIBUTES']['UID']) && in_array($entry['ATTRIBUTES']['UID'],$details)){
- $entry['DETAILS'] = TRUE;
- }
- $this->list[] = $entry;
- }
- }
-
-
- /*! \brief Creates the HTML output representing the keylist
- for this currently selected server
- @return String HTML list containig all keys for the selected server.
- */
- private function CreateList()
- {
- $divlist = new divlist("DAK_keyring");
- $divlist->SetWidth("100%");
- $divlist->SetHeight("450px");
- $divlist->SetEntriesPerPage(0);
-
- /* Set default col styles
- */
- $s0 = "style='width:10px;'";
- $s1 = "style='width:70px;'";
- $s2 = "style='width:50px;'";
- $s3 = "style='width:130px;'";
- $s4 = "";
- $s5 = "style='text-align: right;width:50px; border-right:0px;'";
-
- /* Add header
- */
- $h0 = array("string" => "", "attach" => $s0);
- $h1 = array("string" => _("Key ID"), "attach" => $s1);
- $h2 = array("string" => _("Length"), "attach" => $s2);
- $h3 = array("string" => _("Status"), "attach" => $s3);
- $h4 = array("string" => _("UID"), "attach" => $s4);
- $h5 = array("string" => _("Action"), "attach" => $s5);
- $divlist->SetHeader(array($h0,$h1,$h2,$h3,$h4,$h5));
-
- /* Add entries
- */
- foreach($this->list as $key => $entry){
-
- /* Check if all attributes are given
- */
- if(!is_array($entry['UID'])){
- $entry['UID'] = array($entry['UID']);
- }
- $key_id = $length = $created = $expired = $expires = "";
-
- foreach(array("key_id"=>"UID","length"=>"LENGTH","created"=>"CREATED","expired"=>"EXPIRED","expires"=>"EXPIRES") as $var => $name){
- if(isset($entry['ATTRIBUTES'][$name])){
- $$var = $entry['ATTRIBUTES'][$name];
- }
- }
-
- $status ="-";
- $title = " title='".sprintf(_("Created: %s"),$created)."' ";
- if(empty($expires) && empty($expired)) $status = ""._("Valid")." ";
- if(!empty($expired)) $status = ""._("Expired: ").$expired." ";
- if(!empty($expires)) $status = ""._("Expires: ").$expires." ";
-
- /* Create detail icon
- */
- $hide = " ";
- $down = " ";
-
- $actions = " ";
-
- /* Add detailed entry
- (All UIDs are listed, each in a single column)
- */
- if(isset($entry['DETAILS']) && $entry['DETAILS'] == TRUE){
- $first = TRUE;
- foreach($entry['UID'] as $val){
-
- $f0 = array("string" => "","attach" => $s0);
- $f1 = array("string" => "","attach" => $s1);
- $f2 = array("string" => "","attach" => $s2);
- $f3 = array("string" => "","attach" => $s3);
- $f4 = array("string" => htmlentities(utf8_decode($val),ENT_QUOTES,"UTF-8"), "attach" => $s4);
- $f5 = array("string" => "","attach" => $s5);
-
- if($first){
- $first = FALSE;
- $f0 = array("string" => $hide ,"attach" => $s0);
- $f1 = array("string" => $key_id ,"attach" => $s1);
- $f2 = array("string" => $length ,"attach" => $s2);
- $f3 = array("string" => $status ,"attach" => $s3);
- $f4 = array("string" => htmlentities(utf8_decode($val),ENT_QUOTES,"UTF-8"), "attach" => $s4);
- $f5 = array("string" => $actions ,"attach" => $s5);
- }
- $divlist->AddEntry(array($f0,$f1,$f2,$f3,$f4,$f5));
- }
- }else{
-
- /* Add non detailed entries, just the first uid is displayed.
- */
- if(count($entry['UID']) > 1){
- $f0 = array("string" => $down, "attach" => $s0);
- }else{
- $f0 = array("string" => "", "attach" => $s0);
- }
- $f1 = array("string" => $key_id, "attach" => $s1);
- $f2 = array("string" => $length, "attach" => $s2);
- $f3 = array("string" => $status, "attach" => $s3);
- $f4 = array("string" => htmlentities(utf8_decode($entry['UID'][0]),ENT_QUOTES,"UTF-8"), "attach" => $s4);
- $f5 = array("string" => $actions,"attach" => $s5);
- $divlist->AddEntry(array($f0,$f1,$f2,$f3,$f4,$f5));
-
- }
- }
- return($divlist->DrawList());
- }
-
-
- /*! \brief Act on the HTML posts for this plugin
- */
- public function save_object()
- {
- plugin::save_object();
-
- /* Save html posts, like the selected repository server
- */
- foreach($this->attributes as $attr){
- if(isset($_POST[$attr])){
- $this->$attr = get_post($attr);
- }
- }
-
- /* Display details icon was clicked
- */
- foreach($_POST as $name => $value){
- if(preg_match("/^remove_key_/",$name)){
- $id = preg_replace("/^remove_key_([0-9]*)_.*$/","\\1",$name);
- $this->remove_key($id);
- $this->refresh_list();
- break;
- }
-
- if(preg_match("/^details_/",$name)){
- $id = preg_replace("/^details_([0-9]*)_.*$/","\\1",$name);
- if(isset($this->list[$id])){
- if(!isset($this->list[$id]['DETAILS']) || !$this->list[$id]['DETAILS']){
- $this->list[$id]['DETAILS'] = TRUE;
- }else{
- $this->list[$id]['DETAILS'] = FALSE;
- }
- break;
- }
- }
- }
-
- /* Import new keys
- */
- if(isset($_POST['import_key']) && isset($_FILES['import'])){
- if($_FILES['import']['size'] != 0){
- $key = file_get_contents($_FILES['import']['tmp_name']);
- if($this->import_key($key)){
- $this->refresh_list();
- }
- }
- }
- }
-
-
- /*! \brief Removes the given key from the keyring server.
- @return Boolean TRUE in case of success else FALSE.
- */
- private function remove_key($key)
- {
- if($this->list[$key]){
- $mac = $this->Servers[$this->selected_Server]['MAC'];
- return(DAK::remove_key($mac,$this->list[$key]['ATTRIBUTES']['UID']));
- }
- }
-
-
- /*! \brief Imports a new key into the keyring for the currently selected server
- @return Boolean TRUE in case of success else FALSE.
- */
- private function import_key($key)
- {
- $mac = $this->Servers[$this->selected_Server]['MAC'];
- return(DAK::import_key($mac,$key));
- }
-
-
- /*! \brief ACL plugin information
- */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("DAK keyring")." ("._("Addon").")",
- "plDescription" => _("DAK keyring management")." ("._("Addon").")",
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 98,
- "plSection" => array("addon"),
- "plCategory" => array("server"),
- "plProvidedAcls" =>
- array(
- )
- ));
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/dak/addons/dak/class_dakplug.inc b/gosa-plugins/dak/addons/dak/class_dakplug.inc
deleted file mode 100644
index c54535039..000000000
--- a/gosa-plugins/dak/addons/dak/class_dakplug.inc
+++ /dev/null
@@ -1,32 +0,0 @@
-tabs = new dak_tabs($config, $config->data['TABS']['DAK_TABS'],"");
- }
-
- public function execute()
- {
- plugin::execute();
- return($this->tabs->execute());
- }
-
- public function save_object()
- {
- $this->tabs->save_object();
- }
-
- public function save() {}
- public function remove_from_parent() {}
- public function check() {}
-
-}
-
-?>
diff --git a/gosa-plugins/dak/addons/dak/class_dakqueue.inc b/gosa-plugins/dak/addons/dak/class_dakqueue.inc
deleted file mode 100644
index 410cbc6f3..000000000
--- a/gosa-plugins/dak/addons/dak/class_dakqueue.inc
+++ /dev/null
@@ -1,73 +0,0 @@
-assign("Repositories" , DAK::get_repositories($this->config));
- $smarty->assign("selected_Repository" , $this->selected_Repository);
- return($smarty->fetch (get_template_path('dak_queue.tpl', TRUE, dirname(__FILE__))));
- }
-
- public function save_object()
- {
- plugin::save_object();
-
- foreach($this->attributes as $attr){
- if(isset($_POST[$attr])){
- $this->$attr = get_post($attr);
- }
- }
- }
-
- /*! \brief ACL plugin information
- */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("DAK queue")." ("._("Addon").")",
- "plDescription" => _("DAK queue management")." ("._("Addon").")",
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 98,
- "plSection" => array("addon"),
- "plCategory" => array("server"),
- "plProvidedAcls" =>
- array(
- )
- ));
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/dak/addons/dak/class_dakrepository.inc b/gosa-plugins/dak/addons/dak/class_dakrepository.inc
deleted file mode 100644
index 44f24de81..000000000
--- a/gosa-plugins/dak/addons/dak/class_dakrepository.inc
+++ /dev/null
@@ -1,59 +0,0 @@
-fetch (get_template_path('dak_repository.tpl', TRUE, dirname(__FILE__))));
- }
-
-
-
- /*! \brief ACL plugin information
- */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("DAK repository")." ("._("Addon").")",
- "plDescription" => _("DAK repository management")." ("._("Addon").")",
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 98,
- "plSection" => array("addon"),
- "plCategory" => array("server"),
- "plProvidedAcls" =>
- array(
- )
- ));
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/dak/addons/dak/dak_keyring.tpl b/gosa-plugins/dak/addons/dak/dak_keyring.tpl
deleted file mode 100644
index 72504b9ce..000000000
--- a/gosa-plugins/dak/addons/dak/dak_keyring.tpl
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
{image path="images/launch.png" align="right"}{t}Filter{/t}
-
-
-
-
-
-
diff --git a/gosa-plugins/dak/addons/dak/dak_queue.tpl b/gosa-plugins/dak/addons/dak/dak_queue.tpl
deleted file mode 100644
index 245aa4813..000000000
--- a/gosa-plugins/dak/addons/dak/dak_queue.tpl
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
{image path="images/launch.png" align="right"}{t}Filter{/t}
-
-
-
-
-
-
-
-
- {image path="plugins/systems/images/server.png"}
-
-
- {t}Repositories{/t}
-
- {foreach from=$Repositories item=item key=key}
- {$item.SERVER} - {$item.RELEASE}
- {/foreach}
-
-
-
-
diff --git a/gosa-plugins/dak/addons/dak/dak_repository.tpl b/gosa-plugins/dak/addons/dak/dak_repository.tpl
deleted file mode 100644
index 8bd6648ed..000000000
--- a/gosa-plugins/dak/addons/dak/dak_repository.tpl
+++ /dev/null
@@ -1 +0,0 @@
-asdf
diff --git a/gosa-plugins/dak/addons/dak/main.inc b/gosa-plugins/dak/addons/dak/main.inc
deleted file mode 100644
index c2fcbb005..000000000
--- a/gosa-plugins/dak/addons/dak/main.inc
+++ /dev/null
@@ -1,51 +0,0 @@
-save_object();
- $display= $dak_plug->execute ();
- $display.= "
\n";
-
- /* Page header*/
- $display= print_header(get_template_path($dak_plug->plIcon), _("DAK")).$display;
-
- /* Store changes in session */
- session::set('dak_plug',$dak_plug);
-}
-?>
diff --git a/gosa-plugins/dak/addons/dak/tabs_dak.inc b/gosa-plugins/dak/addons/dak/tabs_dak.inc
deleted file mode 100644
index b64676db9..000000000
--- a/gosa-plugins/dak/addons/dak/tabs_dak.inc
+++ /dev/null
@@ -1,11 +0,0 @@
-
diff --git a/gosa-plugins/dak/html/images/down-arrow.png b/gosa-plugins/dak/html/images/down-arrow.png
deleted file mode 100644
index f0fb47d82..000000000
Binary files a/gosa-plugins/dak/html/images/down-arrow.png and /dev/null differ
diff --git a/gosa-plugins/dak/html/images/forward-arrow.png b/gosa-plugins/dak/html/images/forward-arrow.png
deleted file mode 100644
index 4f3189a0a..000000000
Binary files a/gosa-plugins/dak/html/images/forward-arrow.png and /dev/null differ
diff --git a/gosa-plugins/dak/html/images/plugin.png b/gosa-plugins/dak/html/images/plugin.png
deleted file mode 100644
index 1de7a6fda..000000000
Binary files a/gosa-plugins/dak/html/images/plugin.png and /dev/null differ
diff --git a/gosa-plugins/dak/locale/de/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/de/LC_MESSAGES/messages.po
deleted file mode 100644
index e9bae821f..000000000
--- a/gosa-plugins/dak/locale/de/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,118 +0,0 @@
-# translation of messages.po to deutsch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-#
-# Alfred Schroeder
, 2004.
-# Cajus Pollmeier , 2004, 2005, 2006, 2008.
-# Jan Wenzel , 2004,2005, 2008.
-# Stefan Koehler , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2008-12-03 15:39+0100\n"
-"Last-Translator: Cajus Pollmeier \n"
-"Language-Team: deutsch \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-msgid "Filter"
-msgstr "Filter"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "Server"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "Suchen"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "Importieren"
-
-#: addons/dak/class_dakkeyring.inc:114
-msgid "Key ID"
-msgstr "Schlüssel-ID"
-
-#: addons/dak/class_dakkeyring.inc:115
-msgid "Length"
-msgstr "Länge"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "Status"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "Aktion"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, php-format
-msgid "Created: %s"
-msgstr "Angelegt: %s"
-
-#: addons/dak/class_dakkeyring.inc:140
-msgid "Valid"
-msgstr "Gültig"
-
-#: addons/dak/class_dakkeyring.inc:141
-msgid "Expired: "
-msgstr "Abgelaufen: "
-
-#: addons/dak/class_dakkeyring.inc:142
-msgid "Expires: "
-msgstr "Läuft ab: "
-
-#: addons/dak/class_dakkeyring.inc:276
-msgid "DAK keyring"
-msgstr "DAK-Schlüsselbund"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-msgid "Addon"
-msgstr "Zusätzliches"
-
-#: addons/dak/class_dakkeyring.inc:277
-msgid "DAK keyring management"
-msgstr "DAK-Schlüsselbund-Verwaltung"
-
-#: addons/dak/dak_queue.tpl:11
-msgid "Repositories"
-msgstr "Repositorien"
-
-#: addons/dak/class_dakrepository.inc:43
-msgid "DAK repository"
-msgstr "DAK Repository"
-
-#: addons/dak/class_dakrepository.inc:44
-msgid "DAK repository management"
-msgstr "DAK Repository-Verwaltung"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr "Fehler"
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr "DAK"
-
-#: addons/dak/class_dakqueue.inc:57
-msgid "DAK queue"
-msgstr "DAK-Warteschlange"
-
-#: addons/dak/class_dakqueue.inc:58
-msgid "DAK queue management"
-msgstr "DAK-Warteschlangen-Verwaltung"
diff --git a/gosa-plugins/dak/locale/es/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/es/LC_MESSAGES/messages.po
deleted file mode 100644
index 1ed68d85d..000000000
--- a/gosa-plugins/dak/locale/es/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,247 +0,0 @@
-# translation of admin.po to
-# translation of systems.po to
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# , 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: admin\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2010-01-20 00:59+0100\n"
-"Last-Translator: \n"
-"Language-Team: Spanish <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-msgid "Filter"
-msgstr "Filtro"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "Servidor"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "Buscar"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "Importar"
-
-#: addons/dak/class_dakkeyring.inc:114
-msgid "Key ID"
-msgstr "Identificador (ID) de clave"
-
-#: addons/dak/class_dakkeyring.inc:115
-msgid "Length"
-msgstr "Longitud"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "Estado"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "Acción"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, php-format
-msgid "Created: %s"
-msgstr "Creado por: %s"
-
-#: addons/dak/class_dakkeyring.inc:140
-msgid "Valid"
-msgstr "Válido"
-
-#: addons/dak/class_dakkeyring.inc:141
-msgid "Expired: "
-msgstr "Expiró: "
-
-#: addons/dak/class_dakkeyring.inc:142
-msgid "Expires: "
-msgstr "Expira: "
-
-#: addons/dak/class_dakkeyring.inc:276
-msgid "DAK keyring"
-msgstr "Anillo de claves DAK"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-msgid "Addon"
-msgstr "Extensión"
-
-#: addons/dak/class_dakkeyring.inc:277
-msgid "DAK keyring management"
-msgstr "Gestión de anillo de claves DAK"
-
-#: addons/dak/dak_queue.tpl:11
-msgid "Repositories"
-msgstr "Repositorios"
-
-#: addons/dak/class_dakrepository.inc:43
-msgid "DAK repository"
-msgstr "Repositorio DAK"
-
-#: addons/dak/class_dakrepository.inc:44
-msgid "DAK repository management"
-msgstr "Administración del repositorio DAK"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr "Error"
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr "DAK"
-
-#: addons/dak/class_dakqueue.inc:57
-msgid "DAK queue"
-msgstr "Cola DAK"
-
-#: addons/dak/class_dakqueue.inc:58
-msgid "DAK queue management"
-msgstr "Administración de cola DAK"
-
-#~ msgid "Description"
-#~ msgstr "Descripción"
-
-#~ msgid "Addressbook"
-#~ msgstr "Libreta direcciones"
-
-#, fuzzy
-#~ msgid ""
-#~ "You need to set your personal phone number in order to perform direct "
-#~ "dials."
-#~ msgstr "Necesita introducir su contraseña actual para continuar."
-
-#~ msgid "Name"
-#~ msgstr "Nombre"
-
-#~ msgid "Given name"
-#~ msgstr "Nombre de pila"
-
-#~ msgid "Phone"
-#~ msgstr "Teléfono"
-
-#, fuzzy
-#~ msgid "Telephone number"
-#~ msgstr "Número de teléfono"
-
-#~ msgid "Fax"
-#~ msgstr "Fax"
-
-#~ msgid "Surename"
-#~ msgstr "Apellidos"
-
-#~ msgid "Telefon number"
-#~ msgstr "Número de teléfono"
-
-#~ msgid "Fax number"
-#~ msgstr "Número de Fax"
-
-#~ msgid "Mobile number"
-#~ msgstr "Teléfono móvil"
-
-#~ msgid "Home phone number"
-#~ msgstr "Número de teléfono personal"
-
-#~ msgid "User identification"
-#~ msgstr "Identificación de Usuario"
-
-#~ msgid "Mail address"
-#~ msgstr "Dirección correo electrónico"
-
-#~ msgid "Organization"
-#~ msgstr "Organización"
-
-#~ msgid "Department"
-#~ msgstr "Departamento"
-
-#~ msgid "Location"
-#~ msgstr "Localización"
-
-#~ msgid "Postal address"
-#~ msgstr "Código Postal"
-
-#~ msgid "State"
-#~ msgstr "Provincia"
-
-#~ msgid "Home postal address"
-#~ msgstr "Dirección Postal personal"
-
-#~ msgid "Warning"
-#~ msgstr "Aviso"
-
-#~ msgid "Actions"
-#~ msgstr "Acciones"
-
-#~ msgid "Edit entry"
-#~ msgstr "Editar entrada"
-
-#~ msgid "Personal title"
-#~ msgstr "TÃtulo Personal"
-
-#~ msgid "Address"
-#~ msgstr "Dirección"
-
-#~ msgid "Postal code"
-#~ msgstr "Código Postal"
-
-#~ msgid "Country"
-#~ msgstr "PaÃs"
-
-#~ msgid "Cancel"
-#~ msgstr "Cancelar"
-
-#~ msgid "Save"
-#~ msgstr "Guardar"
-
-#~ msgid "Delete"
-#~ msgstr "Eliminar"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "Permisos"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "No tiene permisos para eliminar este departamento."
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "No se ha asignado ningún valor al campo obligatorio 'Nombre'."
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr ""
-#~ "No se ha asignado ningún valor al campo obligatorio 'Nombre de pila'."
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "El campo 'Nombre' no tiene caracteres validos."
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "El campo 'Nombre de pila' contiene caracteres no validos"
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "El campo 'Teléfono' tiene un número de teléfono no valido."
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "El campo 'Fax' tiene un número de teléfono no valido."
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "El campo 'Teléfono móvil' contiene un número de teléfono invalido."
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr ""
-#~ "El campo 'Dispositivo de Búsqueda' contiene un número de teléfono "
-#~ "invalido."
diff --git a/gosa-plugins/dak/locale/fr/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/fr/LC_MESSAGES/messages.po
deleted file mode 100644
index 6dad028ba..000000000
--- a/gosa-plugins/dak/locale/fr/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,111 +0,0 @@
-# translation of messages.po to french
-# Benoit Mortier , 2005, 2006, 2007, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2008-07-23 22:13+0200\n"
-"Last-Translator: Benoit Mortier \n"
-"Language-Team: french \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-msgid "Filter"
-msgstr "Filtre"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "Serveur"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "Recherche"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "Importer"
-
-#: addons/dak/class_dakkeyring.inc:114
-msgid "Key ID"
-msgstr "Identifiant de la clé"
-
-#: addons/dak/class_dakkeyring.inc:115
-msgid "Length"
-msgstr "Longueur"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "Statut"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "Action"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, php-format
-msgid "Created: %s"
-msgstr "Crée le : %s"
-
-#: addons/dak/class_dakkeyring.inc:140
-msgid "Valid"
-msgstr "valide"
-
-#: addons/dak/class_dakkeyring.inc:141
-msgid "Expired: "
-msgstr "Expirée :"
-
-#: addons/dak/class_dakkeyring.inc:142
-msgid "Expires: "
-msgstr "Expire le :"
-
-#: addons/dak/class_dakkeyring.inc:276
-msgid "DAK keyring"
-msgstr "Trousseau de clefs DAK"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-msgid "Addon"
-msgstr "Extension"
-
-#: addons/dak/class_dakkeyring.inc:277
-msgid "DAK keyring management"
-msgstr "Gestion du trousseau de clefs DAK"
-
-#: addons/dak/dak_queue.tpl:11
-msgid "Repositories"
-msgstr "Dépôts"
-
-#: addons/dak/class_dakrepository.inc:43
-msgid "DAK repository"
-msgstr "Dépôt DAK"
-
-#: addons/dak/class_dakrepository.inc:44
-msgid "DAK repository management"
-msgstr "Gestion des dépôts DAK"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr "Erreur"
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr "DAK"
-
-#: addons/dak/class_dakqueue.inc:57
-msgid "DAK queue"
-msgstr "Queue DAK"
-
-#: addons/dak/class_dakqueue.inc:58
-msgid "DAK queue management"
-msgstr "Gestion de la queue DAK"
diff --git a/gosa-plugins/dak/locale/it/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/it/LC_MESSAGES/messages.po
deleted file mode 100644
index 757753a72..000000000
--- a/gosa-plugins/dak/locale/it/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,364 +0,0 @@
-# translation of messages.po to Italian
-# Copyright (c) 2005 B-Open Solutions srl - http://www.bopen.it/
-# Copyright (c) 2005 Alessandro Amici
-# Alessandro Amici , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2005-11-18 15:26+0100\n"
-"Last-Translator: Alessandro Amici \n"
-"Language-Team: Italian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9.1\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-#, fuzzy
-msgid "Filter"
-msgstr "Filtri"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "Server"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "Cerca"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "Importa"
-
-#: addons/dak/class_dakkeyring.inc:114
-msgid "Key ID"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:115
-#, fuzzy
-msgid "Length"
-msgstr "Strada"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "Stato"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "Azione"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, fuzzy, php-format
-msgid "Created: %s"
-msgstr "Creare"
-
-#: addons/dak/class_dakkeyring.inc:140
-#, fuzzy
-msgid "Valid"
-msgstr "valido"
-
-#: addons/dak/class_dakkeyring.inc:141
-#, fuzzy
-msgid "Expired: "
-msgstr "Esporta"
-
-#: addons/dak/class_dakkeyring.inc:142
-#, fuzzy
-msgid "Expires: "
-msgstr "Esporta"
-
-#: addons/dak/class_dakkeyring.inc:276
-#, fuzzy
-msgid "DAK keyring"
-msgstr "Amministrazione LDAP"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "Addon"
-msgstr "Extra"
-
-#: addons/dak/class_dakkeyring.inc:277
-#, fuzzy
-msgid "DAK keyring management"
-msgstr "Riferimenti"
-
-#: addons/dak/dak_queue.tpl:11
-#, fuzzy
-msgid "Repositories"
-msgstr "Riprova"
-
-#: addons/dak/class_dakrepository.inc:43
-#, fuzzy
-msgid "DAK repository"
-msgstr "Directory"
-
-#: addons/dak/class_dakrepository.inc:44
-#, fuzzy
-msgid "DAK repository management"
-msgstr "Directory"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr ""
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr ""
-
-#: addons/dak/class_dakqueue.inc:57
-#, fuzzy
-msgid "DAK queue"
-msgstr "Numero di telefono"
-
-#: addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "DAK queue management"
-msgstr "Riferimenti"
-
-#~ msgid "Description"
-#~ msgstr "Descrizione"
-
-#~ msgid "Addressbook"
-#~ msgstr "Rubrica"
-
-#~ msgid "This does something"
-#~ msgstr "Questo fa qualcosa"
-
-#, fuzzy
-#~ msgid ""
-#~ "You need to set your personal phone number in order to perform direct "
-#~ "dials."
-#~ msgstr "Devi specificare la tua 'Password attuale' per procedere."
-
-#, fuzzy
-#~ msgid "user database"
-#~ msgstr "Database"
-
-#, fuzzy
-#~ msgid "Contact stored in '%s'"
-#~ msgstr "Rimuovi"
-
-#~ msgid "Creating new entry in"
-#~ msgstr "Crea in"
-
-#~ msgid "Name"
-#~ msgstr "Cognome"
-
-#~ msgid "Given name"
-#~ msgstr "Nome"
-
-#~ msgid "Work phone"
-#~ msgstr "Telefono del lavoro"
-
-#~ msgid "Cell phone"
-#~ msgstr "Cellolare"
-
-#~ msgid "Home phone"
-#~ msgstr "Telefono privato"
-
-#~ msgid "Phone"
-#~ msgstr "Telefono"
-
-#, fuzzy
-#~ msgid "Telephone number"
-#~ msgstr "Numero di telefono"
-
-#~ msgid "Fax"
-#~ msgstr "Fax"
-
-#~ msgid "Mobile"
-#~ msgstr "Cellulare"
-
-#~ msgid "Pager"
-#~ msgstr "Pager"
-
-#~ msgid "Email"
-#~ msgstr "Indirizzo email"
-
-#, fuzzy
-#~ msgid "Addressbook entry acls"
-#~ msgstr "Mostra contatti della rubrica"
-
-#~ msgid "Surename"
-#~ msgstr "Cognome"
-
-#, fuzzy
-#~ msgid "Telefon number"
-#~ msgstr "Numero di telefono"
-
-#, fuzzy
-#~ msgid "Fax number"
-#~ msgstr "Numero di telefono"
-
-#, fuzzy
-#~ msgid "Mobile number"
-#~ msgstr "Cellulare"
-
-#, fuzzy
-#~ msgid "Home phone number"
-#~ msgstr "Numero di telefono"
-
-#, fuzzy
-#~ msgid "User identification"
-#~ msgstr "Amministrazione utenti"
-
-#~ msgid "Mail address"
-#~ msgstr "Indirizzo principale"
-
-#~ msgid "Organization"
-#~ msgstr "Organizzazione"
-
-#~ msgid "Department"
-#~ msgstr "Dipartimento"
-
-#~ msgid "Location"
-#~ msgstr "Località "
-
-#~ msgid "Postal address"
-#~ msgstr "CAP"
-
-#~ msgid "State"
-#~ msgstr "Stato"
-
-#~ msgid "Initials"
-#~ msgstr "Iniziali"
-
-#~ msgid "Title"
-#~ msgstr "Titolo"
-
-#~ msgid "Common name"
-#~ msgstr "Nome comune"
-
-#~ msgid "Warning"
-#~ msgstr "Attenzione"
-
-#, fuzzy
-#~ msgid ""
-#~ "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-#~ msgstr ""
-#~ "Quindi - Se sei sicuro - premi Rimuovi per continuare o "
-#~ "Annulla per abortire."
-
-#~ msgid "Private"
-#~ msgstr "Privato"
-
-#~ msgid "Contact"
-#~ msgstr "Contatto"
-
-#~ msgid "Information"
-#~ msgstr "Informazioni"
-
-#~ msgid ""
-#~ "The telephone list plugin provides list and search facilities for the "
-#~ "people in your site. You may want to specify the asterisk [*] like in "
-#~ "'Go*us' to find 'Gonicus'. Use the filters below to narrow down your "
-#~ "search."
-#~ msgstr ""
-#~ "Il plugin della lista telefonica permette di cercare le persone nel sito. "
-#~ "Puoi utilizzare l'asterisco [*] come carattere jolly. Usa i filtri sotto "
-#~ "per caratterizzaze la ricerca."
-
-#~ msgid "Actions"
-#~ msgstr "Azioni"
-
-#~ msgid "Add entry"
-#~ msgstr "Aggiungi contatto"
-
-#~ msgid "Edit entry"
-#~ msgstr "Modifica contatto"
-
-#~ msgid "Remove entry"
-#~ msgstr "Elimina contatto"
-
-#~ msgid "Show organizational entries"
-#~ msgstr "Mostra contatti di organizzazioni"
-
-#~ msgid "Show addressbook entries"
-#~ msgstr "Mostra contatti della rubrica"
-
-#~ msgid "Display results for department"
-#~ msgstr "Mostra risultati per dipartimento"
-
-#~ msgid "Choose the department the search will be based on"
-#~ msgstr "Scegli il dipartimento di base per la ricerca"
-
-#~ msgid "Match object"
-#~ msgstr "Oggetto corrispondente"
-
-#~ msgid "Search for"
-#~ msgstr "Cerca"
-
-#~ msgid "Search string"
-#~ msgstr "Ricerca"
-
-#~ msgid "Personal"
-#~ msgstr "Personale"
-
-#, fuzzy
-#~ msgid "Last name"
-#~ msgstr "Scegli il tuo numero di telefono personale"
-
-#, fuzzy
-#~ msgid "First name"
-#~ msgstr "Liste di blocco"
-
-#~ msgid "Personal title"
-#~ msgstr "Titolo onorifico"
-
-#~ msgid "Address"
-#~ msgstr "Indirizzo"
-
-#~ msgid "Organizational"
-#~ msgstr "Organizzazione"
-
-#~ msgid "Company"
-#~ msgstr "Azienda"
-
-#~ msgid "City"
-#~ msgstr "Città "
-
-#~ msgid "Postal code"
-#~ msgstr "CAP"
-
-#~ msgid "Country"
-#~ msgstr "Paese"
-
-#~ msgid "FAX"
-#~ msgstr "FAX"
-
-#~ msgid "Cancel"
-#~ msgstr "Annulla"
-
-#~ msgid "Save"
-#~ msgstr "Salva"
-
-#~ msgid "Delete"
-#~ msgstr "Rimuovi"
-
-#~ msgid "Address book"
-#~ msgstr "Rubrica"
-
-#, fuzzy
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "Mostra contatti della rubrica"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "Permessi"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "Non hai il permesso di cambiare la tua password."
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr ""
-#~ "Inserire un indirizzo di posta valido nel campo 'Indirizzo principale'."
diff --git a/gosa-plugins/dak/locale/messages.po b/gosa-plugins/dak/locale/messages.po
deleted file mode 100644
index a347b2838..000000000
--- a/gosa-plugins/dak/locale/messages.po
+++ /dev/null
@@ -1,113 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-msgid "Filter"
-msgstr ""
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr ""
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr ""
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:114
-msgid "Key ID"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:115
-msgid "Length"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:139
-#, php-format
-msgid "Created: %s"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:140
-msgid "Valid"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:141
-msgid "Expired: "
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:142
-msgid "Expires: "
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:276
-msgid "DAK keyring"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-msgid "Addon"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:277
-msgid "DAK keyring management"
-msgstr ""
-
-#: addons/dak/dak_queue.tpl:11
-msgid "Repositories"
-msgstr ""
-
-#: addons/dak/class_dakrepository.inc:43
-msgid "DAK repository"
-msgstr ""
-
-#: addons/dak/class_dakrepository.inc:44
-msgid "DAK repository management"
-msgstr ""
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr ""
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr ""
-
-#: addons/dak/class_dakqueue.inc:57
-msgid "DAK queue"
-msgstr ""
-
-#: addons/dak/class_dakqueue.inc:58
-msgid "DAK queue management"
-msgstr ""
diff --git a/gosa-plugins/dak/locale/nl/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/nl/LC_MESSAGES/messages.po
deleted file mode 100644
index 8b1ef02c1..000000000
--- a/gosa-plugins/dak/locale/nl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,445 +0,0 @@
-# translation of messages.po to Dutch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-# Alfred Schroeder , 2004.
-# Cajus Pollmeier , 2004.
-#
-# Translator:
-# Niels Klomp (CareWorks ICT Services) , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2006-06-02 16:58+0100\n"
-"Last-Translator: Niels Klomp (CareWorks ICT Services) \n"
-"Language-Team: CareWorks ICT Services \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-#, fuzzy
-msgid "Filter"
-msgstr "Filters"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "Server"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "Zoeken"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "Importeren"
-
-#: addons/dak/class_dakkeyring.inc:114
-#, fuzzy
-msgid "Key ID"
-msgstr "Gebruikers ID"
-
-#: addons/dak/class_dakkeyring.inc:115
-#, fuzzy
-msgid "Length"
-msgstr "Straat"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "Status"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "Actie"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, fuzzy, php-format
-msgid "Created: %s"
-msgstr "Aanmaken"
-
-#: addons/dak/class_dakkeyring.inc:140
-#, fuzzy
-msgid "Valid"
-msgstr "geldig"
-
-#: addons/dak/class_dakkeyring.inc:141
-#, fuzzy
-msgid "Expired: "
-msgstr "verlopen"
-
-#: addons/dak/class_dakkeyring.inc:142
-#, fuzzy
-msgid "Expires: "
-msgstr "verlopen"
-
-#: addons/dak/class_dakkeyring.inc:276
-#, fuzzy
-msgid "DAK keyring"
-msgstr "LDAP beheer"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "Addon"
-msgstr "Plugins"
-
-#: addons/dak/class_dakkeyring.inc:277
-#, fuzzy
-msgid "DAK keyring management"
-msgstr "Afdeling beheer"
-
-#: addons/dak/dak_queue.tpl:11
-#, fuzzy
-msgid "Repositories"
-msgstr "Opnieuw proberen"
-
-#: addons/dak/class_dakrepository.inc:43
-#, fuzzy
-msgid "DAK repository"
-msgstr "Directory"
-
-#: addons/dak/class_dakrepository.inc:44
-#, fuzzy
-msgid "DAK repository management"
-msgstr "Directory"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr "Fout"
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr ""
-
-#: addons/dak/class_dakqueue.inc:57
-#, fuzzy
-msgid "DAK queue"
-msgstr "Telefoonwachtrij"
-
-#: addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "DAK queue management"
-msgstr "Blokkeerlijst beheer"
-
-#~ msgid "Description"
-#~ msgstr "Omschrijving"
-
-#~ msgid "Addressbook"
-#~ msgstr "Adresboek"
-
-#~ msgid "This does something"
-#~ msgstr "Dit doet iets"
-
-#~ msgid "Dial from %s to %s now?"
-#~ msgstr "Nu van %s naar %s bellen?"
-
-#, fuzzy
-#~ msgid ""
-#~ "You need to set your personal phone number in order to perform direct "
-#~ "dials."
-#~ msgstr ""
-#~ "U heeft geen privé telefoonnummer opgegeven. Verander dit a.u.b. om "
-#~ "direkt te kunnen kiezen"
-
-#~ msgid "Dial"
-#~ msgstr "Kies"
-
-#~ msgid "Save contact for %s as vcard"
-#~ msgstr "Sla contact voor %s op als vcard"
-
-#~ msgid "Send mail to %s"
-#~ msgstr "Stuur E-mail naar %s"
-
-#~ msgid "global addressbook"
-#~ msgstr "globaal adresboek"
-
-#~ msgid "user database"
-#~ msgstr "gebruiker database"
-
-#~ msgid "Contact stored in '%s'"
-#~ msgstr "Contact opgeslagen in '%s'"
-
-#~ msgid "Creating new entry in"
-#~ msgstr "Maak record aan in"
-
-#~ msgid "All"
-#~ msgstr "Alle"
-
-#~ msgid "Name"
-#~ msgstr "Naam"
-
-#~ msgid "Given name"
-#~ msgstr "Naam"
-
-#~ msgid "Work phone"
-#~ msgstr "Telefoon Werk"
-
-#~ msgid "Cell phone"
-#~ msgstr "GSM"
-
-#~ msgid "Home phone"
-#~ msgstr "Telefoon Privé"
-
-#~ msgid "Phone"
-#~ msgstr "Telefoon"
-
-#, fuzzy
-#~ msgid "Telephone number"
-#~ msgstr "Telefoonnummer"
-
-#~ msgid "Fax"
-#~ msgstr "Fax"
-
-#~ msgid "Mobile"
-#~ msgstr "GSM"
-
-#~ msgid "Pager"
-#~ msgstr "Pieper"
-
-#~ msgid "Email"
-#~ msgstr "E-mail"
-
-#~ msgid ""
-#~ "Cannot create a unique DN for your entry. Please fill more formular "
-#~ "fields."
-#~ msgstr ""
-#~ "Kan geen unieke DN aanmaken voor uw invoer. Vul a.u.b. meer formulier "
-#~ "velden in."
-
-#, fuzzy
-#~ msgid "Addressbook entry acls"
-#~ msgstr "Het opslaan van de adresboek invoer is mislukt"
-
-#~ msgid "Surename"
-#~ msgstr "Achternaam"
-
-#, fuzzy
-#~ msgid "Telefon number"
-#~ msgstr "Telefoonnummer"
-
-#, fuzzy
-#~ msgid "Fax number"
-#~ msgstr "Serienummer"
-
-#, fuzzy
-#~ msgid "Mobile number"
-#~ msgstr "GSM nummer"
-
-#, fuzzy
-#~ msgid "Home phone number"
-#~ msgstr "Telefoonnummer"
-
-#, fuzzy
-#~ msgid "User identification"
-#~ msgstr "Gebruikersinformatie"
-
-#~ msgid "Mail address"
-#~ msgstr "E-mail adres"
-
-#~ msgid "Organization"
-#~ msgstr "Organisatie"
-
-#~ msgid "Department"
-#~ msgstr "Afdeling"
-
-#~ msgid "Location"
-#~ msgstr "Plaats"
-
-#~ msgid "Postal address"
-#~ msgstr "Adres thuis"
-
-#~ msgid "State"
-#~ msgstr "Provincie"
-
-#~ msgid "Initials"
-#~ msgstr "Initialen"
-
-#~ msgid "Title"
-#~ msgstr "Titel"
-
-#~ msgid "Home postal address"
-#~ msgstr "Adres thuis"
-
-#~ msgid "Common name"
-#~ msgstr "Algemene naam"
-
-#~ msgid "Warning"
-#~ msgstr "Waarschuwing"
-
-#~ msgid ""
-#~ "This includes all addressbook data in this entry. Please double check if "
-#~ "your really want to do this since there is no way for GOsa to get your "
-#~ "data back."
-#~ msgstr ""
-#~ "Dit omvat alle adresboek data in dit record. Verzeker uzelf ervan dat dit "
-#~ "hetgeen is dat u wenst, aangezien er geen manier voor GOsa is om deze "
-#~ "data terug te halen."
-
-#~ 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' om te annuleren."
-
-#~ msgid "Dial connection..."
-#~ msgstr "Bel..."
-
-#~ msgid "Private"
-#~ msgstr "Privé"
-
-#~ msgid "Contact"
-#~ msgstr "Contact"
-
-#~ msgid "Information"
-#~ msgstr "Informatie"
-
-#~ msgid ""
-#~ "The telephone list plugin provides list and search facilities for the "
-#~ "people in your site. You may want to specify the asterisk [*] like in "
-#~ "'Go*us' to find 'Gonicus'. Use the filters below to narrow down your "
-#~ "search."
-#~ msgstr ""
-#~ "De telefoonlijst module biedt zoek en weergave mogelijkheden binnen uw "
-#~ "organisatie. U kunt een asterisk (*) gebruiken als wildcard. 'Go*us' zal "
-#~ "bijvoorbeeld 'Gonicus' vinden. Gebruik de selectie mogelijkheden om uw "
-#~ "zoekopdracht verder te verfijnen."
-
-#~ msgid "Actions"
-#~ msgstr "Acties"
-
-#~ msgid "Add entry"
-#~ msgstr "Record toevoegen"
-
-#~ msgid "Edit entry"
-#~ msgstr "Invoer bewerken"
-
-#~ msgid "Remove entry"
-#~ msgstr "Record verwijderen"
-
-#~ msgid "Select to see regular users"
-#~ msgstr "Selecteer om gewone gebruikers te tonen"
-
-#~ msgid "Show organizational entries"
-#~ msgstr "Toon gebruikers binnen de organisatie"
-
-#~ msgid "Select to see users in addressbook"
-#~ msgstr "Selecteer om gebruikers in het adresboek te zien"
-
-#~ msgid "Show addressbook entries"
-#~ msgstr "Toon adresboek records"
-
-#~ msgid "Display results for department"
-#~ msgstr "Toon resultaten voor afdeling"
-
-#~ msgid "Choose the department the search will be based on"
-#~ msgstr "Selecteer de afdeling waarbinnen gezocht zal worden"
-
-#~ msgid "Match object"
-#~ msgstr "Zoek op"
-
-#~ msgid "Choose the object that will be searched in"
-#~ msgstr "Selecteer het object waarbinnen gezocht zal worden"
-
-#~ msgid "Search for"
-#~ msgstr "Zoek naar"
-
-#~ msgid "Search string"
-#~ msgstr "Zoekstring"
-
-#~ msgid "Choose the department to store entry in"
-#~ msgstr "Selecteer de afdeling waarin de invoer bewaard wordt."
-
-#~ msgid "Personal"
-#~ msgstr "Persoonlijk"
-
-#~ msgid "Last name"
-#~ msgstr "Achternaam"
-
-#~ msgid "First name"
-#~ msgstr "Voornaam"
-
-#~ msgid "Personal title"
-#~ msgstr "Aanhef"
-
-#~ msgid "Address"
-#~ msgstr "Adres"
-
-#~ msgid "Organizational"
-#~ msgstr "Bedrijfsmatig"
-
-#~ msgid "Company"
-#~ msgstr "Bedrijf"
-
-#~ msgid "City"
-#~ msgstr "Plaats"
-
-#~ msgid "Postal code"
-#~ msgstr "Postcode"
-
-#~ msgid "Country"
-#~ msgstr "Land"
-
-#~ msgid "FAX"
-#~ msgstr "Fax"
-
-#~ msgid "You're about to delete the entry %s."
-#~ msgstr "U staat op het punt de invoer %s te verwijderen."
-
-#~ msgid "Cancel"
-#~ msgstr "Annuleren"
-
-#~ msgid "Save"
-#~ msgstr "Opslaan"
-
-#~ msgid "Delete"
-#~ msgstr "Verwijderen"
-
-#~ msgid "Address book"
-#~ msgstr "Adresboek"
-
-#, fuzzy
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "Het verwijderen van de adresboek invoer is mislukt"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "Rechten"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "Het vereiste veld '(Achter)naam' is leeg."
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr "Het vereiste veld 'Voornaam' is leeg."
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "Het veld 'Naam' bevat ongeldige karakters."
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "Het veld 'Voornaam' bevat ongeldige karakters."
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "Het veld 'Telefoon' bevat een ongeldig telefoonnummer."
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "Het veld 'Fax' bevat een ongeldig Faxnummer."
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "Het veld 'GSM' bevat een ongeldig telefoonnummer"
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr "Het veld 'Pieper' bevat een ongeldig telefoonnummer."
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr "Geef a.u.b. een geldig E-mail adres voor het 'Primair adres' op."
diff --git a/gosa-plugins/dak/locale/pl/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/pl/LC_MESSAGES/messages.po
deleted file mode 100644
index a17685ff5..000000000
--- a/gosa-plugins/dak/locale/pl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,433 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: polski\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2007-07-14 21:45+0100\n"
-"Last-Translator: Piotr Rybicki \n"
-"Language-Team: Piotr Rybicki \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Polish\n"
-"X-Poedit-Country: POLAND\n"
-"X-Poedit-SourceCharset: iso-8859-2\n"
-"X-Poedit-Basepath: tedst\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-#, fuzzy
-msgid "Filter"
-msgstr "Filtry"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "Serwer"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "Szukaj"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "Import"
-
-#: addons/dak/class_dakkeyring.inc:114
-#, fuzzy
-msgid "Key ID"
-msgstr "Identyfikator użytkownika"
-
-#: addons/dak/class_dakkeyring.inc:115
-#, fuzzy
-msgid "Length"
-msgstr "Ulica"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "Status"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "Akcja"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, fuzzy, php-format
-msgid "Created: %s"
-msgstr "Utwórz"
-
-#: addons/dak/class_dakkeyring.inc:140
-#, fuzzy
-msgid "Valid"
-msgstr "prawidÅowy"
-
-#: addons/dak/class_dakkeyring.inc:141
-#, fuzzy
-msgid "Expired: "
-msgstr "wygasÅo"
-
-#: addons/dak/class_dakkeyring.inc:142
-#, fuzzy
-msgid "Expires: "
-msgstr "wygasÅo"
-
-#: addons/dak/class_dakkeyring.inc:276
-#, fuzzy
-msgid "DAK keyring"
-msgstr "Menedżer LDAP"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "Addon"
-msgstr "Dodatki"
-
-#: addons/dak/class_dakkeyring.inc:277
-#, fuzzy
-msgid "DAK keyring management"
-msgstr "ZarzÄ
dzanie departamentem"
-
-#: addons/dak/dak_queue.tpl:11
-#, fuzzy
-msgid "Repositories"
-msgstr "Odtwórz"
-
-#: addons/dak/class_dakrepository.inc:43
-#, fuzzy
-msgid "DAK repository"
-msgstr "Katalog"
-
-#: addons/dak/class_dakrepository.inc:44
-#, fuzzy
-msgid "DAK repository management"
-msgstr "Katalog"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr "BÅÄ
d"
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr ""
-
-#: addons/dak/class_dakqueue.inc:57
-#, fuzzy
-msgid "DAK queue"
-msgstr "Kolejka telefoniczna"
-
-#: addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "DAK queue management"
-msgstr "ZarzÄ
dzanie ACL"
-
-#~ msgid "Description"
-#~ msgstr "Opis"
-
-#~ msgid "Addressbook"
-#~ msgstr "KsiÄ
żka adresowa"
-
-#~ msgid "This does something"
-#~ msgstr "To robi coÅ"
-
-#~ msgid "Dial from %s to %s now?"
-#~ msgstr "ZadzwoniÄ teraz z '%s' do '%s'?"
-
-#, fuzzy
-#~ msgid ""
-#~ "You need to set your personal phone number in order to perform direct "
-#~ "dials."
-#~ msgstr ""
-#~ "Brak ustawionego osobistego numeru telefonu. ProszÄ uzupeÅniÄ aby móc "
-#~ "wykonywaÄ bezpoÅrednie poÅÄ
czenia."
-
-#~ msgid "Dial"
-#~ msgstr "Dzwonienie"
-
-#~ msgid "Save contact for %s as vcard"
-#~ msgstr "Zapisz kontakt dla %s jako wizytówka"
-
-#~ msgid "Send mail to %s"
-#~ msgstr "WyÅlij email do %s"
-
-#~ msgid "global addressbook"
-#~ msgstr "Globalna ksiÄ
żka adresowa"
-
-#~ msgid "user database"
-#~ msgstr "użyj bazy"
-
-#~ msgid "Contact stored in '%s'"
-#~ msgstr "Kontakt zachowany w '%s'"
-
-#~ msgid "Creating new entry in"
-#~ msgstr "Tworzenie nowego elementu w"
-
-#~ msgid "All"
-#~ msgstr "Wszystkie"
-
-#~ msgid "Name"
-#~ msgstr "ImiÄ"
-
-#~ msgid "Given name"
-#~ msgstr "ImiÄ"
-
-#~ msgid "Work phone"
-#~ msgstr "Telefon do pracy"
-
-#~ msgid "Cell phone"
-#~ msgstr "Numer telefonu komórkowego"
-
-#~ msgid "Home phone"
-#~ msgstr "Telefon domowy"
-
-#~ msgid "Phone"
-#~ msgstr "Telefon"
-
-#, fuzzy
-#~ msgid "Telephone number"
-#~ msgstr "Numer telefonu"
-
-#~ msgid "Fax"
-#~ msgstr "Fax"
-
-#~ msgid "Mobile"
-#~ msgstr "Komórka"
-
-#~ msgid "Pager"
-#~ msgstr "Pager"
-
-#~ msgid "Email"
-#~ msgstr "Email"
-
-#~ msgid ""
-#~ "Cannot create a unique DN for your entry. Please fill more formular "
-#~ "fields."
-#~ msgstr ""
-#~ "Nie można utworzyÄ unikalnego DN dla tego elementu. ProszÄ wypeÅniÄ "
-#~ "wiÄcej pól formularza."
-
-#, fuzzy
-#~ msgid "Addressbook entry acls"
-#~ msgstr "Zapisywanie wpisu ksiÄ
żki adresowej nieudane"
-
-#~ msgid "Surename"
-#~ msgstr "Nazwisko"
-
-#~ msgid "Telefon number"
-#~ msgstr "Numer telefonu"
-
-#~ msgid "Fax number"
-#~ msgstr "Numer fax"
-
-#~ msgid "Mobile number"
-#~ msgstr "Telefon komórkowy"
-
-#~ msgid "Home phone number"
-#~ msgstr "Numer telefonu domowego"
-
-#~ msgid "User identification"
-#~ msgstr "Identyfikacja użytkownika"
-
-#~ msgid "Mail address"
-#~ msgstr "Adres email"
-
-#~ msgid "Organization"
-#~ msgstr "Organizacja"
-
-#~ msgid "Department"
-#~ msgstr "Departament"
-
-#~ msgid "Location"
-#~ msgstr "Lokalizacja"
-
-#~ msgid "Postal address"
-#~ msgstr "Adres pocztowy"
-
-#~ msgid "State"
-#~ msgstr "Stan"
-
-#~ msgid "Initials"
-#~ msgstr "InicjaÅy"
-
-#~ msgid "Title"
-#~ msgstr "TytuÅ"
-
-#~ msgid "Home postal address"
-#~ msgstr "Adres domowy"
-
-#~ msgid "Common name"
-#~ msgstr "Nazwa potoczna"
-
-#~ msgid "Warning"
-#~ msgstr "Ostrzeżenie"
-
-#~ msgid ""
-#~ "This includes all addressbook data in this entry. Please double check if "
-#~ "your really want to do this since there is no way for GOsa to get your "
-#~ "data back."
-#~ msgstr ""
-#~ "Operacja odnosi siÄ do wszystkich danych ksiÄ
żki adresowej w tym "
-#~ "elemencie. ProszÄ upewniÄ siÄ Å¼e jest to pożÄ
dana akcja, gdyż nie bÄdzie "
-#~ "możliwoÅci powrotu."
-
-#~ 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 "
-#~ "anulowaÄ."
-
-#~ msgid "Dial connection..."
-#~ msgstr "PoÅÄ
czenie dzwonienia..."
-
-#~ msgid "Private"
-#~ msgstr "Prywatne"
-
-#~ msgid "Contact"
-#~ msgstr "Kontakt"
-
-#~ msgid "Information"
-#~ msgstr "Informacja"
-
-#~ msgid ""
-#~ "The telephone list plugin provides list and search facilities for the "
-#~ "people in your site. You may want to specify the asterisk [*] like in "
-#~ "'Go*us' to find 'Gonicus'. Use the filters below to narrow down your "
-#~ "search."
-#~ msgstr ""
-#~ "Dodatek lista telefonów udostÄpnia listÄ oraz mechanizmy wyszukiwania dla "
-#~ "ludzi w firmie. Mozna podawaÄ gwiazdkÄ [*] np. 'Go*us' aby znaleÅ¼Ä "
-#~ "'Gonicus'. Użyj filtrów poniżej aby zawÄziÄ wyniki wyszukiwania."
-
-#~ msgid "Actions"
-#~ msgstr "Akcje"
-
-#~ msgid "Add entry"
-#~ msgstr "Dodaj pozycjÄ"
-
-#~ msgid "Edit entry"
-#~ msgstr "Edycja pozycji"
-
-#~ msgid "Remove entry"
-#~ msgstr "UsuÅ pozycjÄ"
-
-#~ msgid "Select to see regular users"
-#~ msgstr "Wybierz aby zobaczyÄ zwykÅych użytkowników"
-
-#~ msgid "Show organizational entries"
-#~ msgstr "Pokaż elementy organizacyjne"
-
-#~ msgid "Select to see users in addressbook"
-#~ msgstr "Wybierz aby zobaczyÄ użytkowników w ksiÄ
żce adresowej"
-
-#~ msgid "Show addressbook entries"
-#~ msgstr "Pokaż elementy ksiÄ
żki adresowej"
-
-#~ msgid "Display results for department"
-#~ msgstr "WyÅwietl wyniki dla departamentu"
-
-#~ msgid "Choose the department the search will be based on"
-#~ msgstr "Wybierz departament na którym wyszukiwanie bÄdzie bazowaÄ"
-
-#~ msgid "Match object"
-#~ msgstr "Dopasuj obiekt"
-
-#~ msgid "Choose the object that will be searched in"
-#~ msgstr "Wybierz obiekt w którym bÄdziesz przeszukiwaÄ"
-
-#~ msgid "Search for"
-#~ msgstr "Szukaj dla"
-
-#~ msgid "Search string"
-#~ msgstr "Poszukiwany napis"
-
-#~ msgid "Choose the department to store entry in"
-#~ msgstr "Wybierz departament do przechowania wpisu"
-
-#~ msgid "Personal"
-#~ msgstr "Osobiste"
-
-#~ msgid "Last name"
-#~ msgstr "Nazwisko"
-
-#~ msgid "First name"
-#~ msgstr "ImiÄ"
-
-#~ msgid "Personal title"
-#~ msgstr "Osobisty tytuÅ"
-
-#~ msgid "Address"
-#~ msgstr "Adres"
-
-#~ msgid "Organizational"
-#~ msgstr "Organizacyjne"
-
-#~ msgid "Company"
-#~ msgstr "Firma"
-
-#~ msgid "City"
-#~ msgstr "Miasto"
-
-#~ msgid "Postal code"
-#~ msgstr "Kod pocztowy"
-
-#~ msgid "Country"
-#~ msgstr "Kraj"
-
-#~ msgid "FAX"
-#~ msgstr "FAX"
-
-#~ msgid "You're about to delete the entry %s."
-#~ msgstr "Zamierzasz usunÄ
Ä element %s."
-
-#~ msgid "Cancel"
-#~ msgstr "Anuluj"
-
-#~ msgid "Save"
-#~ msgstr "Zapisz"
-
-#~ msgid "Delete"
-#~ msgstr "UsuÅ"
-
-#~ msgid "Address book"
-#~ msgstr "KsiÄ
żka adresowa"
-
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "Usuwanie wpisu ksiÄ
żki adresowej '%s' nieudane."
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "Uprawnienia"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "Brak uprawnieÅ do usuniÄcia tego departamentu."
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "Wymagane pole 'Nazwa' jest puste."
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr "Wymagane pole 'Podana nazwa' jest puste."
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "Pole 'Nazwa' zawiera niedozwolone znaki."
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "Pole 'Podana nazwa' zawiera niedozwolone znaki."
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "Pole 'Telefon' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "Pole 'Fax' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "Pole 'Komórka' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr "Pole 'Pager' zawiera nieprawidÅowy numer telefonu."
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr "ProszÄ podaÄ prawidÅowy adres email w polu 'Podstawowy adres'"
diff --git a/gosa-plugins/dak/locale/pt_BR/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/pt_BR/LC_MESSAGES/messages.po
deleted file mode 100644
index f3a889dd4..000000000
--- a/gosa-plugins/dak/locale/pt_BR/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,120 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: GOsa plugins - dak\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2010-03-11 21:10-0300\n"
-"Last-Translator: Marcos Amorim \n"
-"Language-Team: Marcos Amorim Clever de Oliveira \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: BRAZIL\n"
-
-#: addons/dak/dak_keyring.tpl:2
-#: addons/dak/dak_queue.tpl:2
-msgid "Filter"
-msgstr "Filtro"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "Servidor"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "Procurar"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "Importar"
-
-#: addons/dak/class_dakkeyring.inc:114
-msgid "Key ID"
-msgstr "Chave ID"
-
-#: addons/dak/class_dakkeyring.inc:115
-msgid "Length"
-msgstr "Tamanho"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "Estatus"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "Ação"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, php-format
-msgid "Created: %s"
-msgstr "Criado por: %s"
-
-#: addons/dak/class_dakkeyring.inc:140
-msgid "Valid"
-msgstr "Válido"
-
-#: addons/dak/class_dakkeyring.inc:141
-msgid "Expired: "
-msgstr "Expirado:"
-
-#: addons/dak/class_dakkeyring.inc:142
-msgid "Expires: "
-msgstr "Expira:"
-
-#: addons/dak/class_dakkeyring.inc:276
-msgid "DAK keyring"
-msgstr "Chaveiro DAK"
-
-#: addons/dak/class_dakkeyring.inc:276
-#: addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43
-#: addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57
-#: addons/dak/class_dakqueue.inc:58
-msgid "Addon"
-msgstr "Addon"
-
-#: addons/dak/class_dakkeyring.inc:277
-msgid "DAK keyring management"
-msgstr "Gerenciamento de chaveiro DAK"
-
-#: addons/dak/dak_queue.tpl:11
-msgid "Repositories"
-msgstr "Repositórios"
-
-#: addons/dak/class_dakrepository.inc:43
-msgid "DAK repository"
-msgstr "Repositório DAK"
-
-#: addons/dak/class_dakrepository.inc:44
-msgid "DAK repository management"
-msgstr "Gerenciamento de repositório DAK"
-
-#: addons/dak/class_DAK.inc:80
-#: addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr "Erro"
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr "DAK"
-
-#: addons/dak/class_dakqueue.inc:57
-msgid "DAK queue"
-msgstr "Fila DAK"
-
-#: addons/dak/class_dakqueue.inc:58
-msgid "DAK queue management"
-msgstr "Gerenciamento de fila DAK"
-
diff --git a/gosa-plugins/dak/locale/ru/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/ru/LC_MESSAGES/messages.po
deleted file mode 100644
index f27e5269e..000000000
--- a/gosa-plugins/dak/locale/ru/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,444 +0,0 @@
-# Translation of messages.po to Russian
-# Valia V. Vaneeva , 2004.
-# $Id: messages.po,v 1.61 2005/04/18 10:37:13 migor-guest Exp $
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2005-04-18 14:35+0300\n"
-"Last-Translator: Igor Muratov \n"
-"Language-Team: ALT Linux Team\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: poEdit 1.3.1\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-#, fuzzy
-msgid "Filter"
-msgstr "ФилÑÑÑÑ"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "СеÑвеÑ"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "ÐоиÑк"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "ÐмпоÑÑиÑоваÑÑ"
-
-#: addons/dak/class_dakkeyring.inc:114
-#, fuzzy
-msgid "Key ID"
-msgstr "ÐденÑиÑикаÑÐ¾Ñ Ð¿Ð¾Ð»ÑзоваÑелÑ"
-
-#: addons/dak/class_dakkeyring.inc:115
-#, fuzzy
-msgid "Length"
-msgstr "УлиÑа"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "СоÑÑоÑние"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "ÐейÑÑвие"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, fuzzy, php-format
-msgid "Created: %s"
-msgstr "СоздаÑÑ"
-
-#: addons/dak/class_dakkeyring.inc:140
-msgid "Valid"
-msgstr ""
-
-#: addons/dak/class_dakkeyring.inc:141
-#, fuzzy
-msgid "Expired: "
-msgstr "ÐкÑпоÑÑ"
-
-#: addons/dak/class_dakkeyring.inc:142
-#, fuzzy
-msgid "Expires: "
-msgstr "ÐкÑпоÑÑ"
-
-#: addons/dak/class_dakkeyring.inc:276
-#, fuzzy
-msgid "DAK keyring"
-msgstr "ÐкÑпоÑÑ Ð² LDIF"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "Addon"
-msgstr "ÐополниÑелÑно"
-
-#: addons/dak/class_dakkeyring.inc:277
-#, fuzzy
-msgid "DAK keyring management"
-msgstr "УпÑавление подÑазделениÑми"
-
-#: addons/dak/dak_queue.tpl:11
-#, fuzzy
-msgid "Repositories"
-msgstr "ÐовÑоÑиÑÑ"
-
-#: addons/dak/class_dakrepository.inc:43
-#, fuzzy
-msgid "DAK repository"
-msgstr "ÐаÑалог"
-
-#: addons/dak/class_dakrepository.inc:44
-#, fuzzy
-msgid "DAK repository management"
-msgstr "ÐаÑалог"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr ""
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr ""
-
-#: addons/dak/class_dakqueue.inc:57
-#, fuzzy
-msgid "DAK queue"
-msgstr "ÐÐ¾Ð¼ÐµÑ ÑелеÑона"
-
-#: addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "DAK queue management"
-msgstr "УпÑавление подÑазделениÑми"
-
-#~ msgid "Description"
-#~ msgstr "ÐпиÑание"
-
-#~ msgid "Addressbook"
-#~ msgstr "ÐдÑеÑÐ½Ð°Ñ ÐºÐ½Ð¸Ð³Ð°"
-
-#~ msgid "This does something"
-#~ msgstr "ЧÑо-Ñо бÑдеÑ"
-
-#~ msgid "Dial from %s to %s now?"
-#~ msgstr "Ðвоним Ñ %s на %s?"
-
-#, fuzzy
-#~ msgid ""
-#~ "You need to set your personal phone number in order to perform direct "
-#~ "dials."
-#~ msgstr ""
-#~ "У Ð²Ð°Ñ Ð½ÐµÑ Ð¿ÐµÑÑоналÑного набоÑа ÑелеÑонов. ÐаÑÑÑойÑе ÑÑо пÑежде Ñем "
-#~ "звониÑÑ."
-
-#~ msgid "Dial"
-#~ msgstr "Ðвонок"
-
-#~ msgid "Save contact for %s as vcard"
-#~ msgstr "СоÑ
ÑаниÑÑ ÐºÐ¾Ð½ÑакÑнÑÑ Ð¸Ð½ÑоÑмаÑÐ¸Ñ %s в ÑоÑмаÑе vcard"
-
-#~ msgid "Send mail to %s"
-#~ msgstr "ÐÑпÑавиÑÑ %s ÑообÑение по Ñл. поÑÑе"
-
-#~ msgid "global addressbook"
-#~ msgstr "обÑÐ°Ñ Ð°Ð´ÑеÑÐ½Ð°Ñ ÐºÐ½Ð¸Ð³Ð°"
-
-#, fuzzy
-#~ msgid "user database"
-#~ msgstr "ÐÐ°Ð·Ñ Ð´Ð°Ð½Ð½ÑÑ
"
-
-#, fuzzy
-#~ msgid "Contact stored in '%s'"
-#~ msgstr "ÐонÑÐ°ÐºÑ ÑоÑ
Ñанен в %s"
-
-#~ msgid "Creating new entry in"
-#~ msgstr "Создание нового обÑекÑа в"
-
-#~ msgid "All"
-#~ msgstr "ÐÑе"
-
-#~ msgid "Name"
-#~ msgstr "ФамилиÑ"
-
-#~ msgid "Given name"
-#~ msgstr "ÐмÑ"
-
-#~ msgid "Work phone"
-#~ msgstr "РабоÑий ÑелеÑон"
-
-#~ msgid "Cell phone"
-#~ msgstr "СоÑовÑй ÑелеÑон"
-
-#~ msgid "Home phone"
-#~ msgstr "ÐомаÑний ÑелеÑон"
-
-#~ msgid "Phone"
-#~ msgstr "ТелеÑон"
-
-#, fuzzy
-#~ msgid "Telephone number"
-#~ msgstr "ТелеÑоннÑе номеÑа"
-
-#~ msgid "Fax"
-#~ msgstr "ФакÑ"
-
-#~ msgid "Mobile"
-#~ msgstr "ÐобилÑнÑй"
-
-#~ msgid "Pager"
-#~ msgstr "ÐейджеÑ"
-
-#~ msgid "Email"
-#~ msgstr "Email"
-
-#~ msgid ""
-#~ "Cannot create a unique DN for your entry. Please fill more formular "
-#~ "fields."
-#~ msgstr ""
-#~ "Ðевозможно ÑоздаÑÑ ÑникалÑнÑй DN Ð´Ð»Ñ Ð¾Ð±ÑекÑа. ÐаполниÑе вÑе Ð¿Ð¾Ð»Ñ ÑоÑмÑ."
-
-#, fuzzy
-#~ msgid "Addressbook entry acls"
-#~ msgstr "ÐоказаÑÑ Ð¾Ð±ÑекÑÑ Ð°Ð´ÑеÑной книги"
-
-#, fuzzy
-#~ msgid "Surename"
-#~ msgstr "ÐÐ¼Ñ ÑеÑвеÑа"
-
-#, fuzzy
-#~ msgid "Telefon number"
-#~ msgstr "ТелеÑоннÑе номеÑа"
-
-#, fuzzy
-#~ msgid "Fax number"
-#~ msgstr "ТеÑминал"
-
-#, fuzzy
-#~ msgid "Mobile number"
-#~ msgstr "ÐомаÑний ÑелеÑон"
-
-#, fuzzy
-#~ msgid "Home phone number"
-#~ msgstr "ТелеÑоннÑе номеÑа"
-
-#, fuzzy
-#~ msgid "User identification"
-#~ msgstr "ÐнÑоÑмаÑиÑ"
-
-#, fuzzy
-#~ msgid "Mail address"
-#~ msgstr "MAC-адÑеÑ"
-
-#~ msgid "Organization"
-#~ msgstr "ÐÑганизаÑиÑ"
-
-#~ msgid "Department"
-#~ msgstr "ÐодÑазделение"
-
-#~ msgid "Location"
-#~ msgstr "ÐеÑÑоположение"
-
-#, fuzzy
-#~ msgid "Postal address"
-#~ msgstr "ÐоÑÑовÑй индекÑ"
-
-#~ msgid "State"
-#~ msgstr "Ðдм. единиÑа"
-
-#~ msgid "Initials"
-#~ msgstr "ÐÑÑеÑÑво"
-
-#, fuzzy
-#~ msgid "Title"
-#~ msgstr "ФайлÑ"
-
-#, fuzzy
-#~ msgid "Common name"
-#~ msgstr "ÐеÑÑоположение"
-
-#~ msgid "Warning"
-#~ msgstr "ÐÑедÑпÑеждение"
-
-#~ msgid ""
-#~ "This includes all addressbook data in this entry. Please double check if "
-#~ "your really want to do this since there is no way for GOsa to get your "
-#~ "data back."
-#~ msgstr ""
-#~ "ÐÑо вклÑÑÐ°ÐµÑ Ð²Ñе обÑекÑÑ Ð°Ð´ÑеÑной книги. ÐÑовеÑÑе дейÑÑвиÑелÑно ли ÑÑо "
-#~ "Ñак, поÑколÑÐºÑ GOsa не ÑÐ¼Ð¾Ð¶ÐµÑ Ð¾ÑмениÑÑ ÑезÑлÑÑаÑÑ ÑÑой опеÑаÑии."
-
-#, fuzzy
-#~ msgid ""
-#~ "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-#~ msgstr ""
-#~ "ÐÑли Ð²Ñ ÑвеÑÐµÐ½Ñ Ð² ÑвоиÑ
дейÑÑвиÑÑ
, нажмиÑе на ÐºÐ½Ð¾Ð¿ÐºÑ Ð£Ð´Ð°Ð»Ð¸ÑÑ , "
-#~ "инаÑе нажмиÑе ÐÑмена ."
-
-#~ msgid "Dial connection..."
-#~ msgstr "Соединение..."
-
-#~ msgid "Private"
-#~ msgstr "ÐиÑнÑй"
-
-#~ msgid "Contact"
-#~ msgstr "ÐонÑакÑ"
-
-#~ msgid "Information"
-#~ msgstr "ÐнÑоÑмаÑиÑ"
-
-#~ msgid ""
-#~ "The telephone list plugin provides list and search facilities for the "
-#~ "people in your site. You may want to specify the asterisk [*] like in "
-#~ "'Go*us' to find 'Gonicus'. Use the filters below to narrow down your "
-#~ "search."
-#~ msgstr ""
-#~ "ÐÑÐ¾Ñ Ð¼Ð¾Ð´ÑÐ»Ñ Ð¿ÑедоÑÑавлÑÐµÑ Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾ÑÑи пÑоÑмоÑÑа и поиÑка инÑоÑмаÑии Ð´Ð»Ñ "
-#~ "полÑзоваÑелей ваÑего ÑайÑа. Ð Ñаблоне Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе иÑполÑзоваÑÑ Ð·Ð²ÐµÐ·Ð´Ð¾ÑÐºÑ "
-#~ "[*], напÑимеÑ, \"Ð*н\", ÑÑÐ¾Ð±Ñ Ð½Ð°Ð¹Ñи Ð¸Ð¼Ñ \"Ðван\". УÑоÑниÑÑ ÑезÑлÑÑаÑÑ "
-#~ "поиÑка можно Ñ Ð¿Ð¾Ð¼Ð¾ÑÑÑ ÑилÑÑÑов ниже."
-
-#~ msgid "Actions"
-#~ msgstr "ÐейÑÑвиÑ"
-
-#~ msgid "Add entry"
-#~ msgstr "ÐобавиÑÑ Ð¾Ð±ÑекÑ"
-
-#~ msgid "Edit entry"
-#~ msgstr "РедакÑиоваÑÑ Ð¾Ð±ÑекÑ"
-
-#~ msgid "Remove entry"
-#~ msgstr "УдалиÑÑ Ð¾Ð±ÑекÑ"
-
-#~ msgid "Select to see regular users"
-#~ msgstr "ÐÑбеÑиÑе, ÑÑÐ¾Ð±Ñ Ð¿ÑоÑмоÑÑеÑÑ Ð¿Ð¾Ð»ÑзоваÑелей"
-
-#~ msgid "Show organizational entries"
-#~ msgstr "ÐоказаÑÑ Ð¾ÑганизаÑионнÑе обÑекÑÑ"
-
-#~ msgid "Select to see users in addressbook"
-#~ msgstr "ÐÑбеÑиÑе, ÑÑÐ¾Ð±Ñ Ð¿ÑоÑмоÑÑеÑÑ Ð¿Ð¾Ð»ÑзоваÑелей в адÑеÑной книге"
-
-#~ msgid "Show addressbook entries"
-#~ msgstr "ÐоказаÑÑ Ð¾Ð±ÑекÑÑ Ð°Ð´ÑеÑной книги"
-
-#~ msgid "Display results for department"
-#~ msgstr "ÐоказаÑÑ ÑезÑлÑÑаÑÑ Ð´Ð»Ñ Ð¿Ð¾Ð´ÑазделениÑ"
-
-#~ msgid "Choose the department the search will be based on"
-#~ msgstr "ÐÑбÑаÑÑ Ñаздел, Ð´Ð»Ñ ÐºÐ¾ÑоÑого бÑÐ´ÐµÑ Ð¾ÑÑÑеÑÑвлен поиÑк"
-
-#~ msgid "Match object"
-#~ msgstr "СооÑвеÑÑÑвÑÑÑий обÑекÑ"
-
-#~ msgid "Choose the object that will be searched in"
-#~ msgstr "ÐÑбеÑиÑе обÑекÑ, в коÑоÑом бÑÐ´ÐµÑ Ð¾ÑÑÑеÑÑвлен поиÑк"
-
-#~ msgid "Search for"
-#~ msgstr "ÐоиÑк"
-
-#~ msgid "Search string"
-#~ msgstr "СÑÑока поиÑка"
-
-#~ msgid "Choose the department to store entry in"
-#~ msgstr "ÐÑбÑаÑÑ Ñаздел, Ð´Ð»Ñ Ñ
ÑÐ°Ð½ÐµÐ½Ð¸Ñ Ð¾Ð±ÑекÑа"
-
-#~ msgid "Personal"
-#~ msgstr "ÐонÑакÑ"
-
-#, fuzzy
-#~ msgid "Last name"
-#~ msgstr "СпиÑок"
-
-#, fuzzy
-#~ msgid "First name"
-#~ msgstr "СпиÑок"
-
-#~ msgid "Personal title"
-#~ msgstr "ÐбÑаÑение"
-
-#~ msgid "Address"
-#~ msgstr "ÐдÑеÑ"
-
-#~ msgid "Organizational"
-#~ msgstr "ÐÑганизаÑиÑ"
-
-#~ msgid "Company"
-#~ msgstr "ÐомпаниÑ"
-
-#~ msgid "City"
-#~ msgstr "ÐоÑод"
-
-#~ msgid "Postal code"
-#~ msgstr "ÐоÑÑовÑй индекÑ"
-
-#~ msgid "Country"
-#~ msgstr "СÑÑана"
-
-#~ msgid "FAX"
-#~ msgstr "ФакÑ"
-
-#~ msgid "You're about to delete the entry %s."
-#~ msgstr "ÐÑ ÑобиÑаеÑеÑÑ ÑдалиÑÑ Ð¾Ð±ÑÐµÐºÑ %s."
-
-#~ msgid "Cancel"
-#~ msgstr "ÐÑмена"
-
-#~ msgid "Save"
-#~ msgstr "СоÑ
ÑаниÑÑ"
-
-#~ msgid "Delete"
-#~ msgstr "УдалиÑÑ"
-
-#~ msgid "Address book"
-#~ msgstr "ÐдÑеÑÐ½Ð°Ñ ÐºÐ½Ð¸Ð³Ð°"
-
-#, fuzzy
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "ÐоказаÑÑ Ð¾Ð±ÑекÑÑ Ð°Ð´ÑеÑной книги"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "ÐÑава Ð´Ð»Ñ Ñленов гÑÑппÑ"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "У Ð²Ð°Ñ Ð½ÐµÐ´Ð¾ÑÑаÑоÑно пÑав Ð´Ð»Ñ ÑÐ´Ð°Ð»ÐµÐ½Ð¸Ñ ÑÑого подÑазделениÑ."
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐмÑ\" не заполнено."
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐиÑное имÑ\" не заполнено."
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐмÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑе ÑимволÑ."
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐиÑное имÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑе ÑимволÑ."
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ТелеÑон\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ФакÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐ´Ð¾Ð¿ÑÑÑимÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐобилÑнÑй\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐºÐ¾ÑÑекÑнÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr "ÐнаÑение Ð¿Ð¾Ð»Ñ \"ÐейджеÑ\" ÑодеÑÐ¶Ð¸Ñ Ð½ÐµÐºÐ¾ÑÑекÑнÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr "ÐведиÑе коÑÑекÑное знаÑение в поле \"ÐÑновной адÑеÑ\"."
diff --git a/gosa-plugins/dak/locale/zh/LC_MESSAGES/messages.po b/gosa-plugins/dak/locale/zh/LC_MESSAGES/messages.po
deleted file mode 100644
index 145c3b679..000000000
--- a/gosa-plugins/dak/locale/zh/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,434 +0,0 @@
-# translation of messages.po to Chinese Simplified
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-# Jiang Xin , 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2007-06-03 12:27+0800\n"
-"Last-Translator: Jiang Xin \n"
-"Language-Team: Chinese Simplified \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: addons/dak/dak_keyring.tpl:2 addons/dak/dak_queue.tpl:2
-#, fuzzy
-msgid "Filter"
-msgstr "è¿æ»¤å¨"
-
-#: addons/dak/dak_keyring.tpl:11
-msgid "Server"
-msgstr "æå¡å¨"
-
-#: addons/dak/dak_keyring.tpl:18
-msgid "Search"
-msgstr "æ¥æ¾"
-
-#: addons/dak/dak_keyring.tpl:22
-msgid "Import"
-msgstr "导å
¥"
-
-#: addons/dak/class_dakkeyring.inc:114
-#, fuzzy
-msgid "Key ID"
-msgstr "ç¨æ· ID"
-
-#: addons/dak/class_dakkeyring.inc:115
-#, fuzzy
-msgid "Length"
-msgstr "è¡é"
-
-#: addons/dak/class_dakkeyring.inc:116
-msgid "Status"
-msgstr "ç¶æ"
-
-#: addons/dak/class_dakkeyring.inc:117
-msgid "UID"
-msgstr "UID"
-
-#: addons/dak/class_dakkeyring.inc:118
-msgid "Action"
-msgstr "è¡å¨"
-
-#: addons/dak/class_dakkeyring.inc:139
-#, fuzzy, php-format
-msgid "Created: %s"
-msgstr "å建"
-
-#: addons/dak/class_dakkeyring.inc:140
-#, fuzzy
-msgid "Valid"
-msgstr "ææ"
-
-#: addons/dak/class_dakkeyring.inc:141
-#, fuzzy
-msgid "Expired: "
-msgstr "è¿æ"
-
-#: addons/dak/class_dakkeyring.inc:142
-#, fuzzy
-msgid "Expires: "
-msgstr "è¿æ"
-
-#: addons/dak/class_dakkeyring.inc:276
-#, fuzzy
-msgid "DAK keyring"
-msgstr "LDAP 管ç"
-
-#: addons/dak/class_dakkeyring.inc:276 addons/dak/class_dakkeyring.inc:277
-#: addons/dak/class_dakrepository.inc:43 addons/dak/class_dakrepository.inc:44
-#: addons/dak/class_dakqueue.inc:57 addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "Addon"
-msgstr "æ件"
-
-#: addons/dak/class_dakkeyring.inc:277
-#, fuzzy
-msgid "DAK keyring management"
-msgstr "é¨é¨ç®¡ç"
-
-#: addons/dak/dak_queue.tpl:11
-#, fuzzy
-msgid "Repositories"
-msgstr "ä»åº"
-
-#: addons/dak/class_dakrepository.inc:43
-#, fuzzy
-msgid "DAK repository"
-msgstr "ç®å½"
-
-#: addons/dak/class_dakrepository.inc:44
-#, fuzzy
-msgid "DAK repository management"
-msgstr "ç®å½"
-
-#: addons/dak/class_DAK.inc:80 addons/dak/class_DAK.inc:96
-#: addons/dak/class_DAK.inc:113
-msgid "Error"
-msgstr "é误"
-
-#: addons/dak/main.inc:46
-msgid "DAK"
-msgstr ""
-
-#: addons/dak/class_dakqueue.inc:57
-#, fuzzy
-msgid "DAK queue"
-msgstr "çµè¯éå"
-
-#: addons/dak/class_dakqueue.inc:58
-#, fuzzy
-msgid "DAK queue management"
-msgstr "管ç"
-
-#~ msgid "Description"
-#~ msgstr "æè¿°"
-
-#~ msgid "Addressbook"
-#~ msgstr "å°åç°¿"
-
-#, fuzzy
-#~ msgid "This does something"
-#~ msgstr "******"
-
-#~ msgid "Dial from %s to %s now?"
-#~ msgstr "ç°å¨ä» %s æ¨å·å° %s ä¹ï¼"
-
-#, fuzzy
-#~ msgid ""
-#~ "You need to set your personal phone number in order to perform direct "
-#~ "dials."
-#~ msgstr "æ¨å°æªè®¾ç½®ä¸ªäººçµè¯å·ç ãè¦æ³ä½¿ç¨ç´æ¥æ¨å·éè¦ä¿®æ¹ä¸ªäººçµè¯å·ç ã"
-
-#~ msgid "Dial"
-#~ msgstr "æ¨å·"
-
-#~ msgid "Save contact for %s as vcard"
-#~ msgstr "ä¿å %s çå
容为 vcard"
-
-#~ msgid "Send mail to %s"
-#~ msgstr "åéé®ä»¶å° %s"
-
-#~ msgid "global addressbook"
-#~ msgstr "å
¨å±å°åç°¿"
-
-#~ msgid "user database"
-#~ msgstr "ç¨æ·æ°æ®åº"
-
-#~ msgid "Contact stored in '%s'"
-#~ msgstr "èç³»æ¹å¼ä¿åå° '%s'"
-
-#~ msgid "Creating new entry in"
-#~ msgstr "å建æ°æ¡ç®å°"
-
-#~ msgid "All"
-#~ msgstr "å
¨é¨"
-
-#~ msgid "Name"
-#~ msgstr "å称"
-
-#~ msgid "Given name"
-#~ msgstr "å"
-
-#~ msgid "Work phone"
-#~ msgstr "å·¥ä½çµè¯"
-
-#~ msgid "Cell phone"
-#~ msgstr "移å¨çµè¯"
-
-#~ msgid "Home phone"
-#~ msgstr "ä½å®
çµè¯"
-
-#~ msgid "Phone"
-#~ msgstr "çµè¯"
-
-#, fuzzy
-#~ msgid "Telephone number"
-#~ msgstr "çµè¯å·ç "
-
-#~ msgid "Fax"
-#~ msgstr "ä¼ ç"
-
-#~ msgid "Mobile"
-#~ msgstr "ææº"
-
-#~ msgid "Pager"
-#~ msgstr "å¼æº"
-
-#~ msgid "Email"
-#~ msgstr "é®ä»¶"
-
-#~ msgid ""
-#~ "Cannot create a unique DN for your entry. Please fill more formular "
-#~ "fields."
-#~ msgstr "æ æ³ä¸ºæ¨çæ¡ç®å建ä¸ä¸ªå¯ä¸ DNã请填åæ´å¤å段ã"
-
-#, fuzzy
-#~ msgid "Addressbook entry acls"
-#~ msgstr "ä¿åå°åç°¿æ¡ç®å¤±è´¥"
-
-#~ msgid "Surename"
-#~ msgstr "å§"
-
-#, fuzzy
-#~ msgid "Telefon number"
-#~ msgstr "çµè¯å·ç "
-
-#, fuzzy
-#~ msgid "Fax number"
-#~ msgstr "ç³»åå·"
-
-#, fuzzy
-#~ msgid "Mobile number"
-#~ msgstr "çµè¯å·ç "
-
-#, fuzzy
-#~ msgid "Home phone number"
-#~ msgstr "çµè¯å·ç "
-
-#, fuzzy
-#~ msgid "User identification"
-#~ msgstr "ç¨æ·ä¿¡æ¯"
-
-#~ msgid "Mail address"
-#~ msgstr "é®ä»¶å°å"
-
-#~ msgid "Organization"
-#~ msgstr "ç»ç»/å
¬å¸"
-
-#~ msgid "Department"
-#~ msgstr "é¨é¨"
-
-#~ msgid "Location"
-#~ msgstr "ä½ç½®"
-
-#~ msgid "Postal address"
-#~ msgstr "å°å"
-
-#~ msgid "State"
-#~ msgstr "å·/ç"
-
-#~ msgid "Initials"
-#~ msgstr "ä¸é´å"
-
-#~ msgid "Title"
-#~ msgstr "称è°"
-
-#~ msgid "Home postal address"
-#~ msgstr "ä½å®
å°å"
-
-#~ msgid "Common name"
-#~ msgstr "常ç¨å"
-
-#~ msgid "Warning"
-#~ msgstr "è¦å"
-
-#~ msgid ""
-#~ "This includes all addressbook data in this entry. Please double check if "
-#~ "your really want to do this since there is no way for GOsa to get your "
-#~ "data back."
-#~ msgstr ""
-#~ "è¿ä¸ªæ¡ç®å
å«ææçå°åç°¿æ°æ®ï¼è¯·å次æ£æ¥æ¨æ¯å¦è¦è¿ä¹åï¼å 为 GOsa 没æåæ³"
-#~ "å°æ¨çæ°æ®æ¾åã"
-
-#~ msgid ""
-#~ "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-#~ msgstr "æ以ï¼å¦ææ¨ç¡®å®ï¼è¯·æâå é¤â继ç»ï¼å¦åæâåæ¶âéåºã"
-
-#~ msgid "Dial connection..."
-#~ msgstr "æ¨å·ä¸..."
-
-#~ msgid "Private"
-#~ msgstr "ç§äººçµè¯"
-
-#~ msgid "Contact"
-#~ msgstr "èç³»"
-
-#~ msgid "Information"
-#~ msgstr "æ示信æ¯"
-
-#~ msgid ""
-#~ "The telephone list plugin provides list and search facilities for the "
-#~ "people in your site. You may want to specify the asterisk [*] like in "
-#~ "'Go*us' to find 'Gonicus'. Use the filters below to narrow down your "
-#~ "search."
-#~ msgstr ""
-#~ "çµè¯å表æ件æä¾äºé对æ¨ç«ç¹ç¨æ·çå表åæ¥è¯¢åè½ãæ¨å¯ä»¥ç¨éé
符[*]ï¼"
-#~ "å¦âGo*usâææ¥æ¥è¯¢âGonicusâã使ç¨ä¸é¢çè¿æ»¤å¨æ¥è¿æ»¤æ¥è¯¢ç»æã"
-
-#~ msgid "Actions"
-#~ msgstr "å¨ä½"
-
-#~ msgid "Add entry"
-#~ msgstr "æ·»å è®°å½"
-
-#~ msgid "Edit entry"
-#~ msgstr "ç¼è¾è®°å½"
-
-#~ msgid "Remove entry"
-#~ msgstr "å é¤è®°å½"
-
-#~ msgid "Select to see regular users"
-#~ msgstr "éæ©æ¥çæ®éç¨æ·"
-
-#~ msgid "Show organizational entries"
-#~ msgstr "æ¾ç¤ºç»ç»è®°å½"
-
-#~ msgid "Select to see users in addressbook"
-#~ msgstr "éæ©æ¥çå°åç°¿ä¸ç¨æ·"
-
-#~ msgid "Show addressbook entries"
-#~ msgstr "æ¾ç¤ºå°åç°¿è®°å½"
-
-#~ msgid "Display results for department"
-#~ msgstr "æ¾ç¤ºé¨é¨çç»æ"
-
-#~ msgid "Choose the department the search will be based on"
-#~ msgstr "éæ©ä¸ä¸ªé¨é¨æ¥åæ¥è¯¢"
-
-#~ msgid "Match object"
-#~ msgstr "å¹é
对象"
-
-#~ msgid "Choose the object that will be searched in"
-#~ msgstr "éæ©è¦å¨å
¶ä¸æ¥è¯¢ç对象"
-
-#~ msgid "Search for"
-#~ msgstr "æ¥è¯¢"
-
-#~ msgid "Search string"
-#~ msgstr "æ¥æ¾å符串"
-
-#~ msgid "Choose the department to store entry in"
-#~ msgstr "éæ©æ¾ç½®æ¡ç®çé¨é¨"
-
-#~ msgid "Personal"
-#~ msgstr "个人"
-
-#~ msgid "Last name"
-#~ msgstr "å§"
-
-#~ msgid "First name"
-#~ msgstr "å"
-
-#~ msgid "Personal title"
-#~ msgstr "个人称è°"
-
-#~ msgid "Address"
-#~ msgstr "ä½å"
-
-#~ msgid "Organizational"
-#~ msgstr "ç»ç»"
-
-#~ msgid "Company"
-#~ msgstr "å
¬å¸"
-
-#~ msgid "City"
-#~ msgstr "åå¸"
-
-#~ msgid "Postal code"
-#~ msgstr "é®ç¼"
-
-#~ msgid "Country"
-#~ msgstr "å½å®¶"
-
-#~ msgid "FAX"
-#~ msgstr "ä¼ ç"
-
-#~ msgid "You're about to delete the entry %s."
-#~ msgstr "æ¨å°è¦å é¤æ¡ç® %sã"
-
-#~ msgid "Cancel"
-#~ msgstr "åæ¶"
-
-#~ msgid "Save"
-#~ msgstr "ä¿å"
-
-#~ msgid "Delete"
-#~ msgstr "å é¤"
-
-#~ msgid "Address book"
-#~ msgstr "å°åç°¿"
-
-#, fuzzy
-#~ msgid "Removing of addressbook entry '%s' failed."
-#~ msgstr "å é¤å°åç°¿æ¡ç®å¤±è´¥"
-
-#, fuzzy
-#~ msgid "Permission error"
-#~ msgstr "å
许"
-
-#, fuzzy
-#~ msgid "You have no permission to delete this entry!"
-#~ msgstr "æ¨æ æå é¤è¿ä¸ªé¨é¨ã"
-
-#~ msgid "The required field 'Name' is not set."
-#~ msgstr "éè¦çâå§åâå段没æ设置"
-
-#~ msgid "The required field 'Given name' is not set."
-#~ msgstr "éè¦çâæåâå段没æ设置"
-
-#~ msgid "The field 'Name' contains invalid characters."
-#~ msgstr "âå§åâå段å
å«æ æå符ã"
-
-#~ msgid "The field 'Given name' contains invalid characters."
-#~ msgstr "âæåâå段å
å«æ æå符ã"
-
-#~ msgid "The field 'Phone' contains an invalid phone number."
-#~ msgstr "âçµè¯âå段å
å«æ æçµè¯å·ç ã"
-
-#~ msgid "The field 'Fax' contains an invalid phone number."
-#~ msgstr "âä¼ çâå段å
å«ä¸ä¸ªæ æçµè¯å·ç "
-
-#~ msgid "The field 'Mobile' contains an invalid phone number."
-#~ msgstr "âææºâå段å
å«æ æææºå·ç ã"
-
-#~ msgid "The field 'Pager' contains an invalid phone number."
-#~ msgstr "âä¼ å¼âå段å
å«æ æçµè¯å·ç ã"
-
-#~ msgid "Please enter a valid email address in 'Primary address' field."
-#~ msgstr "请å¨â主é®ä»¶å°åâä¸è¾å
¥ä¸ä¸ªææçé®ä»¶å°åã"
diff --git a/gosa-plugins/dak/plugin.dsc b/gosa-plugins/dak/plugin.dsc
deleted file mode 100644
index f8e7430c0..000000000
--- a/gosa-plugins/dak/plugin.dsc
+++ /dev/null
@@ -1,8 +0,0 @@
-[gosa-plugin]
-name = dak
-description = "Debian archive management infrastructure plugin"
-version = 2.6.8
-author = "Cajus Pollmeier "
-maintainer = "GOsa packages maintainers group "
-homepage = https://oss.gonicus.de/labs/gosa/
-depends = fai
diff --git a/gosa-plugins/dfs/addons/godfs/class_dfsManagment.inc b/gosa-plugins/dfs/addons/godfs/class_dfsManagment.inc
deleted file mode 100644
index 8486489f2..000000000
--- a/gosa-plugins/dfs/addons/godfs/class_dfsManagment.inc
+++ /dev/null
@@ -1,253 +0,0 @@
-config = &$config;
- $this->ui = &$ui;
-
- }
-
- /* Execute is the function all plugins need. It fills the plugin with life and produces the output. */
- function execute() {
-
- /* Normally you would react to user input here. */
- plugin::execute();
-
- $action = "";
- $s_action= "";
- $options = "";
- $regex = "";
-
- $icon = 'folder.gif';
- $expandedIcon = 'folder-expanded.gif';
- $base = get_base_from_people($this->ui->dn);
- $smarty= get_smarty();
-
- foreach ($_POST as $key => $val) {
- # delete
- if (preg_match("/dfs_del.*/", $key)) {
- $s_action = "del";
- $s_entry = preg_replace("/dfs_".$s_action."_/i", "", $key);
- $s_entry = preg_replace("/_.*$/", "", $s_entry);
- $s_entry = base64_decode($s_entry);
- # edit
- } elseif (preg_match("/dfs_edit.*/", $key)) {
- $s_action = "edit";
- $s_entry = preg_replace("/dfs_".$s_action."_/i", "", $key);
- $s_entry = preg_replace("/_.*$/", "", $s_entry);
- $s_entry = base64_decode($s_entry);
- # new
- } elseif (preg_match("/dfs_new.*/", $key)) {
- $s_action = "new";
- # back
- } elseif (preg_match("/dfs_back.*/", $key)) {
- $s_action = "back";
- # home
- } elseif (preg_match("/dfs_home.*/", $key)) {
- $s_action = "home";
- # root
- } elseif (preg_match("/dfs_root.*/", $key)) {
- $s_action = "root";
- }
- }
-
- $tree = new HTML_TreeMenu();
-
- if ((isset($_GET['act'])) && ($_GET['act'] == "edit_entry")) {
- $s_action = "edit";
- $dfs_share = $_GET['id'];
- }
-
- # new
- if ($s_action == "new") {
- $this->dn = "new";
- $this->dfstab = new dfstabs($this->config, $this->config->data['TABS']['DFSTABS'], $this->dn);
- }
-
- # edit
- if (($_SERVER['REQUEST_METHOD'] == "POST") || ($_SERVER['REQUEST_METHOD'] == "GET")) {
- if ($s_action == "edit") {
-
- $this->dn = $dfs_share;
-
- if (($user = get_lock($this->dn)) != "") {
- return (gen_locked_message ($user, $this->dn));
- } else {
- add_lock ($this->dn, $this->ui->dn);
- }
-
- $this->acl = get_permissions($this->dn, $this->ui->subtreeACL);
-
- $this->dfstab = new dfstabs($this->config, $this->config->data['TABS']['DFSTABS'], $this->dn);
- $this->dfstab->set_acl($this->acl);
- $this->dfstab->save_object();
- }
- }
-
- # save pressed
- if (isset($_POST['edit_finish'])) {
- $this->dfstab->last = $this->dfstab->current;
- $this->dfstab->save_object();
- #$disp = $this->by_object[''];
- #var_dump($disp);
-
- $message = $this->dfstab->check();
-
- # any errors?
- if (count($message) == 0) {
- # write to ldap
- $this->dfstab->save();
- } else {
- msg_dialog::displayChecks($message);
- }
- }
-
- # cancel pressed
- if (isset($_POST['edit_cancel'])) {
- del_lock ($this->dn);
- unset ($this->dfstab);
- $this->dfstab = NULL;
- $this->dn = "";
- }
-
- # delete pressed
- if (isset($_POST['edit_delete'])) {
-
- # get the current values
- $this->sambasharename = $_POST['sambaShareName'];
- $this->sharedescription = $_POST['description'];
- $this->fileserver = $_POST['fileserver'];
- $this->share = $_POST['fileservershare'];
- $this->loc = $_POST['location'];
-
- $base = get_base_from_people($this->ui->dn);
- $ou = get_ou("DFS");
- $this->basedn = "sambaShareName=$this->sambasharename,ou=$this->loc,$ou$base";
-
- $ldap = $this->config->get_ldap_link();
- $ldap->cd($this->basedn);
- $ldap->rmdir($this->basedn);
- if (!$ldap->success()){
- msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->basedn, LDAP_DEL, get_class()));
- }
-
- del_lock ($this->dn);
- unset ($this->dfstab);
- $this->dfstab = NULL;
- $this->dn = "";
- }
-
- # generate main page no tabs
-
- $ldap = $this->config->get_ldap_link();
-
- $ou = get_ou("DFS");
-
- $ldap->cd("$ou$base");
- $ldap->search(("ou=*"), array("dn"));
-
- if ($ldap->count() == 0) {
- $message[] = _("No DFS entries found");
- msg_dialog::displayChecks($message);
- } else {
- $have_tree= false;
- while ($dfs = $ldap->fetch()) {
- if (preg_match("/^ou=DFS.*/", $dfs["dn"])) {
- $dfs_root_node = new HTML_TreeNode(array('text' => "DFS", 'icon' => $icon, 'expandedIcon' => $expandedIcon, 'expanded' => false));
- $have_tree= true;
- } elseif ($have_tree) {
- preg_match("/^ou=(.*),/U", $dfs["dn"], $reg);
- $loc = $reg[1];
- $node = $dfs_root_node->addItem(new HTML_TreeNode(array('text' => "$loc", 'icon' => $icon, 'expandedIcon' => $expandedIcon)));
-
- $sub_node_ldap = $this->config->get_ldap_link();
- $sub_node_ldap->cd("ou=$loc, $ou$base");
- $sub_node_ldap->search("(objectclass=sambaShare)", array("sambaShareName", "description", "documentLocation"));
-
- while ($dfs_loc = $sub_node_ldap->fetch()) {
- $share_name = $dfs_loc["sambaShareName"][0];
- $desc = $dfs_loc["description"][0];
- $srv_loc = preg_replace("/msdfs:/", "", $dfs_loc["documentLocation"][0]);
- #$srv_loc = preg_replace("/\\/", "\\\\", $srv_loc);
- $link = "main.php\?plug=".$_GET['plug']."\&id=$loc\/$share_name\&act=edit_entry";
- $share_node = &$node->addItem(new HTML_TreeNode(array('text' => "$share_name - $desc", 'link' => "$link", 'icon' => $icon, 'expandedIcon' => $expandedIcon)));
- $srv_loc_node = &$share_node->addItem(new HTML_TreeNode(array('text' => "$srv_loc", 'icon' => $icon, 'expandedIcon' => $expandedIcon)));
- }
- }
- }
- }
-
- $tree->addItem($dfs_root_node);
-
- // Create the presentation class
- $treeMenu = new HTML_TreeMenu_DHTML($tree, array('images' => 'images', 'defaultClass' => 'treeMenuDefault'));
- $tree_html = $treeMenu->toHTML();
-
- if ($this->dfstab === NULL) {
-
- if (($message = check_sizelimit()) != "") {
- return ($message);
- }
-
- $listhead = "";
-
-
- /* Use the smarty templating engine here... */
-
- $smarty->assign('tree', $tree_html);
- $smarty->assign('search_image', get_template_path('images/lists/search.png'));
- $smarty->assign('infoimage', get_template_path('images/info.png'));
- $smarty->assign('launchimage', get_template_path('images/launch.png'));
- $smarty->assign('alphabet', generate_alphabet());
- $smarty->assign('hint', print_sizelimit_warning());
- $smarty->assign('apply', apply_filter());
- $smarty->assign('dfshead', $listhead);
-
- /* Let smarty fetch and process the page. Always seperate PHP and HTML as much as
- you can. */
- return ($smarty->fetch (get_template_path('contents.tpl', TRUE)));
- }
-
- /* TABS */
-
- $display = $this->dfstab->execute();
-
- $display .= "\n";
- $display .= " "._("Finish")." \n";
- $display .= " ".msgPool::cancelButton()." \n";
- $display .= "
\n";
-
- return ($display);
-
- }
-
- function remove_lock() {
- if (isset($this->dn)) {
- del_lock ($this->dn);
- }
- }
-
-}
-?>
diff --git a/gosa-plugins/dfs/addons/godfs/class_dfsgeneric.inc b/gosa-plugins/dfs/addons/godfs/class_dfsgeneric.inc
deleted file mode 100644
index 4e09f582f..000000000
--- a/gosa-plugins/dfs/addons/godfs/class_dfsgeneric.inc
+++ /dev/null
@@ -1,205 +0,0 @@
-dn = $dn;
- $this->orig_dn = $dn;
- }
-
- function execute() {
- /* Call parent execute */
- plugin::execute();
-
- $smarty= get_smarty();
-
- if (($this->dn == "new") || ($this->dn == "")) {
- $smarty->assign("sambasharename", "");
- $smarty->assign("sharedescription", "");
- $smarty->assign("fileserver", "");
- $smarty->assign("fileservershare", "");
- $smarty->assign("location", "");
- $smarty->assign("dfsdescription", "");
- } else {
- $ldap = $this->config->get_ldap_link();
-
- $base = get_base_from_people($this->dn);
- $ou = get_ou("DFS");
-
- $tmp = preg_split('/\//', $this->dn, 2);
- $this->loc = $tmp[0];
- $this->sambasharename = $tmp[1];
-
- $ldap->cd("$ou $base");
- $ldap->search(("ou=$this->loc"), array("description"));
- $dfs_desc = $ldap->fetch();
- $this->dfsdescription = $dfs_desc['description'][0];
-
- $ldap->cd("ou=$this->loc, $ou $base");
- $ldap->search("(&(sambaShareName=$this->sambasharename)(objectclass=sambaShare))", array("description", "documentLocation"));
-
- $details = $ldap->fetch();
- $this->sharedescription = $details['description'][0];
- $tmp = preg_split('/\\\\/', $details['documentLocation'][0], 2);
-
- $this->fileserver = preg_replace("/msdfs:/", "", $tmp[0]);
- $this->share = preg_replace("/\\\/", "", $tmp[1]);
-
- /* Fill array */
- $smarty->assign("sambasharename", $this->sambasharename);
- $smarty->assign("sharedescription", $this->sharedescription);
- $smarty->assign("fileserver", $this->fileserver);
- $smarty->assign("fileservershare", $this->share);
- $smarty->assign("location", $this->loc);
- $smarty->assign("dfsdescription", $this->dfsdescription);
- }
-
- /* Show main page */
- return ($smarty->fetch (get_template_path('generic.tpl', TRUE)));
- }
-
- function check()
- {
- plugin::check();
- $message = array();
-
- $ldap = $this->config->get_ldap_link();
- $base = get_base_from_people($this->ui->dn);
- $ou = get_ou("DFS");
- $dn_explode = explode("/", $this->dn);
- $sub_ou = $dn_explode[0];
- $sambaShareName = $dn_explode[1] . "/" . $dn_explode[2] . "/" . $dn_explode[3];
- $dn = "sambaShareName=$sambaShareName,ou=$sub_ou,$ou$base";
- $ldap->cat($dn);
- $attrs = $ldap->fetch();
-
- if ($this->orig_dn == "new" && !($attrs == FALSE)) {
- $message[] = msgPool::duplicated("Dfs Share");
- } elseif ($this->orig_dn != $this->dn && !($attrs == FALSE)) {
- $message[] = msgPool::duplicated("Dfs Share");
- }
-
- if ($this->dn == "new" || $this->dn == "") {
- $this->sambasharename = $_POST['sambaShareName'];
- $this->sharedescription = $_POST['description'];
- $this->fileserver = $_POST['fileserver'];
- $this->share = $_POST['fileservershare'];
- $this->loc = $_POST['location'];
- }
-
- # required fields set?
- if ($this->sambasharename == "") {
- $message[] = msgPool::required("Name");
- }
- if ($this->sharedescription == "") {
- $message[] = msgPool::required("Description");
- }
- if ($this->fileserver == "") {
- $message[] = msgPool::required("Fileserver");
- }
- if ($this->share == "") {
- $message[] = msgPool::required("Share");
- }
- if ($this->loc == "") {
- $message[] = msgPool::required("Location");
- }
-
- return $message;
- }
-
- function save() {
-
- plugin::save();
-
- # get the current values
- $this->sambasharename = $_POST['sambaShareName'];
- $this->sharedescription = $_POST['description'];
- $this->fileserver = $_POST['fileserver'];
- $this->share = $_POST['fileservershare'];
- $this->loc = $_POST['location'];
-
- # set the attribs
- $this->attrs["sambaShareName"] = "$this->sambasharename,ou=$this->loc,$ou$base";
- $this->attrs["objectClass"][] = "top";
- $this->attrs["objectClass"][] = "SambaShare";
- $this->attrs["objectClass"][] = "extensibleObject";
- $this->attrs["sambaShareName"] = $this->sambasharename;
- $this->attrs["description"] = $this->sharedescription;
- $this->attrs["documentLocation"] = "msdfs:$this->fileserver\\\\$this->share";
-
- $ldap = $this->config->get_ldap_link();
-
- if ($this->dn == "new" || $this->dn == "") {
- $base = get_base_from_people($this->ui->dn);
- $ou = get_ou("DFS");
- $this->basedn = "sambaShareName=$this->sambasharename,ou=$this->loc,$ou$base";
- $ldap->cd($this->basedn);
- $ldap->add($this->attrs);
- } else {
- # try to find entry
- $base = get_base_from_people($this->ui->dn);
- $ou = get_ou("DFS");
- #$dn_explode = explode("/", $this->sambasharename);
- #$sub_ou = $dn_explode[0];
- #$sambaShareName = $dn_explode[1] . "/" . $dn_explode[2] . "/" . $dn_explode[3];
- $dn = "sambaShareName=$this->sambasharename,ou=$this->loc,$ou$base";
- $ldap->cat($dn);
- $attrs = $ldap->fetch();
-
- $this->basedn = "sambaShareName=$this->sambasharename,ou=$this->loc,$ou$base";
- $ldap->cd($this->basedn);
- $nr = count($attrs);
-
- if (count($attrs)) {
- # modify if found
- $ldap->modify($this->attrs);
- } else {
- # add
- $ldap->add($this->attrs);
- }
-
- if (!$ldap->success()){
- msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class()));
- }
- }
- }
-
- function save_object() {
- plugin::save_object();
- $this->base = $_POST['base'];
- }
-
- function delete() {
-
- plugin::delete();
-
- # get the current values
- $this->sambasharename = $_POST['sambaShareName'];
- $this->sharedescription = $_POST['description'];
- $this->fileserver = $_POST['fileserver'];
- $this->share = $_POST['fileservershare'];
- $this->loc = $_POST['location'];
-
- $base = get_base_from_people($this->ui->dn);
- $ou = get_ou("DFS");
- $this->basedn = "sambaShareName=$this->sambasharename,ou=$this->loc,$ou$base";
-
- $ldap = $this->config->get_ldap_link();
- $ldap->cd($this->basedn);
- $ldap->rmdir($this->basedn);
- if (!$ldap->success()){
- msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->basedn, LDAP_DEL, get_class()));
- }
- }
-
- }
-
diff --git a/gosa-plugins/dfs/addons/godfs/contents.tpl b/gosa-plugins/dfs/addons/godfs/contents.tpl
deleted file mode 100644
index e45f501fd..000000000
--- a/gosa-plugins/dfs/addons/godfs/contents.tpl
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
- {t}DFS Shares{/t} {$hint}
-
-
-
- {$dfshead}
-
-
-
- {$tree}
-
-
-
-
-
-
-
{image path="{$infoimage}" align="right"}{t}Information{/t}
-
-
-
-
- {t}This menu allows you to create, delete and edit selected dfs shares. Having a large numbers of dfs shares, you might prefer the range selectors on top of the dfs share list.{/t}
-
-
-
-
-
{image path="{$launchimage}" align="right"}{t}Filters{/t}
-
-
-
-
-
-
-
-
diff --git a/gosa-plugins/dfs/addons/godfs/generic.tpl b/gosa-plugins/dfs/addons/godfs/generic.tpl
deleted file mode 100644
index 42c3f1c10..000000000
--- a/gosa-plugins/dfs/addons/godfs/generic.tpl
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
- {t}DFS Properties{/t}
-
-
-
-
-
-
-
-
-
-
- {t}DFS Location{/t}
-
-
-
-
-
-
-
-
-
diff --git a/gosa-plugins/dfs/addons/godfs/main.inc b/gosa-plugins/dfs/addons/godfs/main.inc
deleted file mode 100644
index 424b3c54d..000000000
--- a/gosa-plugins/dfs/addons/godfs/main.inc
+++ /dev/null
@@ -1,50 +0,0 @@
-remove_lock();
- }
-}
-
-/* Remove this plugin from session
-*/
-if ( $cleanup ){
- session::un_set('dfsManagment');
-}else{
-
- # create dfsManagment object
- if (!session::is_set('dfsManagment')){
- session::set('dfsManagment',new dfsManagment($config, $ui));
- }
- $dfsManagment = session::get('dfsManagment');
- $output = $dfsManagment->execute();
-
- # do we have to reset
- if (isset($_GET['reset']) && $_GET['reset'] == 1) {
- del_lock ($ui->dn);
- session::un_set('dfsManagment');
- }
-
- # create page header
- if (get_object_info() != "") {
- $display = print_header(get_template_path('plugins/dfs/images/dfs.png'),
- _("Distributed File System Administration"),
- " ".get_object_info());
- } else {
- $display = print_header(get_template_path('plugins/dfs/images/dfs.png'),
- _("Distributed File System Administration"));
- }
-
- $display.= $output;
-
- # show page
- session::set('dfsManagment',$dfsManagment);
- }
-
-?>
diff --git a/gosa-plugins/dfs/addons/godfs/tabs_dfs.inc b/gosa-plugins/dfs/addons/godfs/tabs_dfs.inc
deleted file mode 100644
index ef5950ebe..000000000
--- a/gosa-plugins/dfs/addons/godfs/tabs_dfs.inc
+++ /dev/null
@@ -1,39 +0,0 @@
-base = $this->by_object['dfsManagment']->base;
- }
-
- #function save_object() {
- # if (isset($_POST['base'])) {
- # plugin::save_object();
- # } else {
- # $this->base = $_POST['base'];
- # }
- #}
-
-
-
-
- function check($ignore_account= FALSE) {
- return (tabs::check(TRUE));
- }
-
- function save($ignore_account= FALSE)
- {
- $baseobject = $this->by_object['dfsManagment'];
- return tabs::save(TRUE);
- }
-
- function del() {
- $baseobject = $this->by_object['dfsManagment'];
- return tabs::delete(TRUE);
- }
-
-}
-
-?>
diff --git a/gosa-plugins/dfs/help/guide.xml b/gosa-plugins/dfs/help/guide.xml
deleted file mode 100644
index e69de29bb..000000000
diff --git a/gosa-plugins/dfs/html/images/dfs.png b/gosa-plugins/dfs/html/images/dfs.png
deleted file mode 100644
index accbd8d63..000000000
Binary files a/gosa-plugins/dfs/html/images/dfs.png and /dev/null differ
diff --git a/gosa-plugins/dfs/html/images/dtree.png b/gosa-plugins/dfs/html/images/dtree.png
deleted file mode 100644
index 7eb790996..000000000
Binary files a/gosa-plugins/dfs/html/images/dtree.png and /dev/null differ
diff --git a/gosa-plugins/dfs/html/images/location.png b/gosa-plugins/dfs/html/images/location.png
deleted file mode 100644
index 3d26af552..000000000
Binary files a/gosa-plugins/dfs/html/images/location.png and /dev/null differ
diff --git a/gosa-plugins/dfs/locale/de/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/de/LC_MESSAGES/messages.po
deleted file mode 100644
index ae899301a..000000000
--- a/gosa-plugins/dfs/locale/de/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,137 +0,0 @@
-# translation of messages.po to Deutsch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-#
-# Alfred Schroeder , 2004.
-# Cajus Pollmeier , 2004, 2005, 2006.
-# Jan Wenzel , 2004,2005, 2008.
-# Stefan Koehler , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2008-04-03 14:16+0200\n"
-"Last-Translator: Jan Wenzel \n"
-"Language-Team: Deutsch \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-msgid "DFS Management"
-msgstr "UDFS-Verwaltung"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "Dies tut etwas"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-msgid "LDAP error"
-msgstr "LDAP-Fehler"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr "Keine DFS-Einträge gefunden"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr "Eine DFS-Freigabe nach oben"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr "Auf"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr "Gehe zur DFS-Wurzel"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "Wurzel"
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr "Neue DFS-Freigabe erstellen"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "Basis"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "Ãbertrage Abteilung"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr "Ãbertragen"
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "Speichern"
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr "DFS-Eigenschaften"
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr "Name der DFS-Freigabe"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "Beschreibung"
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr "Dateiserver"
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr "Freigabe auf Dateiserver"
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr "DFS-Pfad"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "Pfad"
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr "Verwaltung des Verteilten Dateisystems (DFS)"
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr "DFS-Freigaben"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "Information"
-
-#: addons/godfs/contents.tpl:26
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"Dieses Menü erlaubt es Ihnen, DFS-Freigaben hinzuzufügen, zu bearbeiten oder "
-"zu entfernen. Bei einer Vielzahl von DFS-Freigaben bietet sich die "
-"Verwendung der Bereichswahl an."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "Filter"
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr "Zeige die DFS-Freigaben, auf die das Folgende passt"
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr "Regulärer Ausdruck zum Erkennen von DFS-Freigaben"
diff --git a/gosa-plugins/dfs/locale/es/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/es/LC_MESSAGES/messages.po
deleted file mode 100644
index 4ace36aca..000000000
--- a/gosa-plugins/dfs/locale/es/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,137 +0,0 @@
-# translation of admin.po to
-# translation of systems.po to
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# , 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: admin\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2010-01-24 23:59+0100\n"
-"Last-Translator: \n"
-"Language-Team: Spanish <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-msgid "DFS Management"
-msgstr "Administración DFS"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "Esto hace algo"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-msgid "LDAP error"
-msgstr "Error LDAP"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr "No se han encontrado entradas DFS"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr "Subir un compartido DFS"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr "Arriba"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr "Ir a la raÃz DFS"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "RaÃz"
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr "Crear nuevo compartido DFS"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "Base"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "Enviar departamento"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr "Enviar"
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "Terminar"
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr "Propiedades DFS"
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr "Nombre del compartido DFS"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "Descripción"
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr "Servidor de archivos"
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr "Recurso compartido en servidor de archivos"
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr "Localización DFS"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "Localización"
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr "Administración sistema de archivos distribuidos"
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr "Compartidos DFS"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "Información"
-
-#: addons/godfs/contents.tpl:26
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"Este menú le permitirá crear, eliminar, y editar los compartidos "
-"DFSseleccionados. Puede preferir el selector de rango en la parte superior "
-"de la lista de compartidos DFS cuando maneje un gran número de departamentos."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "Filtros"
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr "Mostrar compartidos DFS que coincidan con"
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr "Expresiones regulares para buscar compartidos DFS"
-
-#~ msgid "Cancel"
-#~ msgstr "Cancelar"
diff --git a/gosa-plugins/dfs/locale/fr/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/fr/LC_MESSAGES/messages.po
deleted file mode 100644
index 3cc8ac598..000000000
--- a/gosa-plugins/dfs/locale/fr/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,130 +0,0 @@
-# translation of messages.po to Français
-# Benoit Mortier , 2005, 2006, 2007, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2008-06-04 09:22+0200\n"
-"Last-Translator: Benoit Mortier \n"
-"Language-Team: Français \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-msgid "DFS Management"
-msgstr "Gestion DFS"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "Ceci fait quelque chose"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-msgid "LDAP error"
-msgstr "Erreur LDAP"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr "Pas d'entrée DFS trouvées"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr "Monter d'un partage DFS"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr "Au dessus"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr "Aller au répertoire racine de DFS"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "Racine"
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr "Création d'un nouveau partage dfs"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "Base"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "Soumettre le département"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr "Soumettre"
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "Terminé"
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr "Propriétés DFS"
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr "Nom du partage DFS"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "Description"
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr "Serveur de fichier"
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr "Partage sur le serveur de fichier"
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr "Location DFS"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "Lieu"
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr "Administration du systèmes de fichiers distribués DFS"
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr "Partages DFS"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "Information"
-
-#: addons/godfs/contents.tpl:26
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"Ce menu vous permet de d'ajouter, supprimer et éditer des partages DFS. Si "
-"vous avez un grand nombre de départements il est conseillé d'utiliser les "
-"filtres."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "Filtres"
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr "Afficher les partages dfs correspondants"
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr "Expression régulière pour sélectionner les partages dfs"
diff --git a/gosa-plugins/dfs/locale/it/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/it/LC_MESSAGES/messages.po
deleted file mode 100644
index ed9459875..000000000
--- a/gosa-plugins/dfs/locale/it/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,184 +0,0 @@
-# translation of messages.po to Italian
-# Copyright (c) 2005 B-Open Solutions srl - http://www.bopen.it/
-# Copyright (c) 2005 Alessandro Amici
-# Alessandro Amici , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2005-11-18 15:26+0100\n"
-"Last-Translator: Alessandro Amici \n"
-"Language-Team: Italian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9.1\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-#, fuzzy
-msgid "DFS Management"
-msgstr "Dirigenza"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "Questo fa qualcosa"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-#, fuzzy
-msgid "LDAP error"
-msgstr "Errore LDAP"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:208
-#, fuzzy
-msgid "Go up one dfsshare"
-msgstr "Sali di dipartimento"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "Root"
-
-#: addons/godfs/class_dfsManagment.inc:210
-#, fuzzy
-msgid "Create new dfsshare"
-msgstr "Crea in"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "Base"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "Imposta dipartimento"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "Esegui"
-
-#: addons/godfs/generic.tpl:4
-#, fuzzy
-msgid "DFS Properties"
-msgstr "Modifica proprietà "
-
-#: addons/godfs/generic.tpl:8
-#, fuzzy
-msgid "Name of dfs Share"
-msgstr "Crea in"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "Descrizione"
-
-#: addons/godfs/generic.tpl:16
-#, fuzzy
-msgid "Fileserver"
-msgstr "Server"
-
-#: addons/godfs/generic.tpl:20
-#, fuzzy
-msgid "Share on Fileserver"
-msgstr "server"
-
-#: addons/godfs/generic.tpl:30
-#, fuzzy
-msgid "DFS Location"
-msgstr "Località "
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "Località "
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-#, fuzzy
-msgid "Distributed File System Administration"
-msgstr "Amministrazione utenti"
-
-#: addons/godfs/contents.tpl:8
-#, fuzzy
-msgid "DFS Shares"
-msgstr "reset"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "Informazioni"
-
-#: addons/godfs/contents.tpl:26
-#, fuzzy
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"Questo menù permette di creare, modificare e cancellare gli utenti "
-"selezionati. Avendo un gran numero di utenti, puoi usare i selettori di "
-"intervalli in cima alla lista degli utenti."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "Filtri"
-
-#: addons/godfs/contents.tpl:40
-#, fuzzy
-msgid "Display dfs shares matching"
-msgstr "Mostra gli indirizzi che corrispondono"
-
-#: addons/godfs/contents.tpl:44
-#, fuzzy
-msgid "Regular expression for matching dfs share names"
-msgstr "Espressioni regolare per selezionare il nome del gruppo"
-
-#~ msgid "Cancel"
-#~ msgstr "Annulla"
-
-#, fuzzy
-#~ msgid "Removing of DFS share with dn '%s' failed."
-#~ msgstr "Imposta dipartimento"
-
-#, fuzzy
-#~ msgid "Dfs share already exists."
-#~ msgstr "La password immessa come 'Nuova password' è vuota"
-
-#, fuzzy
-#~ msgid "Required Field \"Name of dfs Share\" is not set."
-#~ msgstr "Il campo 'Indirizzo principale' non è stao inserito"
-
-#, fuzzy
-#~ msgid "Required Field \"Description\" is not set."
-#~ msgstr "Il campo 'Indirizzo principale' non è stao inserito"
-
-#, fuzzy
-#~ msgid "Required Field \"Fileserver\" is not set."
-#~ msgstr "Il campo 'Indirizzo principale' non è stao inserito"
-
-#, fuzzy
-#~ msgid "Required Field \"Share on fileserver\" is not set."
-#~ msgstr "Il campo 'Indirizzo principale' non è stao inserito"
-
-#, fuzzy
-#~ msgid "Required Field \"Location\" is not set."
-#~ msgstr "Il campo 'Indirizzo principale' non è stao inserito"
-
-#, fuzzy
-#~ msgid "Saving dfs/generic with dn '%s' failed."
-#~ msgstr "Imposta dipartimento"
-
-#, fuzzy
-#~ msgid "Removing dfs/generic with dn '%s' failed."
-#~ msgstr "Imposta dipartimento"
diff --git a/gosa-plugins/dfs/locale/messages.po b/gosa-plugins/dfs/locale/messages.po
deleted file mode 100644
index 12d7f3979..000000000
--- a/gosa-plugins/dfs/locale/messages.po
+++ /dev/null
@@ -1,129 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-msgid "DFS Management"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-msgid "LDAP error"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr ""
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr ""
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr ""
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr ""
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr ""
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr ""
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr ""
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr ""
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr ""
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr ""
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr ""
-
-#: addons/godfs/contents.tpl:26
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr ""
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr ""
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr ""
diff --git a/gosa-plugins/dfs/locale/nl/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/nl/LC_MESSAGES/messages.po
deleted file mode 100644
index 10657f8d4..000000000
--- a/gosa-plugins/dfs/locale/nl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,135 +0,0 @@
-# translation of messages.po to Dutch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-# Alfred Schroeder , 2004.
-# Cajus Pollmeier , 2004.
-#
-# Translator:
-# Niels Klomp (CareWorks ICT Services) , 2005,2006,2007,2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2008-06-09 18:01+0100\n"
-"Last-Translator: Niels Klomp (CareWorks ICT Services) \n"
-"Language-Team: CareWorks ICT Services \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-msgid "DFS Management"
-msgstr "DFS beheer"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "Dit doet iets"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-msgid "LDAP error"
-msgstr "LDAP fout"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr "Geen DFS regels gevonden"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr "Ga een DFS share omhoog"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr "Omhoog"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr "Ga naar DFS basis"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "Basis"
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr "Maak een nieuwe DFS share aan"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "Basis"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "Verwerk afdeling"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr "Verwerk"
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "Opslaan"
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr "DFS eigenschappen"
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr "Naam van DFS share"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "Omschrijving"
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr "Bestandserver"
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr "Share op bestandserver"
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr "DFS locatie"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "Plaats"
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr "Distibuted File System Beheer"
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr "DFS shares"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "Informatie"
-
-#: addons/godfs/contents.tpl:26
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"Dit menu maakt het mogelijk om geselecteerde DFS shares toe te voegen, "
-"bewerken of verwijderen. Indien u veel DFS shares heeft is het aan te raden "
-"de selectie mogelijkheden te gebruiken."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "Filters"
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr "Toon overeenkomende DFS shares"
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr "Reguliere expressie voor overeenkomende DFS share namen"
diff --git a/gosa-plugins/dfs/locale/pl/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/pl/LC_MESSAGES/messages.po
deleted file mode 100644
index e63f4fe97..000000000
--- a/gosa-plugins/dfs/locale/pl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,160 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: polski\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2009-09-05 15:17+0100\n"
-"Last-Translator: Piort Rybicki \n"
-"Language-Team: Piotr Rybicki \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Polish\n"
-"X-Poedit-Country: POLAND\n"
-"X-Poedit-SourceCharset: iso-8859-2\n"
-"X-Poedit-Basepath: tedst\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-msgid "DFS Management"
-msgstr "ZarzÄ
dzanie DFS"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "To robi coÅ"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-msgid "LDAP error"
-msgstr "bÅÄ
d LDAP"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr "Nie znaleziono wpisów DFS"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr "Idź w górÄ jeden udziaÅ DFS"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr "Góra"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr "Idź do gÅównego DFS"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "GÅówny"
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr "Utwórz nowy udziaŠDFS"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "Kontener"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "Zatwierdź departament"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr "WyÅlij"
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "ZakoÅcz"
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr "WÅaÅciwoÅci DFS"
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr "Nazwa udziaÅu DFS"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "Opis"
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr "Serwer plików"
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr "UdziaŠna serwerze plików"
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr "Lokacja DFS"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "Lokalizacja"
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr "Administracja Distributed File System"
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr "UdziaÅy DFS"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "Informacja"
-
-#: addons/godfs/contents.tpl:26
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"To menu umożliwia tworzenie, usuwanie oraz edycjÄ wybranych udziaÅów DFS. "
-"PosiadajÄ
c dużÄ
iloÅÄ udziaÅów DFS, może okazaÄ siÄ wygodniejsze korzystanie "
-"z selektorów zakresu na górze listy udziaÅów DFS."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "Filtry"
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr "WyÅwietl udziaÅy DFS pasujÄ
ce"
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr "Wyrażenie regularne dla dopasowanie nazw udziaÅów DFS"
-
-#~ msgid "Cancel"
-#~ msgstr "Anuluj"
-
-#~ msgid "Removing of DFS share with dn '%s' failed."
-#~ msgstr "Usuwanie udziaÅu DFS z dn '%s' nieudane."
-
-#~ msgid "Dfs share already exists."
-#~ msgstr "UdziaŠDFS już istnieje."
-
-#~ msgid "Required Field \"Name of dfs Share\" is not set."
-#~ msgstr "Wymagane pole 'Nazwa udziaÅu DFS' nie jest wypeÅnione."
-
-#~ msgid "Required Field \"Description\" is not set."
-#~ msgstr "Wymagane pole 'Opis' nie jest wypeÅnione."
-
-#~ msgid "Required Field \"Fileserver\" is not set."
-#~ msgstr "Wymagane pole 'Serwer plików' nie jest wypeÅnione."
-
-#~ msgid "Required Field \"Share on fileserver\" is not set."
-#~ msgstr "Wymagane pole 'UdziaÅ na serwerze plików' nie jest wypeÅnione."
-
-#~ msgid "Required Field \"Location\" is not set."
-#~ msgstr "Wymagane pole 'Lokalizacja' nie jest wypeÅnione."
-
-#~ msgid "Saving dfs/generic with dn '%s' failed."
-#~ msgstr "Zapisywanie dfs z dn '%s' nieudane."
-
-#~ msgid "Removing dfs/generic with dn '%s' failed."
-#~ msgstr "Usuwanie dfs z dn '%s' nieudane."
diff --git a/gosa-plugins/dfs/locale/pt_BR/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/pt_BR/LC_MESSAGES/messages.po
deleted file mode 100644
index faab2cc12..000000000
--- a/gosa-plugins/dfs/locale/pt_BR/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,131 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: GOsa plugins - dfs\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2010-03-25 09:54-0300\n"
-"Last-Translator: Marcos Amorim \n"
-"Language-Team: Marcos Amorim Clever de Oliveira \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: BRAZIL\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-msgid "DFS Management"
-msgstr "Gerenciamento DFS"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "Isto faz algo"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171
-#: addons/godfs/class_dfsgeneric.inc:200
-msgid "LDAP error"
-msgstr "Erro LDAP"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr "Nenhum DFS encontrado"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr "Subir um nÃvel de compartilhamento"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr "Acima"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr "Ir para a raiz do dfs"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "Raiz"
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr "Criar novo compartilhamento"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "Base"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "Submeter departamento"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr "Enviar"
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "Finalizar"
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr "Propriedades"
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr "Nome do compartilhamento dfs"
-
-#: addons/godfs/generic.tpl:12
-#: addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "Descrição"
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr "Servidor de Arquivos"
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr "Compartilhar no servidor de arquivos:"
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr "Local do DFS"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "Localização"
-
-#: addons/godfs/main.inc:35
-#: addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr "Administração do sistema de arquivos distribuÃdos"
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr "Compartilhamentos DFS"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "Informação"
-
-#: addons/godfs/contents.tpl:26
-msgid "This menu allows you to create, delete and edit selected dfs shares. Having a large numbers of dfs shares, you might prefer the range selectors on top of the dfs share list."
-msgstr "Este menu permite que você crie, exclua ou edita os compartilhamentos selecionados. Tenho um grande número de compartilhamentos, você pode preferir selecionar um intervalo na lista de compartilhamento."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "Filtros"
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr "Exibir compartilhamentos que correspondam"
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr "Expressão regular para nomes de compartilhamentos"
-
diff --git a/gosa-plugins/dfs/locale/ru/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/ru/LC_MESSAGES/messages.po
deleted file mode 100644
index 455c50027..000000000
--- a/gosa-plugins/dfs/locale/ru/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,185 +0,0 @@
-# Translation of messages.po to Russian
-# Valia V. Vaneeva , 2004.
-# $Id: messages.po,v 1.61 2005/04/18 10:37:13 migor-guest Exp $
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2005-04-18 14:35+0300\n"
-"Last-Translator: Igor Muratov \n"
-"Language-Team: ALT Linux Team\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: poEdit 1.3.1\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-#, fuzzy
-msgid "DFS Management"
-msgstr "Ðазвание"
-
-#: addons/godfs/class_dfsManagment.inc:9
-msgid "This does something"
-msgstr "ЧÑо-Ñо бÑдеÑ"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-#, fuzzy
-msgid "LDAP error"
-msgstr "ÐÑибка LDAP:"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:208
-#, fuzzy
-msgid "Go up one dfsshare"
-msgstr "ÐодÑазделение"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:209
-#, fuzzy
-msgid "Root"
-msgstr "ÐеÑезагÑÑзиÑÑ"
-
-#: addons/godfs/class_dfsManagment.inc:210
-#, fuzzy
-msgid "Create new dfsshare"
-msgstr "Создание нового обÑекÑа в"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "ÐеÑка"
-
-#: addons/godfs/class_dfsManagment.inc:213
-#, fuzzy
-msgid "Submit department"
-msgstr "ÐоказаÑÑ Ð¿Ð¾Ð´ÑазделениÑ"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr ""
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "ÐоÑово"
-
-#: addons/godfs/generic.tpl:4
-#, fuzzy
-msgid "DFS Properties"
-msgstr "СвойÑÑва"
-
-#: addons/godfs/generic.tpl:8
-#, fuzzy
-msgid "Name of dfs Share"
-msgstr "ÐодÑазделение"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "ÐпиÑание"
-
-#: addons/godfs/generic.tpl:16
-#, fuzzy
-msgid "Fileserver"
-msgstr "СеÑвеÑ"
-
-#: addons/godfs/generic.tpl:20
-#, fuzzy
-msgid "Share on Fileserver"
-msgstr "СлÑжба пеÑаÑи"
-
-#: addons/godfs/generic.tpl:30
-#, fuzzy
-msgid "DFS Location"
-msgstr "ÐеÑÑоположение"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "ÐеÑÑоположение"
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-#, fuzzy
-msgid "Distributed File System Administration"
-msgstr "УпÑавление полÑзоваÑелÑми"
-
-#: addons/godfs/contents.tpl:8
-#, fuzzy
-msgid "DFS Shares"
-msgstr "ÑбÑоÑ"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "ÐнÑоÑмаÑиÑ"
-
-#: addons/godfs/contents.tpl:26
-#, fuzzy
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"С помоÑÑÑ ÑÑого Ð¼ÐµÐ½Ñ Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе добавлÑÑÑ, изменÑÑÑ Ð¸ ÑдалÑÑÑ Ð²ÑбÑаннÑе "
-"подÑазделениÑ. ÐÑли Ñ Ð²Ð°Ñ Ð´Ð¾ÑÑаÑоÑно болÑÑое колиÑеÑÑво подÑазделений, Ð²Ñ "
-"можеÑе иÑполÑзоваÑÑ Ð³ÑÑпповое вÑделение."
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "ФилÑÑÑÑ"
-
-#: addons/godfs/contents.tpl:40
-#, fuzzy
-msgid "Display dfs shares matching"
-msgstr "ÐоказаÑÑ Ð¿Ð¾Ð´Ñ
одÑÑие адÑеÑа"
-
-#: addons/godfs/contents.tpl:44
-#, fuzzy
-msgid "Regular expression for matching dfs share names"
-msgstr "РегÑлÑÑное вÑÑажение, ÑооÑвеÑÑÑвÑÑÑее именам ÑиÑÑем"
-
-#~ msgid "Cancel"
-#~ msgstr "ÐÑмена"
-
-#, fuzzy
-#~ msgid "Removing of DFS share with dn '%s' failed."
-#~ msgstr "УдалиÑÑ ÑеÑÐ²Ð¸Ñ DNS"
-
-#, fuzzy
-#~ msgid "Dfs share already exists."
-#~ msgstr "ÐодÑазделение Ñ Ñаким именем Ñже ÑÑÑеÑÑвÑеÑ."
-
-#, fuzzy
-#~ msgid "Required Field \"Name of dfs Share\" is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐмÑ\" не заполнено."
-
-#, fuzzy
-#~ msgid "Required Field \"Description\" is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐпиÑание\" не заполнено."
-
-#, fuzzy
-#~ msgid "Required Field \"Fileserver\" is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐмÑ\" не заполнено."
-
-#, fuzzy
-#~ msgid "Required Field \"Share on fileserver\" is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐмÑ\" не заполнено."
-
-#, fuzzy
-#~ msgid "Required Field \"Location\" is not set."
-#~ msgstr "ÐбÑзаÑелÑное поле \"ÐпиÑание\" не заполнено."
-
-#, fuzzy
-#~ msgid "Saving dfs/generic with dn '%s' failed."
-#~ msgstr "ÐоказаÑÑ Ð¿Ð¾Ð´ÑазделениÑ"
-
-#, fuzzy
-#~ msgid "Removing dfs/generic with dn '%s' failed."
-#~ msgstr "ÐоказаÑÑ Ð¿Ð¾Ð´ÑазделениÑ"
diff --git a/gosa-plugins/dfs/locale/zh/LC_MESSAGES/messages.po b/gosa-plugins/dfs/locale/zh/LC_MESSAGES/messages.po
deleted file mode 100644
index 98a274454..000000000
--- a/gosa-plugins/dfs/locale/zh/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,167 +0,0 @@
-# translation of messages.po to Chinese Simplified
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-# Jiang Xin , 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2007-06-03 12:27+0800\n"
-"Last-Translator: Jiang Xin \n"
-"Language-Team: Chinese Simplified \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: addons/godfs/class_dfsManagment.inc:8
-#, fuzzy
-msgid "DFS Management"
-msgstr "DFS 管ç"
-
-#: addons/godfs/class_dfsManagment.inc:9
-#, fuzzy
-msgid "This does something"
-msgstr "******"
-
-#: addons/godfs/class_dfsManagment.inc:146
-#: addons/godfs/class_dfsgeneric.inc:171 addons/godfs/class_dfsgeneric.inc:200
-#, fuzzy
-msgid "LDAP error"
-msgstr "LDAP é误:"
-
-#: addons/godfs/class_dfsManagment.inc:165
-msgid "No DFS entries found"
-msgstr "没æåç° DFS æ¡ç®"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Go up one dfsshare"
-msgstr "åä¸ä¸ä¸ª dfs å
񄧮"
-
-#: addons/godfs/class_dfsManagment.inc:208
-msgid "Up"
-msgstr "ä¸"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Go to dfs root"
-msgstr "è·³è½¬å° dfs æ ¹"
-
-#: addons/godfs/class_dfsManagment.inc:209
-msgid "Root"
-msgstr "æ ¹"
-
-#: addons/godfs/class_dfsManagment.inc:210
-msgid "Create new dfsshare"
-msgstr "å建æ°ç dfs å
񄧮"
-
-#: addons/godfs/class_dfsManagment.inc:212
-msgid "Base"
-msgstr "ä½ç½®"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit department"
-msgstr "æ交é¨é¨"
-
-#: addons/godfs/class_dfsManagment.inc:213
-msgid "Submit"
-msgstr "æ交"
-
-#: addons/godfs/class_dfsManagment.inc:242
-msgid "Finish"
-msgstr "å®æ"
-
-#: addons/godfs/generic.tpl:4
-msgid "DFS Properties"
-msgstr "DFS å±æ§"
-
-#: addons/godfs/generic.tpl:8
-msgid "Name of dfs Share"
-msgstr "dfs å
±äº«å称"
-
-#: addons/godfs/generic.tpl:12 addons/godfs/generic.tpl:38
-msgid "Description"
-msgstr "æè¿°"
-
-#: addons/godfs/generic.tpl:16
-msgid "Fileserver"
-msgstr "æ件æå¡å¨"
-
-#: addons/godfs/generic.tpl:20
-msgid "Share on Fileserver"
-msgstr "æ件æå¡å¨çå
񄧮"
-
-#: addons/godfs/generic.tpl:30
-msgid "DFS Location"
-msgstr "DFS ä½ç½®"
-
-#: addons/godfs/generic.tpl:34
-msgid "Location"
-msgstr "ä½ç½®"
-
-#: addons/godfs/main.inc:35 addons/godfs/main.inc:41
-msgid "Distributed File System Administration"
-msgstr "åå¸å¼æ件系ç»ç®¡ç"
-
-#: addons/godfs/contents.tpl:8
-msgid "DFS Shares"
-msgstr "DFS å
񄧮"
-
-#: addons/godfs/contents.tpl:22
-msgid "Information"
-msgstr "æ示信æ¯"
-
-#: addons/godfs/contents.tpl:26
-msgid ""
-"This menu allows you to create, delete and edit selected dfs shares. Having "
-"a large numbers of dfs shares, you might prefer the range selectors on top "
-"of the dfs share list."
-msgstr ""
-"è¿ä¸ªèåå
许æ¨å建ï¼å é¤åä¿®æ¹æéç dfs å
±äº«ã对äºä¸ä¸ªé¿å表ï¼æ¨å¯ä»¥éè¿å表"
-"ä¸é¢çèå´éæ©æ¥è°æ´ã"
-
-#: addons/godfs/contents.tpl:31
-msgid "Filters"
-msgstr "è¿æ»¤å¨"
-
-#: addons/godfs/contents.tpl:40
-msgid "Display dfs shares matching"
-msgstr "æ¾ç¤ºå¹é
ç dfs å
񄧮"
-
-#: addons/godfs/contents.tpl:44
-msgid "Regular expression for matching dfs share names"
-msgstr "å¹é
dns å
±äº«åçæ£å表达å¼"
-
-#~ msgid "Cancel"
-#~ msgstr "åæ¶"
-
-#, fuzzy
-#~ msgid "Removing of DFS share with dn '%s' failed."
-#~ msgstr "å é¤ dn 为 '%s' ç user/kolab è´¦å·å¤±è´¥ã"
-
-#~ msgid "Dfs share already exists."
-#~ msgstr "Dfs å
±äº«å·²ç»åå¨ã"
-
-#~ msgid "Required Field \"Name of dfs Share\" is not set."
-#~ msgstr "éè¦çå段âdfs å
±äº«åâ没æ设置ã"
-
-#~ msgid "Required Field \"Description\" is not set."
-#~ msgstr "éè¦çå段âæè¿°â没æ设置ã"
-
-#~ msgid "Required Field \"Fileserver\" is not set."
-#~ msgstr "éè¦çå段âæ件æå¡å¨â没æ设置ã"
-
-#~ msgid "Required Field \"Share on fileserver\" is not set."
-#~ msgstr "éè¦çå段âæ件æå¡å¨çå
±äº«â没æ设置ã"
-
-#~ msgid "Required Field \"Location\" is not set."
-#~ msgstr "éè¦çå段âä½ç½®â没æ设置ã"
-
-#, fuzzy
-#~ msgid "Saving dfs/generic with dn '%s' failed."
-#~ msgstr "ä¿å dn 为 '%s' ç user/kolab è´¦å·ä¸ºç©ºã"
-
-#, fuzzy
-#~ msgid "Removing dfs/generic with dn '%s' failed."
-#~ msgstr "å é¤ dn 为 '%s' ç user/kolab è´¦å·å¤±è´¥ã"
diff --git a/gosa-plugins/dfs/plugin.dsc b/gosa-plugins/dfs/plugin.dsc
deleted file mode 100644
index caa152041..000000000
--- a/gosa-plugins/dfs/plugin.dsc
+++ /dev/null
@@ -1,7 +0,0 @@
-[gosa-plugin]
-name = dfs
-description = "DFS share manager"
-version = 2.6.8
-author = "Cajus Pollmeier "
-maintainer = "GOsa packages maintainers group "
-homepage = https://oss.gonicus.de/labs/gosa/
diff --git a/gosa-plugins/glpi/README.glpi b/gosa-plugins/glpi/README.glpi
deleted file mode 100644
index 52cfcf204..000000000
--- a/gosa-plugins/glpi/README.glpi
+++ /dev/null
@@ -1,13 +0,0 @@
-To use the glpi connectivity extension
-
-1) Add the glpi.schema to your schema directory
-
-2) Remove the comment in front of glpiAccount in gosa.conf
-
-
-
-Benoit Mortier
-OpenSides November 2005
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpi.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpi.inc
deleted file mode 100644
index d66e66352..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpi.inc
+++ /dev/null
@@ -1,1777 +0,0 @@
-server = $server;
- $this->user = $user;
- $this->password = $pwd;
- $this->db = $db;
-
- $this->handle = @mysql_connect($this->server,$this->user,$this->password);
-
- if($this->handle){
- $this->is_connected = true;
- $this->SelectDB($this->db);
- }
- $this->deviceMappingGOsaGlpi = array(
- "glpi_device_case" => "case",
- "glpi_device_control" => "control",
- "glpi_device_drive" => "drive",
- "glpi_device_gfxcard" => "gfxcard",
- "glpi_device_hdd" => "hdd",
- "glpi_device_iface" => "iface",
- "glpi_device_moboard" => "moboard",
- "glpi_device_pci" => "pci",
- "glpi_device_power" => "power",
- "glpi_device_processor" => "processor",
- "glpi_device_ram" => "ram",
- "glpi_monitors" => "monitor",
- "glpi_device_sndcard" => "sndcard");
-
- $this->deviceMappingTableNameID = array( "moboard" => 1,
- "processor" => 2,
- "ram" => 3,
- "hdd" => 4,
- "iface" => 5,
- "drive" => 6,
- "control" => 7,
- "gfxcard" => 8,
- "sndcard" => 9,
- "pci" => 10,
- "case" => 11,
- "power" => 12);
-
-
- }
-
- function SelectDB()
- {
- if($this->is_connected){
- mysql_select_db($this->db,$this->handle);
- }
- }
-
-
- /* This functions checks if the selected computer/network
- device is already available in the db
- */
- function is_account($dn)
- {
- if(!$this->is_connected){
- $this->lasterror ="Can't query anything, if we aren't connected.";
- return(false);
- }else{
- $qry = "SELECT * FROM glpi_computers WHERE name='".$dn."';";
- $res = $this->query($qry);
- if(count($res)==0){
- return(false);
- }else{
- return(true);
- }
- }
- }
-
- /* this function queries everything
- */
- function query($qry)
- {
- if(!$this->is_connected){
- $this->lasterror ="Can't query anything, if we aren't connected.";
- return(false);
- }else{
- $ret =array();
- $res = mysql_query($qry,$this->handle);
-
- while($rs = @mysql_fetch_array($res,MYSQL_ASSOC)){
- $ret[]=$rs;
- }
- return($ret);
- }
- }
-
- /* System types
- Returns all defined system types
- */
- function getSystemTypes()
- {
- if($this->is_connected){
- $ret = array();
- $tmp = ($this->query("SELECT * FROM glpi_type_computers;"));
- foreach($tmp as $t){
- $ret[$t['ID']]=$t['name'];
- }
- asort($ret);
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* System types
- Update a system type
- */
- function updateSystemType($name,$id)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_type_computers WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("UPDATE glpi_type_computers SET name='".$name."' WHERE ID=".$id.";"));
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* System types
- Add one entry to the system types
- */
- function addSystemType($name)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_type_computers WHERE name='".$name."';");
- if(isset($tmp[0])){
- trigger_error("such an entry already exists");
- return(false);
- }else{
- return($this->query("INSERT INTO glpi_type_computers (name) VALUES ('".$name."');"));
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* System types
- Remove one entry from the system types (specified by ID=$id)
- */
- function removeSystemType($id)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_type_computers WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("DELETE FROM glpi_type_computers WHERE ID=".$id.";"));
- }else{
- trigger_error("can't remove not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* System type is used */
- function is_systemTypeUsed($ID){
- if($this->is_connected){
- $ret = array();
- $qry="SELECT name,type FROM glpi_computers WHERE type=".$ID." LIMIT 3;";
- $res = $this->query($qry);
- foreach($res as $val){
- $ret[$val['name']] = $val['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* Manufacturer
- Returns all defined manufacturers
- */
- function getEnterprises()
- {
- if($this->is_connected){
- $ret = array();
- $tmp = $this->query("SELECT * FROM glpi_enterprises ORDER BY name;");
- foreach($tmp as $t){
- $ret[$t['ID']]=$t['name'];
- }
-
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Manufacturer
- Returns single manufacturer
- */
- function getEnterprise($id)
- {
- if($this->is_connected){
- $ret = array();
- $tmp = $this->query("SELECT * FROM glpi_enterprises WHERE ID=".$id.";");
- return($tmp);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Manufacturer
- Updates already existing manufacturer
- */
- function updateEnterprise($array,$id)
- {
- if(!is_array($array)){
- trigger_error("updateEnterprisesType: first paraeter must be an array");
- }elseif($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_enterprises WHERE ID='".$id."';");
- if(isset($tmp[0])){
- $atr = array("ID","name","type","address","website","phonenumber","comments","deleted","fax","email");
-
- $v = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $v .= " ".$at."='".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("updateEnterprisesType: no attributes given ");
- return(false);
- }else{
- $v = preg_replace("/, $/","",$v);
- return($this->query("UPDATE glpi_enterprises SET ".$v." WHERE ID='".$id."';"));
- }
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Manufacturer
- Add new manufacturer
- */
- function addEnterprise($array)
- {
- if(!is_array($array)){
- trigger_error("addUser: first paraeter must be an array");
- }elseif($this->is_connected){
- $atr = array("ID","name","type","address","website","phonenumber","comments","deleted","fax","email");
- $v = "";
- $a = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $a .= $at.", ";
- $v .= "'".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("addUser: no attributes given ");
- return(false);
- }else{
- $a = preg_replace("/, $/","",$a);
- $v = preg_replace("/, $/","",$v);
- return($this->query("INSERT INTO glpi_enterprises (".$a.") VALUES (".$v.");"));
- }
-
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
- /* Manufacturer
- remove manufacturer
- */
- function removeEnterprise($id)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_enterprises WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("DELETE FROM glpi_enterprises WHERE ID=".$id.";"));
- }else{
- trigger_error("can't remove not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Operating systems
- Returns all OSs
- */
- function getOSTypes($keys = false)
- {
- if($this->is_connected){
- $ret = array();
- $tmp=($this->query("SELECT * FROM glpi_dropdown_os ORDER by name;"));
-
- if($keys){
- foreach($tmp as $t){
- $ret[$t['name']]=$t['ID'];
- }
- }else{
- foreach($tmp as $t){
- $ret[$t['ID']]=$t['name'];
- }
- }
- return($ret);
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Operating system is used ? */
- function is_osUsed($ID){
- if($this->is_connected){
- $ret = array();
- $qry="SELECT name,type FROM glpi_computers WHERE os=".$ID." LIMIT 3;";
- $res = $this->query($qry);
- foreach($res as $val){
- $ret[$val['name']] = $val['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* Operating systems
- Add a new operating system to the dropdown menus
- */
- function addOS($name)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_dropdown_os WHERE name='".$name."';");
- if(isset($tmp[0])){
- trigger_error("such an entry already exists");
- return(false);
- }else{
- return($this->query("INSERT INTO glpi_dropdown_os (name) VALUES ('".$name."');"));
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Operating systems
- remove one OS entry
- */
- function removeOS_byID($id)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_dropdown_os WHERE ID=".$id.";");
- if(is_array($tmp[0])){
- return($this->query("DELETE FROM glpi_dropdown_os WHERE ID=".$id.";"));
- }else{
- trigger_error("can't remove not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Operating systems
- Update existing OS entry
- */
- function updateOS($name,$id)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_dropdown_os WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("UPDATE glpi_dropdown_os SET name='".$name."' WHERE ID=".$id.";"));
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* This returns all available glpi users
- */
- function getUsers()
- {
- if($this->is_connected){
- $ret = array();
- $tmp = ($this->query("SELECT * FROM glpi_users"));
- foreach($tmp as $user){
- $ret[$user['ID']]=$user['name'];
- }
- return($ret);
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* this function adds a new glpi user
- */
- function addUser($array,$dn)
- {
- if(!is_array($array)){
- trigger_error("addUser: first paraeter must be an array");
- }elseif($this->is_connected){
- $array['name']=$dn;
- $atr = array("name","phone","email");
- $v = "";
- $a = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $a .= $at.", ";
- $v .= "'".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("addUser: no attributes given ");
- return(false);
- }else{
- $a = preg_replace("/, $/","",$a);
- $v = preg_replace("/, $/","",$v);
- return($this->query("INSERT INTO glpi_users (".$a.") VALUES (".$v.");"));
- }
-
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
- /* This function updates a glpi user
- with the given data
- */
- function updateUser($array,$dn)
- {
- if(!is_array($array)){
- trigger_error("updateUser: first paraeter must be an array");
- }elseif($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_users WHERE name='".$dn."';");
- if(isset($tmp[0])){
-
- $atr = array("name","phone","email");
- $v = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $v .= " ".$at."='".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("UpdateUser: no attributes given ");
- return(false);
- }else{
- $v = preg_replace("/, $/","",$v);
- return($this->query("UPDATE glpi_users SET ".$v." WHERE name='".$dn."';"));
- }
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
- /* This function returns all available data
- from a specified dn
- */
- function getComputerInformations($name)
- {
- if($this->is_connected){
- $ret = $this->query("SELECT * FROM glpi_computers WHERE name='".$name."';");
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* This fucntions updates an already existing entry
- */
- function updateComputerInformations($array,$name)
- {
- if(!is_array($array)){
- trigger_error("updateComputerInformations: first paraeter must be an array");
- }elseif($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_computers WHERE name='".$name."';");
- if(isset($tmp[0])){
-
- $atr = array( "ID","name","serial","otherserial","contact","contact_num",
- "tech_num","comments","date_mod","os","location","domain","network",
- "model","type","is_template","tplname","FK_glpi_enterprise","deleted");
- $v = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $v .= " ".$at."='".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("updateComputerInformations: no attributes given ");
- return(false);
- }else{
- $v = preg_replace("/, $/","",$v);
- return($this->query("UPDATE glpi_computers SET ".$v." WHERE name='".$name."';"));
- }
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
- /* This function adds a new inventory device (computer phone etc)
- */
- function addComputerInformations($array)
- {
- if(!is_array($array)){
- trigger_error("updateComputerInformations: first paraeter must be an array");
- }elseif($this->is_connected){
- $atr = array( "ID","name","serial","otherserial","contact","contact_num",
- "tech_num","comments","date_mod","os","location","domain","network",
- "model","type","is_template","tplname","FK_glpi_enterprise","deleted");
- $v = "";
- $a = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $a .= $at.", ";
- $v .= "'".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("updateComputerInformations: no attributes given ");
- return(false);
- }else{
- $a = preg_replace("/, $/","",$a);
- $v = preg_replace("/, $/","",$v);
- return($this->query("INSERT INTO glpi_computers (".$a.") VALUES (".$v.");"));
- }
-
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
- /* this functions checks if the given Device
- * already exists
- */
- function deviceExists($attr)
- {
- $deviceMappingGOsaGlpi = $this->deviceMappingGOsaGlpi;
- if($this->is_connected){
- $arr = array_flip($deviceMappingGOsaGlpi);
-
- $tbl_name = $arr[$attr['device_type']];
- if(!isset($attr['ID'])){
- return(false);
- }else{
- $qry = "SELECT * FROM ".$tbl_name." WHERE ID=".$attr['ID'].";";
- $res = $this->query($qry);
- if(count($res) != 0){
- return(true);
- }
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- return(false);
- }
-
-
- /* Check if given device is used by some accounts
- * (helpfull to avoid removement of used devices)
- */
- function is_deviceUsed($item)
- {
- $deviceMappingGOsaGlpi = array_flip($this->deviceMappingGOsaGlpi);
- $deviceMappingTableNameID = $this->deviceMappingTableNameID;
- if($this->is_connected){
- $tablename = $deviceMappingGOsaGlpi[$item['device_type']];
- $type = $item['device_type'];
-
- $ret = array();
-
- if($type=="monitor"){
- $str = "SELECT c.name FROM glpi_connect_wire as w, glpi_computers as c WHERE w.end1=".$item['ID']." AND w.end2 = c.ID AND w.type=4;";
- }else{
- $str = "SELECT c.name FROM glpi_computer_device as d, glpi_computers as c WHERE d.FK_computers=c.ID AND FK_device=".$item['ID']." AND device_type=".$deviceMappingTableNameID[$type]." ;";
- }
-
- $res = $this->query($str);
-
- foreach($res as $val){
- $ret[$val['name']] = $val['name'];
- }
-
- return($ret);//count($this->query($str)));
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
-
- /* This functions deletes a specified entry
- * from our device tables
- */
- function deleteDevice($attr)
- {
- $deviceMappingGOsaGlpi = $this->deviceMappingGOsaGlpi;
- if($this->is_connected){
- $arr = array_flip($deviceMappingGOsaGlpi);
-
- $device_type = $attr['device_type'];
- unset($attr['device_type']);
-
- $tbl_name = $arr[$device_type];
-
- $this->query("DELETE FROM ".$tbl_name." WHERE ID=".$attr['ID'].";");
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* This funtions updated an already existing device
- */
- function updateDevices($attr)
- {
- $deviceMappingGOsaGlpi = $this->deviceMappingGOsaGlpi;
- if($this->is_connected){
- $arr = array_flip($deviceMappingGOsaGlpi);
-
- $device_type = $attr['device_type'];
- unset($attr['device_type']);
-
- $tbl_name = $arr[$device_type];
-
- $str = "UPDATE ".$tbl_name." SET ";
- foreach($attr as $name => $value){
- $str.=$name."='".$value."', ";
- }
- $str = preg_replace("/, $/","",$str);
- $str .= " WHERE ID=".$attr['ID'].";";
- $this->query($str);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Returns all possible RAM types
- * like SDRAM , DIMM .....
- */
- function getRAMTypes()
- {
- if($this->is_connected){
- $ret = array();
- $tmp = ($this->query("SELECT * FROM glpi_dropdown_ram_type;"));
- foreach($tmp as $t){
- $ret[$t['ID']]=$t['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Returns all possible HDD connection types
- * like IDE SCSI ...
- */
- function getGlpiDeviceControlTypes()
- {
- if($this->is_connected){
- $ret = array();
- $tmp = ($this->query("SELECT * FROM glpi_dropdown_hdd_type;"));
- foreach($tmp as $t){
- $ret[$t['ID']]=$t['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Returns all possible gfx card connection types
- * like PCI-X PCI AGP ....
- */
- function getGlpiGfxControlTypes()
- {
- if($this->is_connected){
- $ret = array();
- $tmp = ($this->query("SELECT * FROM glpi_dropdown_hdd_type;"));
- foreach($tmp as $t){
- $ret[$t['ID']]=$t['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Devices
- Adds a new single device to our db
- */
- function addDevice($attr)
- {
- $deviceMappingGOsaGlpi = $this->deviceMappingGOsaGlpi;
- if($this->is_connected){
- $arr = array_flip($deviceMappingGOsaGlpi);
-
- $device_type = $attr['device_type'];
- unset($attr['device_type']);
-
- $tbl_name = $arr[$device_type];
- $v = "";
- $a = "";
- foreach($attr as $name => $value){
- $a .= $name.", ";
- $v .= "'".$value."', ";
- }
- if(empty($v)){
- trigger_error("addDevice: no attributes given ");
- return(false);
- }else{
- $a = preg_replace("/, $/","",$a);
- $v = preg_replace("/, $/","",$v);
- return($this->query("INSERT INTO ".$tbl_name." (".$a.") VALUES (".$v.");"));
- }
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Return all available devices
- */
- function getDevices()
- {
- $deviceMappingGOsaGlpi = $this->deviceMappingGOsaGlpi;
- if($this->is_connected){
- $arr = $deviceMappingGOsaGlpi;
-
- $res = array();
- foreach($arr as $glpi => $gosa){
- $qry = "SELECT * FROM ".$glpi.";";
- $ret = $this->query($qry);
- foreach($ret as $id => $entry){
- $entry['device_type'] = $gosa;
-
- if(isset($entry['designation'])){
- $res[$entry['designation']."-".$gosa] = $entry;
- }else{
- $res[$entry['name']."-".$gosa] = $entry;
- }
- }
- }
- return($res);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* This function returns all used devices
- */
- function getUsedDevices($computerID)
- {
- $deviceMappingGOsaGlpi = array_flip($this->deviceMappingGOsaGlpi);
- $deviceMappingTableNameID = $this->deviceMappingTableNameID;
-
- if($this->is_connected){
- $qry = "SELECT * FROM glpi_computer_device WHERE FK_computers=".$computerID.";";
- $res = $this->query($qry);
-
- $ret = array();
- foreach($deviceMappingGOsaGlpi as $GOsa => $glpi){
- $ret[$GOsa] = array();
- }
-
- $tbls = array_flip($deviceMappingTableNameID);
-
- foreach($res as $device){
- $devtype = $tbls[$device['device_type']];
- $tbl_name = $deviceMappingGOsaGlpi[$devtype];
- $qry = ("SELECT * FROM ".$tbl_name." WHERE ID=".$device['FK_device'].";");
- $res2 = $this->query($qry);
- if(count($res2)!=0){
- $ret[$devtype][$res2[0]['designation']]=$res2[0];
- }
-
- $qry = "SELECT * FROM glpi_connect_wire WHERE type=4 AND end2=".$computerID.";";
- $res2 = $this->query($qry);
- foreach($res2 as $monitor){
- $qry = "SELECT * FROM glpi_monitors WHERE ID=".$monitor['end1'].";";
- $res3 = $this->query($qry);
- foreach($res3 as $moni){
- $ret['monitor'][$moni['name']]=$moni;
- }
- }
-
-
-
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* This function removes all given devices from a computer, specified by $id
- In the next step all devices specified by devices will be added.
- */
- function addDevicesToComputer($devices, $id)
- {
- $deviceMappingGOsaGlpi = array_flip($this->deviceMappingGOsaGlpi);
- $deviceMappingTableNameID = $this->deviceMappingTableNameID;
-
- if(($id == "" )||(!is_numeric($id))){
- return (false);
- }
- if($this->is_connected){
- $qry = "DELETE FROM glpi_computer_device WHERE FK_computers=".$id.";";
- $this->query($qry);
-
- foreach($devices as $type => $entries){
- foreach($entries as $entry){
- if($type=="monitor"){
- $str = "INSERT INTO glpi_connect_wire (end1,end2,type)
- VALUES (".$entry['ID'].",".$id.",4);";
- }else{
- $str = "INSERT INTO glpi_computer_device (device_type,FK_device,FK_computers)
- VALUES (".$deviceMappingTableNameID[$type].",".$entry['ID'].",".$id.");";
- }
- $this->query($str);
- }
- }
-
-
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
- function removeComputerInformations($name)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_computers WHERE name='".$name."';");
- if(isset($tmp[0])){
- $id = $tmp[0]['ID'];
- $this->query("DELETE FROM glpi_connect_wire WHERE end2=".$id.";");
- $this->query("DELETE FROM glpi_computer_device WHERE FK_computers=".$id.";");
- return($this->query("DELETE FROM glpi_computers WHERE ID=".$id.";"));
- }else{
- trigger_error("can't remove not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function is_connected()
- {
- return($this->is_connected);
- }
-
- function addAttachmentsToComputer($attr,$id)
- {
- if(($id == "" )||(!is_numeric($id))){
- return (false);
- }
- if($this->is_connected){
- $qry = "DELETE FROM glpi_doc_device WHERE (FK_device=".$id.") AND (device_type=1);";
- $this->query($qry);
-
- foreach($attr as $aid => $entry){
- $str = "INSERT INTO glpi_doc_device (FK_doc,FK_device,device_type,is_template)
- VALUES
- ($aid,$id,1,'0');";
- $this->query($str);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getAssignAttachments($id)
- {
-
- if($this->is_connected){
- $qry= "SELECT * FROM glpi_doc_device WHERE (device_type=1) AND (FK_device=".$id.");";
- $ret = $this->query($qry);
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function deleteAttachment($id)
- {
- if($this->is_connected){
- $qry = "DELETE FROM glpi_docs WHERE ID=".$id."";
- $this->query($qry);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getAttachments()
- {
- $ret = array();
- if($this->is_connected){
- $qry = "SELECT * FROM glpi_docs WHERE name!='';";
- $re = $this->query($qry);
-
- foreach($re as $entry){
- $ret[$entry['ID']]=$entry;
- }
-
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function saveAttachments($attrs,$id = -1)
- {
- if($this->is_connected){
- $atr = array("name","filename","rubrique","mime","date_mod","comment","deleted","link");
- $tmp = array();
- foreach($atr as $at){
- if(isset($attrs[$at])){
- $tmp[$at] = $attrs[$at];
- }
- }
- if(count($tmp)==0){
- return(false);
- }else{
-
- // Add
- if($id == -1){
- $str = "INSERT INTO glpi_docs ";
- $namen = "";
- $values= "";
- foreach($tmp as $name => $value){
- $namen .= $name.", ";
- if(is_numeric($value)){
- $values .= $value.", ";
- }else{
- $values .= "'".$value."', ";
- }
- }
- $values = preg_replace("/, $/","",$values);
- $namen = preg_replace("/, $/","",$namen);
- $str .= "(".$namen.") VALUES (".$values.");";
- }else{
- $str = "UPDATE glpi_docs SET ";
- foreach($tmp as $name => $value){
- $str .= $name."= ";
- if(is_numeric($value)){
- $str .= $value.", ";
- }else{
- $str .= "'".$value."', ";
- }
- }
- $str = preg_replace("/, $/","",$str);
- $str .= " WHERE ID=".$id.";";
- }
- $this->query($str);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* Check if given attachment id is used in any Device
- ( - avoid removing of used attachments)
- */
- function is_attachmentUsed($id)
- {
- if($this->is_connected){
- $ret = array();
- $qry = "SELECT t.name FROM glpi_computers as t, glpi_doc_device WHERE t.ID = glpi_doc_device.FK_device AND FK_doc =".$id." LIMIT 3;";
- $res = $this->query($qry);
- foreach($res as $val){
- $ret[$val['name']] = $val['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* Monitor handling
- */
- function getMonitors()
- {
- if($this->is_connected){
- $qry= "SELECT * FROM glpi_monitors;";
- return($this->query($qry));
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function updatedMonitor()
- {
- if($this->is_connected){
-// $qry= "SELECT * FROM glpi_monitors;";
-// return($this->query($qry));
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function addMonitor()
- {
- if($this->is_connected){
-// $qry= "SELECT * FROM glpi_monitors;";
-// return($this->query($qry));
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function removeMonitor($id)
- {
- if($this->is_connected){
- $qry= "DELETE FROM glpi_monitors WHERE ID=".$id.";";
- $this->query($qry);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getMonitorTypes()
- {
- if($this->is_connected){
- $qry= "SELECT * FROM glpi_type_monitors;";
- return($this->query($qry));
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getLocationTypes()
- {
- if($this->is_connected){
- $qry= "SELECT * FROM glpi_dropdown_locations;";
- return($this->query($qry));
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getStateTypes()
- {
- if($this->is_connected){
- $qry= "SELECT * FROM glpi_dropdown_state;";
- return($this->query($qry));
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* Printer functions
- */
-
- /* is printer type used ?
- */
- function is_printerTypeUsed($id)
- {
- if($this->is_connected){
- $qry = "SELECT * FROM glpi_printers WHERE type=".$id.";";
- $res = $this->query( $qry);
- $ret =array();
- foreach($res as $entry){
- $ret[$entry['ID']] = $entry['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* This functions checks if the selected computer/network
- device is already available in the db
- */
- function is_printer_account($dn)
- {
- if(!$this->is_connected){
- $this->lasterror ="Can't query anything, if we aren't connected.";
- return(false);
- }else{
- $qry = "SELECT * FROM glpi_printers WHERE name='".$dn."';";
- $res = $this->query($qry);
- if(count($res)==0){
- return(false);
- }else{
- return(true);
- }
- }
- }
-
- /* This function returns all available data
- from a specified dn
- */
- function getPrinterInformations($name)
- {
- if($this->is_connected){
- $ret = $this->query("SELECT * FROM glpi_printers WHERE name='".$name."';");
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Get Printer attachments
- */
- function getAssignPrinterAttachments($id)
- {
-
- if($this->is_connected){
- $qry= "SELECT * FROM glpi_doc_device WHERE (device_type=3) AND (FK_device=".$id.");";
- $ret = $this->query($qry);
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Printer types
- Returns all defined printer types
- */
- function getPrinterTypes()
- {
- if($this->is_connected){
- $ret = array();
- $tmp = ($this->query("SELECT * FROM glpi_type_printers ORDER BY name; "));
- foreach($tmp as $t){
- $ret[$t['ID']]=$t['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Add pritner types
- Add one entry to the printer types
- */
- function addPrinterType($name)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_type_printers WHERE name='".$name."';");
- if(isset($tmp[0])){
- //trigger_error("such an entry already exists");
- return(false);
- }else{
- return($this->query("INSERT INTO glpi_type_printers (name) VALUES ('".$name."');"));
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* remove printer types
- Remove one entry from the printer types (specified by ID=$id)
- */
- function removePrinterType($id)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_type_printers WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("DELETE FROM glpi_type_printers WHERE ID=".$id.";"));
- }else{
- trigger_error("can't remove not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Update printer types
- Update a printer type
- */
- function updatePrinterType($name,$id)
- {
-
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_type_printers WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("UPDATE glpi_type_printers SET name='".$name."' WHERE ID=".$id.";"));
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* This fucntions updates an already existing entry
- */
- function updatePrinterInformations($array,$name)
- {
- if(!is_array($array)){
- trigger_error("updatePrinterInformations: first paraeter must be an array");
- }elseif($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_printers WHERE name='".$name."';");
- if(isset($tmp[0])){
-
- $atr = array( "ID","name","serial","otherserial","contact","contact_num",
- "tech_num","comments","date_mod","location","domain","network","ramSize","flags_serial","flags_par","flags_usb",
- "model","type","is_template","tplname","FK_glpi_enterprise","deleted");
- $v = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $v .= " ".$at."='".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("updateSystemInformations: no attributes given ");
- return(false);
- }else{
- $v = preg_replace("/, $/","",$v);
- return($this->query("UPDATE glpi_printers SET ".$v." WHERE name='".$name."';"));
- }
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
-
- }
-
- /* This function adds a new inventory settings for printers
- */
- function addPrinterInformations($array)
- {
- if(!is_array($array)){
- trigger_error("updateComputerInformations: first paraeter must be an array");
- }elseif($this->is_connected){
- $atr = array( "ID","name","serial","otherserial","contact","contact_num",
- "tech_num","comments","date_mod","os","location","domain","network","ramSize","flags_serial","flags_par","flags_usb",
- "model","type","is_template","tplname","FK_glpi_enterprise","deleted");
- $v = "";
- $a = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $a .= $at.", ";
- $v .= "'".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("updateComputerInformations: no attributes given ");
- return(false);
- }else{
- $a = preg_replace("/, $/","",$a);
- $v = preg_replace("/, $/","",$v);
- return($this->query("INSERT INTO glpi_printers (".$a.") VALUES (".$v.");"));
- }
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* add atachment to given printer */
- function addAttachmentsToPrinter($attr,$id)
- {
- if(($id == "" )||(!is_numeric($id))){
- return (false);
- }
- if($this->is_connected){
- $qry = "DELETE FROM glpi_doc_device WHERE (FK_device=".$id.") AND (device_type=3);";
- $this->query($qry);
-
- foreach($attr as $aid => $entry){
- $str = "INSERT INTO glpi_doc_device (FK_doc,FK_device,device_type,is_template)
- VALUES
- ($aid,$id,3,'0');";
- $this->query($str);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function removePrinterInformations($name)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_printers WHERE name='".$name."';");
- if(isset($tmp[0])){
- $id = $tmp[0]['ID'];
-// $this->query("DELETE FROM glpi_connect_wire WHERE end2=".$id.";");
- $this->query("DELETE FROM glpi_doc_device WHERE FK_device=".$id." AND device_type=3;");
- return($this->query("DELETE FROM glpi_printers WHERE ID=".$id.";"));
- }else{
- trigger_error("can't remove not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* Cartridges
- */
- /* return all assigned cartridges */
- function getUsedCartridges($printerID)
- {
- if($this->is_connected){
- $ret = array();
- $qry = "SELECT
- c.date_use as date_use,
- c.ID as ID,
- t.ID as type_ID,
- t.name as name,
- c.FK_glpi_printers as FK_glpi_printers,
- d.name as type_name
- FROM
- glpi_dropdown_cartridge_type as d,
- glpi_cartridges as c,
- glpi_cartridges_type as t
- WHERE c.FK_glpi_cartridges_type = t.ID
- AND t.type = d.ID
- AND c.FK_glpi_printers = ".$printerID.";";
- $res = $this->query($qry);
- foreach($res as $entry){
- $ret[$entry['ID']] = $entry;
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* return all assigned cartridges */
- function getAvailableCartridgeTypes($printerTypeID)
- {
- if($this->is_connected){
- $ret = array();
- $qry= "
- SELECT
- ct.ID as cartridgeID,
- ct.name as cartridgeName,
- pt.ID as printerTypeID,
- pt.name as printerTypeName,
- ct.type as cartridgeTypeID,
- dt.name as cartridgeTypeName
- FROM
- glpi_type_printers as pt,
- glpi_cartridges_type as ct,
- glpi_dropdown_cartridge_type as dt,
- glpi_cartridges_assoc as ac
- WHERE
- ac.FK_glpi_type_printer = pt.ID
- AND ac.FK_glpi_cartridges_type = ct.ID
- AND ct.type=dt.ID
- AND pt.ID=".$printerTypeID.";";
- $res = $this->query($qry);
- foreach($res as $entry){
- $ret[$entry['cartridgeID']] = $entry;
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function removeCartridgeFromPrinter($cartridgeID)
- {
- if($this->is_connected){
- $qry = "DELETE FROM glpi_cartridges WHERE ID=".$cartridgeID.";";
- return($this->query($qry));
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function addCartridgeFromPrinter($printerID,$cartridgeID)
- {
- if($this->is_connected){
- $qry ="INSERT INTO
- glpi_cartridges (FK_glpi_cartridges_type,FK_glpi_printers,date_in,date_use)
- VALUES
- (".$cartridgeID.",".$printerID.",'".date("Y-m-d")."','".date("Y-m-d")."');";
- return($this->query($qry));
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function is_cartridgeTypeUsed($id){
- if($this->is_connected){
- $qry = "SELECT p.ID,p.name as name FROM glpi_cartridges as c,glpi_printers as p WHERE p.ID=c.FK_glpi_printers AND c.FK_glpi_cartridges_type=".$id.";";
- $res = $this->query($qry);
- $ret =array();
- foreach($res as $entry){
- $ret[$entry['ID']] = $entry['name'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getCartridgeTypeInformations($id = "all"){
- if($this->is_connected){
- $ret = array();
- if($id != "all"){
- $qry = "SELECT * FROM glpi_cartridges_type WHERE ID = ".$id.";";
- }else{
- $qry = "SELECT * FROM glpi_cartridges_type;";
- }
-
- $res = ($this->query($qry));
- foreach($res as $entry){
- $ret[$entry['ID']] = $entry;
- }
- return($ret);
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getCartridgeTypes(){
- if($this->is_connected){
- $ret = array();
- $qry = "SELECT * FROM glpi_dropdown_cartridge_type;";
- $res = ($this->query($qry));
- foreach($res as $entry){
- $ret[$entry['ID']] = $entry['name'];
- }
- return($ret);
-
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
-
- /* check if given manufacturer ID ist still in use.
- The problem is, that nearly every table uses manufacturers ....
- */
- function is_manufacturerUsed($id)
- {
- if($this->is_connected){
- $tables = array();
- foreach($this->deviceMappingGOsaGlpi as $entry => $table){
- $tables[] = $entry;
- }
- $tables[] ="glpi_computers";
- $tables[] ="glpi_cartridges_type";
- $ret = array();
- $i = 3;
- foreach($tables as $tbl){
- if($i <= 0 ) continue;
- $qry = "SELECT * FROM ".$tbl." WHERE FK_glpi_enterprise = ".$id.";";
- $res = $this->query($qry);
- foreach($res as $entry){
- if($i <= 0 ) continue;
- if(isset($entry['designation'])){
- $entry['name'] = $entry['designation'];
- }
- $i --;
- $ret[] = $entry['name'];
- }
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Manufacturer
- Updates already existing manufacturer
- */
- function Add_UpdateCatrigdeType($array,$array_printer_types)
- {
- if(!is_array($array)){
- trigger_error("Add_UpdateCatrigdeType: first paraeter must be an array");
- }elseif($this->is_connected){
-
-
- $atr = array("name","ref","location","type","FK_glpi_enterprise","tech_num","deleted","comments","alarm");
-
- /* Entry was edited */
- if($array['ID']>0){
- $qry = "DELETE FROM glpi_cartridges_assoc WHERE FK_glpi_cartridges_type=".$array['ID'].";";
-
- $v = "";
- foreach($atr as $at){
- if(isset($array[$at])){
- $v .= " ".$at."='".$array[$at]."', ";
- }
- }
- if(empty($v)){
- trigger_error("Add_UpdateCatrigdeType: no attributes given ");
- return(false);
- }else{
- $v = preg_replace("/, $/","",$v);
- $qry = "UPDATE glpi_cartridges_type SET ".$v." WHERE ID='".$array['ID']."';";
- $this->query($qry);
- }
- }else{
-
- /* skip if name is in use*/
- $qry = "SELECT * FROM glpi_cartridges_type WHERE name='".$array['name']."';";
- if(count($this->query($qry))){
- return;
- }
-
- $str = "INSERT INTO glpi_cartridges_type ";
- $namen = "";
- $values= "";
- foreach($array as $name => $value){
- $namen .= $name.", ";
- if(is_numeric($value)){
- $values .= $value.", ";
- }else{
- $values .= "'".$value."', ";
- }
- }
- $values = preg_replace("/, $/","",$values);
- $namen = preg_replace("/, $/","",$namen);
- $str .= "(".$namen.") VALUES (".$values.");";
- $this->query($str);
- $IDs = $this->query("SELECT ID FROM glpi_cartridges_type WHERE name='".$array['name']."';");
- if(count($IDs) > 1){
- trigger_error("internal db error");
- return;
- }
- $array['ID'] = $IDs[0]['ID'];
- }
-
- foreach($array_printer_types as $id){
- $qry = "INSERT INTO glpi_cartridges_assoc
- (FK_glpi_cartridges_type,FK_glpi_type_printer)
- VALUES
- (".$array['ID'].",".$id.")";
-
- $this->query($qry);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getSupportedPrinterTypeIDsForCartridge($cid)
- {
- if($this->is_connected){
- $ret = array();
- $qry = "SELECT FK_glpi_type_printer FROM glpi_cartridges_assoc WHERE FK_glpi_cartridges_type = ".$cid.";";
- $res = $this->query($qry);
-
- foreach($res as $entry => $value){
- $ret[$value['FK_glpi_type_printer']] = $value['FK_glpi_type_printer'];
- }
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function removeCartridgeType($id){
- if($this->is_connected){
- $qry = "DELETE FROM glpi_cartridges_assoc WHERE FK_glpi_cartridges_type=".$id.";";
- $this->query($qry);
- $qry = "DELETE FROM glpi_cartridges_type WHERE ID=".$id.";";
- return($this->query($qry));
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getCartridgesWhichUseThisType($id)
- {
- if($this->is_connected){
- $qry = "SELECT * FROM glpi_cartridges WHERE FK_glpi_cartridges_type=".$id.";";
- $ret = $this->query($qry);
- return($ret);
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-
- /* Add pritner types
- Add one entry to the cartridgeType types
- */
- function addCartridgeDropdownType($name)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_dropdown_cartridge_type WHERE name='".$name."';");
- if(isset($tmp[0])){
- //trigger_error("such an entry already exists");
- return(false);
- }else{
- return($this->query("INSERT INTO glpi_dropdown_cartridge_type (name) VALUES ('".$name."');"));
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* remove cartridgeType types
- Remove one entry from the cartridgeType types (specified by ID=$id)
- */
- function removeCartridgeDropdownType($id)
- {
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_dropdown_cartridge_type WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("DELETE FROM glpi_dropdown_cartridge_type WHERE ID=".$id.";"));
- }else{
- trigger_error("can't remove not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- /* Update cartridgeType
- Update a cartridgeType
- */
- function updateCartridgeDropdownType($name,$id)
- {
-
- if($this->is_connected){
- $tmp = $this->query("SELECT * FROM glpi_dropdown_cartridge_type WHERE ID=".$id.";");
- if(isset($tmp[0])){
- return($this->query("UPDATE glpi_dropdown_cartridge_type SET name='".$name."' WHERE ID=".$id.";"));
- }else{
- trigger_error("can't update not existing entry");
- return(false);
- }
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
- function getUsedDropdownTypes($id=false)
- {
- if($this->is_connected){
- if($id){
- $qry = "SELECT distinct(type) FROM glpi_cartridges_type WHERE type = ".$id.";";
- }else{
- $qry = "SELECT distinct(type) FROM glpi_cartridges_type;";
- }
- return($this->query($qry));
- }else{
- trigger_error("not connected");
- return(false);
- }
- }
-
-}
-//$s = new glpiDB("vserver-01","glpi","tester","glpi");
-//print_r($s->query("SELECT * FROM glpi_computers"));
-//$s->getComputerInformations("1 OR (c.ID<10000)");
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiAccount.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiAccount.inc
deleted file mode 100644
index 398d9a5c8..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiAccount.inc
+++ /dev/null
@@ -1,819 +0,0 @@
-ui= get_userinfo();
-
- /* Abort class construction, if no db is defined */
- if(!isset($this->config->data['SERVERS']['GLPI'])){
- return;
- }
-
- // Get informations about databse connection
- $this->data = $this->config->data['SERVERS']['GLPI'];
-
- // Abort if mysql extension is missing
- if(!is_callable("mysql_connect")){
- return;
- }
-
- // Create handle of glpi class, and check if database connection is established
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
-
- if(!$this->handle->is_connected){
- return;
- }
-
- // If this dn is already used in database, then get all informations for this entry
- if($this->handle->is_account($this->dn)){
- $this->is_account = true;
- $tmp = ($this->handle->getComputerInformations($this->dn));
-
- foreach(array("tech_num","os","FK_glpi_enterprise","type","comments","contact_num") as $attr){
- $this->$attr = $tmp[0][$attr];
- }
- $this->usedDevices = $this->handle->getUsedDevices($tmp[0]['ID']);
- $atts = $this->handle->getAssignAttachments($tmp[0]['ID']);
- foreach($atts as $attachment){
-
- $this->usedAttachments[$attachment['FK_doc']]=$attachment['FK_doc'];
- }
- }else{
- $this->is_account = false;
- }
-
- /* set defaults */
- $this->name = $this->dn;
- $this->orig_dn = $this->dn;
- $this->initially_was_account = $this->is_account;
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- if($this->is_account && !$this->view_logged){
- $this->view_logged = TRUE;
- new log("view","all/".get_class($this),$this->dn);
- }
-
- /* Fill templating stuff */
- $smarty= get_smarty();
- $display= "";
-
- /* Assign smarty defaults
- To avoid undefined indexes, if there is an error with the glpi db
- */
- foreach(array("SystemTypes","SystemTypeKeys","Manufacturers",
- "OSs","TechnicalResponsibles","InstalledDevices","Attachments","AttachmentKeys",
- "OSKeys","OSs","ManufacturerKeys","InstalledDeviceKeys") as $attr){
- $smarty->assign($attr,array());
- }
- foreach(array("type","FK_glpi_enterprise","os","tech_num","comments","contact_num","AttachmentsDiv") as $attr){
- $smarty->assign($attr,"");
- }
-
- $tmp = $this->plInfo();
- foreach($tmp['plProvidedAcls'] as $name => $translation) {
- $smarty->assign($name."ACL",$this->getacl($name));
- }
-
- /* Check if there is a glpi database server defined
- */
- if(!isset($this->config->data['SERVERS']['GLPI'])){
- print_red(_("There is no server with valid glpi database service."));
- return($smarty->fetch(get_template_path('glpi.tpl',TRUE,dirname(__FILE__))));
- }
-
- $this->data = $this->config->data['SERVERS']['GLPI'];
-
- /* Check if we can call mysql_connect
- If we can't, there is no the mysql-php extension
- */
- if(!is_callable("mysql_connect")){
- print_red(_("Can't connect to glpi database, the php-mysql extension is missing."));
- return($smarty->fetch(get_template_path('glpi.tpl',TRUE,dirname(__FILE__))));
- }
-
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
-
- /* If handle == false, abort
- Seems that the server, username and or password is wrong
- */
- if(!$this->handle->is_connected){
- print_red(_("Can't connect to glpi database, check configuration twice."));
- return($smarty->fetch(get_template_path('glpi.tpl',TRUE,dirname(__FILE__))));
- }
-
- /* Download requested of attachment requested.
- */
- if(isset($_GET['get_attachment'])){
- $atts = $this->handle->getAttachments();
- if(isset($atts[$_GET['get_attachment']])){
- $att = $atts[$_GET['get_attachment']];
- $filename = CONFIG_DIR."/glpi/".$att['filename'];
- if(file_exists($filename) && is_readable($filename)){
- $str = file_get_contents($filename);
- send_binary_content($str,$att['filename']);
- }else{
- print_red(_("Download of attachment failed. Attachment was not found on server."));
- }
- }else{
- print_red(_("Download of attachment failed. Not a valid attachment id."));
- }
- }
-
- /* All checks are ok
- Lets handle Posts, templates etc below ...
- */
-
- $users = $this->handle->getUsers();
- $ldap= $this->config->get_ldap_link();
-
- /* Check for Trading button Post
- */
- if(isset($_POST['Trading'])){
- print_red(_("This feature is not implemented yet."));
- }
-
- /* Check for Software button Post
- */
- if(isset($_POST['Software'])){
- print_red(_("This feature is not implemented yet."));
- }
-
- /* Check for Contract button Post
- */
- if(isset($_POST['Contracts'])){
- print_red(_("This feature is not implemented yet."));
- }
-
- /* Add Device was requested, open new dialog
- */
- if((isset($_POST['AddDevice'])) && ($this->acl_is_writeable("Devices"))){
- $this->dialog =true;
- $this->cur_dialog = new glpiDeviceManagement($this->config,$this->dn,$this->usedDevices);
- }
-
- /* Attachment pool was closed with use
- */
- if(isset($_POST['UseAttachment']) && ($this->acl_is_writeable("Attachments"))){
- if(count($this->cur_dialog->check())){
- foreach($this->cur_dialog->check() as $msg){
- print_red($msg);
- }
- }else{
- $this->cur_dialog->save_object();
- $this->usedAttachments = $this->cur_dialog->save();
- $this->cur_dialog = false;
- $this->edit_type = false;
- }
- }
-
- /* Attachment pool was closed with abort
- */
- if(isset($_POST['AbortAttachment'])){
- $this->cur_dialog = false;
- $this->edit_type = false;
- }
-
- /* Open Attachment pool to add/edit Attachments
- */
- if(isset($_POST['AddAttachment']) && ($this->acl_is_writeable("Attachments"))){
- $this->cur_dialog = new glpiAttachmentPool($this->config,$this->dn,$this->usedAttachments);
- $this->dialog = true;
- }
-
- /* Remove Attachment fro this tab
- */
- $once = true;
- foreach($_POST as $name => $value){
- if((preg_match("/^delAttachment_/",$name))&&($once) && $this->acl_is_writeable("Attachments")){
- $once= false;
- $name = preg_replace("/^delAttachment_/","",$name);
- $entry = preg_replace("/_.*$/","",$name);
- if(isset($this->usedAttachments[$entry])){
- unset($this->usedAttachments[$entry]);
- }
- }
- }
- if((isset($_POST['RemoveAttachment']))&&(isset($_POST['Attachments'])) && ($this->acl_is_writeable("Attachments"))){
- foreach($_POST['Attachments'] as $entry){
- if(isset($this->usedAttachments[$entry])){
- unset($this->usedAttachments[$entry]);
- }
- }
- }
-
- /* We have selected some devices and pressed use button
- */
- if(isset($_POST['SelectDeviceSave']) && $this->acl_is_writeable("Devices")){
- $this->cur_dialog->save_object();
- $this->usedDevices= ($this->cur_dialog->getSelected());
- $this->cur_dialog = false;
- $this->dialog = false;
- $this->edit_type=false;
- }
-
- /* Aborted Device selction
- */
- if(isset($_POST['SelectDeviceCancel']) && ($this->acl_is_writeable("Devices"))){
- $this->dialog = false;
- $this->cur_dialog = false;
- $this->edit_type=false;
- }
-
- /* System type management
- */
- if(isset($_POST['edit_type']) && $this->acl_is_writeable("type")){
- $this->dialog = true;
- $this->edit_type=true;
- }
-
- /* This closes the system type editing dialog
- */
- if(isset($_POST['close_edit_type']) && ($this->acl_is_writeable("type"))){
- $this->edit_type=false;
- $this->dialog = false;
- }
-
- if(isset($_POST['Rename_Cancel'])){
- $this->renameTypeDialog = false;
- $this->renameOSDialog = false;
- }
-
- /* This appends a new system to our sytem types
- */
- if((isset($_POST['add_type']))&&(!empty($_POST['type_string'])) && $this->acl_is_writeable("type")){
- $attr = $this->handle->getSystemTypes();
- if(in_array(trim($_POST['type_string']),$attr)){
- print_red(_("Adding new sytem type failed, this system type name is already used.")) ;
- }else{
- $this->handle->addSystemType(trim($_POST['type_string']));
- }
- }
-
- /* Remove selected type from our system types list
- */
- if((isset($_POST['del_type']))&&(!empty($_POST['select_type'])) && $this->acl_is_writeable("type")){
- $tmp = $this->handle->is_systemTypeUsed($_POST['select_type']);
- if(count($tmp)){
- $names = "";
- foreach($tmp as $name){
- $names .= ", ".$name;
- }
- $names = preg_replace("/^, /","",$names);
- $names = trim($names);
- if(count($tmp) == 3){
- $names .= " ...";
- }
- print_red(sprintf(_("You can't delete this system type, it is still in use by these system(s) '%s'"),$names));
- }else{
- $this->handle->removeSystemType($_POST['select_type']);
- }
- }
-
- /* Rename selected system type to given string
- */
- if(isset($_POST['Rename_type_OK'])){
- $attr = $this->handle->getSystemTypes();
- if(in_array(trim($_POST['string']),$attr)){
- print_red(_("Rename failed, this system type name is already used.")) ;
- }else{
- $this->renameTypeDialog = false;
- $this->handle->updateSystemType($_POST['string'],trim($this->select_type));
- }
- }
-
-
- if((isset($_POST['rename_type'])&&(!empty($_POST['select_type'])))||($this->renameTypeDialog)){
- if(isset($_POST['select_type'])){
- $this->select_type = $_POST['select_type'];
- }
- $this->renameTypeDialog = true;
- $tmp = $this->handle->getSystemTypes();
-
- $smarty->assign("string",$tmp[$this->select_type]);
- if(isset($_POST['string'])){
- $smarty->assign("string",$_POST['string']);
- }
- $smarty->assign("Method","rename");
- $display= $smarty->fetch(get_template_path('glpi_edit_type.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
-
-
- /* Someone wants to edit the system types ...
- So, lets open a new dialog which provides some buttons to edit the types
- */
- if($this->edit_type){
- $smarty->assign("Method","edit");
- $smarty->assign("SystemTypes", $this->handle->getSystemTypes());
- $smarty->assign("SystemTypeKeys", array_flip($this->handle->getSystemTypes()));
- $display= $smarty->fetch(get_template_path('glpi_edit_type.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* System os management
- */
- if(isset($_POST['edit_os']) && $this->acl_is_writeable("os")){
- $this->dialog = true;
- $this->edit_os=true;
- }
-
- /* Close Operating system dialog
- */
- if(isset($_POST['close_edit_os'])){
- $this->edit_os=false;
- $this->dialog = false;
- }
-
- /* Add new os to the db
- */
- if((isset($_POST['add_os']))&&(!empty($_POST['is_string'])) && $this->acl_is_writeable("os")){
- $attr = $this->handle->getOSTypes();
- if(in_array(trim($_POST['is_string']),$attr)){
- print_red(_("Adding new operating system failed, specifed name is already used.")) ;
- }else{
- $this->handle->addOS(trim($_POST['is_string']));
- }
- }
-
- /* Delete selected os from list and db
- */
- if((isset($_POST['del_os']))&&(!empty($_POST['select_os'])) && $this->acl_is_writeable("os")){
- $tmp = $this->handle->is_osUsed($_POST['select_os']);
-
- if(count($tmp)){
-
- $names = "";
- foreach($tmp as $name){
- $names .= ", ".$name;
- }
- $names = preg_replace("/^, /","",$names);
- $names = trim($names);
- if(count($tmp) == 3){
- $names .= " ...";
- }
- print_red(sprintf(_("You can't delete this operating system, it is still in use by these system(s) '%s'"),$names));
-
- }else{
- $this->handle->removeOS_byID($_POST['select_os']);
- }
- }
-
- /* Rename selected os to given string
- */
- if(isset($_POST['Rename_os_OK']) && $this->acl_is_writeable("os")){
- $attr = $this->handle->getOSTypes();
- if(in_array(trim($_POST['string']),$attr)){
- print_red(_("Updating operating system failed, specifed name is already used.")) ;
- }else{
- $this->handle->updateOS($_POST['string'],$this->select_type);
- $this->renameOSDialog = false;
- }
- }
- if((isset($_POST['rename_os'])&&(!empty($_POST['select_os'])))||($this->renameOSDialog)){
- if(isset($_POST['select_os'])){
- $this->select_type = $_POST['select_os'];
- }
- $this->renameOSDialog = true;
- $tmp = $this->handle->getOSTypes();
-
- $smarty->assign("string",$tmp[$this->select_type]);
- if(isset($_POST['string'])){
- $smarty->assign("string",$_POST['string']);
- }
- $smarty->assign("Method","rename");
- $display= $smarty->fetch(get_template_path('glpi_edit_os.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Open dialog to edit os types
- */
- if($this->edit_os){
- $smarty->assign("Method","edit");
- $smarty->assign("OSs", $this->handle->getOSTypes());
- $smarty->assign("OSKeys", array_flip($this->handle->getOSTypes()));
- $display= $smarty->fetch(get_template_path('glpi_edit_os.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
-
-
- /* Show dialog to select a new contact person
- * Select a contact person
- */
- if(isset($_POST['SelectContactPerson']) && $this->acl_is_writeable("contact_num")){
- $this->addUser = "contact";
- $this->cur_dialog= new glpiSelectUser($this->config,$this->dn,"user_tech_num");
- $this->cur_dialog->set_acl_category(preg_replace("/\//","",$this->acl_category));
- $this->cur_dialog->set_acl_base($this->dn);
-
- }
-
- /* Open dialog which allows to edit the manufacturers
- */
- if(isset($_POST['edit_manufacturer']) && $this->acl_is_writeable("FK_glpi_enterprise")){
- $this->cur_dialog = new glpiManufacturer($this->config,$this->dn);
- $this->dialog = true;
- }
-
- /* Close manufacturer editing dialog
- */
- if(isset($_POST['close_edit_manufacturer'])){
- $this->dialog = false;
- $this->cur_dialog = false;
- }
-
- /* Abort user selection
- */
- $smarty->assign("AbortSelectUser","SelectUserCancel");
- if(isset($_POST['SelectUserCancel'])){
- $this->dialog = false;
- $this->addUser ="";
- $this->cur_dialog = false;
- }
-
- /* Selecte technical responsible person
- */
- if(isset($_POST['SelectTechPerson']) && $this->acl_is_writeable("tech_num")){
- $this->addUser ="tech";
- $this->cur_dialog= new glpiSelectUser($this->config,$this->dn,"user_tech_num");
- $this->cur_dialog->set_acl_category(preg_replace("/\//","",$this->acl_category));
- $this->cur_dialog->set_acl_base($this->dn);
- }
-
- /* Technical responsible person selected*/
- if(isset($_GET['act'])&&($_GET['act']=="user_tech_num")&&(strlen($_GET['id']) > 100)){
- print_red(sprintf(_("Could not add the given user, the users dn is too long, only 100 characters are allowed here.")));
-
- }elseif(isset($_GET['act'])&&($_GET['act']=="user_tech_num") && strlen($_GET['id'])){
-
-
- /* Get posted id */
- $id = base64_decode($_GET['id']);
-
- /* Check if user is already created in glpi database */
- if(!in_array($id,$users)){
-
- /* If this user doesn't exists in glpi db, we must create him */
- $ldap->cat($id, array('cn', 'mail', 'telephoneNumber'));
- $atr = $ldap->fetch();
- $tmp = array();
- $use = array( "cn" =>"name",
- "mail" =>"email",
- "telephoneNumber" =>"phone");
-
- /* Create array */
- foreach($use as $gosa => $glpi){
- if(isset($atr[$gosa])){
- $tmp[$glpi]= $atr[$gosa][0];
- }
- }
-
- /* Add this user */
- $this->handle->addUser($tmp,$id);
- }
-
- /* Re-read users */
- $users = ($this->handle->getUsers());
-
- /* Get user */
- $tmp = array_flip($users);
- $id=$tmp[$id];
-
- /* Use user id, close dialog */
- if($this->addUser == "tech"){
- $this->tech_num = $id;
- }else{
- $this->contact_num = $id;
- }
- $this->cur_dialog = false;
- $this->dialog= false;
- }
-
- /* if( cur_dialog != false || cur_dialog != NULL)
- * There is a dialog which wants to be displayed
- */
- if(isset($this->cur_dialog) && is_object($this->cur_dialog)){
- $this->cur_dialog->save_object();
- $this->dialog=true;
- $this->cur_dialog->parent = &$this;
- return($this->cur_dialog->execute());
- }else{
- $this->dialog= false;
- }
-
- /* Assign smarty defaults */
- foreach(array("SystemTypes","SystemTypeKeys","Manufacturers","OSs","TechnicalResponsibles","InstalledDevices","Attachments") as $attr){
- $smarty->assign($attr,array());
- }
-
- /* Assign some vars to smarty
- */
- foreach(array("type","FK_glpi_enterprise","os","tech_num","contact_num","Attachments","InstalledDevices") as $attr){
- $smarty->assign($attr,"");
- }
-
- /* Do we need to flip is_account state? */
- if(isset($_POST['modify_state'])){
- if($this->is_account && $this->acl_is_removeable()){
- $this->is_account= FALSE;
- }elseif(!$this->is_account && $this->acl_is_createable()){
- $this->is_account= TRUE;
- }
- }
-
- /* Show tab dialog headers */
- if ($this->is_account){
- $display= $this->show_disable_header(_("Remove inventory"),
- _("This device has inventory informations enabled. You can disable them by clicking below."));
- } else {
- $display= $this->show_enable_header(_("Add inventory"),
- _("This device has inventory informations disabled. You can enable them by clicking below."));
- return ($display);
- }
-
- /* Assign system types
- */
- $smarty->assign("SystemTypeKeys", array_flip($this->handle->getSystemTypes()));
- $smarty->assign("SystemTypes", $this->handle->getSystemTypes());
- $smarty->assign("type", $this->type);
-
- /* Assign os types
- */
- $smarty->assign("OSKeys", array_flip($this->handle->getOSTypes()));
- $smarty->assign("OSs", $this->handle->getOSTypes());
- $smarty->assign("os", $this->os);
-
- /* Dispaly installed devices */
- $smarty->assign("InstalledDevices" ,$this->getDevices());
- $smarty->assign("InstalledDeviceKeys" ,array_flip($this->getDevices()));
-
- /* Append manufacturers
- */
- $smarty->assign("ManufacturerKeys", array_flip($this->handle->getEnterprises()));
- $smarty->assign("Manufacturers", $this->handle->getEnterprises());
- $smarty->assign("FK_glpi_enterprise", $this->FK_glpi_enterprise);
-
- /* Assign used Attachments
- */
-
- $divlist = new divSelectBox("glpiAttachmentsList");
- $divlist-> SetHeight(130);
- $atts = $this->getUsedAttachments(true);
- $downlink = "%s ";
- $del_link = " ";
- foreach($atts as $id => $attachment){
- $divlist->AddEntry
- (
- array(
- array("string"=>$attachment['name']),
- array("string"=>$attachment['mime']),
- array("string"=>sprintf($downlink,$id,$attachment['filename'])),
- array("string"=>sprintf($del_link,$attachment['ID']),"attach"=>"style='border-right:0px;'"),
- )
- );
- }
-
- $smarty->assign("AttachmentsDiv" ,$divlist->DrawList());
- /* Handle contact person
- Assign name ... to smarty, if set
- */
- if(isset($users[$this->contact_num])){
- $ldap->cat($users[$this->contact_num], array('givenName', 'sn', 'uid'));
- $tr = $ldap->fetch();
- $str = "";
- if(isset($tr['givenName'][0])){ $str .= $tr['givenName'][0]." "; }
- if(isset($tr['sn'][0])) { $str .= $tr['sn'][0]." "; }
- if(isset($tr['uid'][0])){ $str .= "[".$tr['uid'][0]."]"; }
- $smarty->assign("contact_num", $str);
- }else{
- $smarty->assign("contact_num", _("N/A"));
- }
-
- /* Handle tech person
- Assign name ... to smarty, if set
- */
- if(isset($users[$this->tech_num])){
- $tr = $ldap->cat($users[$this->tech_num], array('givenName', 'sn', 'uid'));
- $tr = $ldap->fetch();
- $str = "";
- if(isset($tr['givenName'][0])){ $str .= $tr['givenName'][0]." "; }
- if(isset($tr['sn'][0])) { $str .= $tr['sn'][0]." "; }
- if(isset($tr['uid'][0])){ $str .= "[".$tr['uid'][0]."]"; }
- $smarty->assign("tech_num", $str);
- }else{
- $smarty->assign("tech_num", _("N/A"));
- }
- $smarty->assign("comments", $this->comments);
-
- $display.= $smarty->fetch(get_template_path('glpi.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- function remove_from_parent()
- {
- /* Cancel if there's nothing to do here */
- if ((!$this->initially_was_account) || (!$this->acl_is_removeable())){
- return;
- }
- if(function_exists("mysql_pconnect")){
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
- if($this->initially_was_account){
- $this->handle->removeComputerInformations($this->dn);
- new log("remove","undefined/".get_class($this),$this->dn);
- }
- }else{
- print_red(_("Can't remove glpi account, while mysql extension is missing."));
- new log("remove","undefined/".get_class($this),$this->dn,array(),_("Can't remove glpi account, while mysql extension is missing."));
- }
-
- }
-
- function getDevices(){
- $ret = array();
- foreach($this->usedDevices as $type => $entries){
- foreach($entries as $ent){
- if(isset($ent['designation'])){
- $ret[] = $ent['designation']." [".$type."]";
- }else{
- $ret[] = $ent['name']." [".$type."]";
- }
- }
- }
- return($ret);
- }
-
-
- /* Save data to object */
- function save_object()
- {
- if(!isset($_POST['glpi_tpl_posted'])) {
- return ;
- }
- plugin::save_object();
- }
-
-
- /* Check supplied data */
- function check()
- {
- /* Call common method to give check the hook */
- $message= plugin::check();
-
- // if($this->TechnicalResponsible == ""){
- // $message[] = _("Please select a technical responsible person for this entry.");
- // }
-
- return ($message);
- }
-
-
- /* Save to LDAP */
- function save()
- {
- if($this->is_account){
- $attrs = array();
- $this->date_mod = date("Y-m-d H:i:s");
- foreach($this->attributes as $attr){
- $attrs[$attr] = $this->$attr;
- }
- $attrs['name'] = $this->dn;
- unset($attrs['ID']);
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
-
- /* check if we have to update, add */
- if($this->initially_was_account&&$this->is_account){
- $this->handle->updateComputerInformations($attrs,$this->orig_dn);
- new log("modify","undefined/".get_class($this),$this->dn);
- }elseif($this->is_account){
- $this->handle->addComputerInformations($attrs,$this->dn);
- new log("create","undefined/".get_class($this),$this->dn);
- }
- $tmp = $this->handle->getComputerInformations($this->dn);
- $this->handle->addDevicesToComputer($this->usedDevices,$tmp[0]['ID']);
- }
- }
-
-
- /* Return used attachments */
- function getUsedAttachments($divlist = false)
- {
- $atts =$this->handle->getAttachments();
- $ret = array();
- foreach($atts as $entry){
- if(in_array($entry['ID'],$this->usedAttachments)){
- if($divlist){
- $ret[$entry['ID']] = $entry;
- }else{
- $cm ="";
- if(isset($entry['comment'])){
- $cm=" [".$entry['comment']."]";
- }
- if(isset($entry['mime'])){
- $cm.=" -".$entry['mime']."";
- }
-
- $ret[$entry['ID']]= $entry['name'].$cm;
- }
- }
- }
- return($ret);
- }
-
- /* Return plugin informations for acl handling */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("Glpi"),
- "plDescription" => _("Inventory extension"),
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 20,
- "plSection" => array("administration"),
- "plCategory" => array("workstation","terminal","component","server","phone") ,
- "plProvidedAcls"=> array(
-
- "tech_num" => _("Technical responsible"),
- "comments" => _("Comment"),
- "os" => _("Operating system"),
- "location" => _("Location"),
- "contact_num" => _("Contact person"),
- "model" => _("Model"),
- "type" => _("Type"),
- "FK_glpi_enterprise" => _("Manufacturer"),
- "Attachments" => _("Attachments"),
- "Devices" => _("Peripheral devices"))
- ));
- }
-
-
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiAttachmentPool.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiAttachmentPool.inc
deleted file mode 100644
index 9d5570f2b..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiAttachmentPool.inc
+++ /dev/null
@@ -1,359 +0,0 @@
-"*"));
- }
-
- /* Assign used attributes */
- if($used !== NULL){
- $this->Selected = $used;
- }
- }
-
- function execute()
- {
- plugin::execute();
- $attach = $this->parent->handle->getAttachments();
- /* Fill templating stuff */
- $smarty = get_smarty();
- $display = "";
- $only_once = true;
-
- /* walk through all posted objects */
- foreach($_POST as $name => $value){
-
- /* Open dialog to create a new entry */
- if(preg_match("/new_attach/",$name)){
- $this->edit = true;
- $this->entry=array();
-
- /* Set default values */
- foreach($this->attributes as $attr) {
- $this->$attr = "";
- $this->entry[$attr]="";
- }
- }
-
- /* Remove attach*/
- if((preg_match("/^delAttach_/",$name))&&($only_once)){
- $only_once = false;
- $str = preg_replace("/^delAttach_/","",$name);
- $str = base64_decode(preg_replace("/_.*$/","",$str));
-
- /* remove attach from db */
- $this->delAttach = $str;
- $smarty->assign("warning",msgPool::deleteInfo($attach[$str]['name'],_("attachment")));
- return($smarty->fetch(get_template_path('remove_glpi.tpl',TRUE,dirname(__FILE__))));
- }
-
- /* Start editing entry */
- if((preg_match("/^editAttach_/",$name))&&($only_once)){
- $only_once = false;
- $str = preg_replace("/^editAttach_/","",$name);
- $str = base64_decode(preg_replace("/_.*$/","",$str));
-
- /* Check if we have an attachment with given ID */
- foreach($attach as $att ){
- if($att['ID'] == $str ){
-
- /* Entry was found, show dialog */
- $this->edit = true;
- $this->entry = $att;
-
- foreach($att as $name => $value){
- $this->$name = $value;
- }
- }
- }
- }
- }
-
- if((isset($_POST['delete_glpi_confirm']))&&(isset($attach[$this->delAttach]))){
- if($this->parent->handle->is_attachmentUsed($this->delAttach)){
- $tmp = $this->parent->handle->is_attachmentUsed($this->delAttach);
-
- $names = "";
- foreach($tmp as $name){
- $names .= ", ".$name;
- }
- $names = preg_replace("/^, /","",$names);
- $names = trim($names);
- if(count($tmp) == 3){
- $names .= " ...";
- }
- print_red(sprintf(_("You can't delete this attachment, it is still in use by these system(s) '%s'"),$names));
-
- }else{
- $this->parent->handle->deleteAttachment($this->delAttach);
- @unlink(CONFIG_DIR."/glpi/".$this->filename);
- $attach = $this->parent->handle->getAttachments();
- }
- }
-
- /* Someone tries to upload a file */
- if(($this->edit == true)&&(isset($_POST['upload']))){
- if(!isset($_FILES['filename'])){
- print_red(_("There is no valid file uploaded."));
- }else{
- $FILE = $_FILES['filename'];
- if(!isset($FILE['name'])){
- print_red(_("There is no valid file uploaded."));
- }else{
- if($FILE['error']!=0) {
- print_red(_("Upload wasn't successfull."));
- }else{
- if(!is_dir(CONFIG_DIR."/glpi/")){
- print_red(sprintf(_("Missing directory '%s/glpi/' to store glpi uploads."),CONFIG_DIR));
- }else{
- $filen = CONFIG_DIR."/glpi/".$FILE['name'];
- if(file_exists($filen)){
- print_red(_("There is already a file with the same name uploaded."));
- }else{
- $fh = fopen($filen,"w");
- if(!$fh){
- print_red(sprintf(_("Can't create file '%s'."),$filen));
- }else{
- $str = file_get_contents($FILE['tmp_name']);
- fwrite($fh,$str,strlen($str));
- fclose($fh);
- $this->mime = $FILE['type'];
- $this->filename = $FILE['name'];
- }
- } // File already exists
- }
- } // Check if any error occurred
- } // check if valid filename was uploaded
- } // ende check if file was uploaded
- }// upload post
-
- /* save attachment*/
- if(($this->edit == true)&&(isset($_POST['SaveAttachment']))){
- if(count($this->check())==0){
- $this->date_mod = date("Y-m-d H:i:s");
- $this->save_entry();
- $this->edit= false;
- $this->entry = array();
- $attach = $this->parent->handle->getAttachments();
- }else{
- foreach($this->check() as $msg){
- print_red($msg);
- }
- }
- }
-
- /* Abort editing/adding attachment*/
- if(($this->edit == true)&&(isset($_POST['CancelAttachment']))){
- $this->edit = false;
- $this->entry = array();
- }
-
- /* If edit == true, we have to show a dialog to edit or add an attach
- */
- if($this->edit == true){
- foreach($this->attributes as $attr){
- $smarty->assign($attr,htmlentities(utf8_decode($this->$attr)));
- }
- if(!empty($this->filename)){
- if(is_readable(CONFIG_DIR."/glpi/".$this->filename)){
- $status =_("File is available.");
- }else{
- $status =_("File is not readable, possibly the file is missing.");
- }
- }else{
- $status = _("Currently no file uploaded.");
- }
- $smarty->assign("status",$status);
- return($smarty->fetch(get_template_path('glpiAttachmentEdit.tpl',TRUE,dirname(__FILE__))));
- }
-
- /* Create list with checkboxes to select / deselect some attachents */
- $divlist = new divlist("Attachment");
- $divlist->SetPluginMode();
- $divlist->SetHeader(array(
- array("string" => " ", "attach" => "style='text-align:center;width:20px;'"),
- array("string" => _("Name")),
- array("string" => _("Mime"),"attach"=>"style='width:200px;'"),
- array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'" )));
-
- $divlist->SetSummary(_("This table displays all available attachments."));
- $divlist->SetEntriesPerPage(0);
-
- $editdel = " ";
- $editdel.= " ";
-
- /* Add all given attachments to divlist
- */
- foreach($attach as $entry){
-
- /* Create display name*/
- if((empty($entry['name']))||(empty($entry['comment']))){
-
- /* In glpi it is possible to add entries without name
- so i've added this block
- */
- if(empty($entry['name'])){
- $str1 = ""._("empty")." ";
- }else{
- $str1 = $entry['name'];
- }
-
- if(!empty($entry['comment'])){
- $str1.= " [".$entry['comment']."]";
- }
- }else{
- /* Both attributes given */
- $str1 = $entry['name']." [".$entry['comment']."]";
- }
-
- $edit = str_replace("%s",base64_encode($entry['ID']),$editdel);
- $str2 = $entry['mime']." ";
-
- $chkbox = " ".
- " ";
-
- if(in_array($entry['ID'],$this->Selected)){
- $chkbox = preg_replace("/%CHECKED%/"," checked ",$chkbox);
- }else {
- $chkbox = preg_replace("/%CHECKED%/"," ",$chkbox);
- }
- $chkbox = preg_replace("/%s/",$entry['ID'],$chkbox);
- $divlist->AddEntry(array(
- array("string" => $chkbox,
- "attach" => "style='text-align:center;width:20px;'"),
- array("string"=> $str1),
- array("string"=> $str2,"attach"=>"style='width:200px;'"),
- array("string"=> $edit ,"attach" => "style='width:60px;border-right:0px;text-align:right;'")
- ));
-
- }
-
- $listhead = "".
- " ".
- "
";
-
- $GlpiAttachmentFilter = session::get('GlpiAttachmentFilter');
-
- $smarty->assign("attachments", $divlist->DrawList());
- $smarty->assign("attachmenthead", $listhead);
- $smarty->assign("search_image", get_template_path('images/lists/search.png'));
- $smarty->assign("searchu_image", get_template_path('images/lists/search-user.png'));
- $smarty->assign("tree_image", get_template_path('images/lists/search-subtree.png'));
- $smarty->assign("infoimage", get_template_path('images/info_small.png'));
- $smarty->assign("launchimage", get_template_path('images/lists/action.png'));
- $smarty->assign("apply", apply_filter());
- $smarty->assign("alphabet", generate_alphabet());
- $smarty->assign("attachment_regex", $GlpiAttachmentFilter['filter']);
-
- $display.= $smarty->fetch(get_template_path('glpiAttachmentPool.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- function save()
- {
- return($this->Selected);
- }
-
- /* Adds new or saves edited entries */
- function save_entry()
- {
- if($this->edit){
- $tmp = array();
- foreach($this->attributes as $attr){
- $tmp[$attr] = $this->$attr;
- }
- $id = -1;
- if(isset($this->entry['ID'])){
- $id = $this->entry['ID'];
- }
- $this->parent->handle->saveAttachments($tmp,$id);
- }
- }
-
- function save_object()
- {
- foreach($this->attributes as $attr){
- if(isset($_POST[$attr])){
- $this->$attr = $_POST[$attr];
- }
- }
-
- /* Checkboxes are only posted, if they are checked
- * To check if it was deselected, we check if wasOnPage
- * was posted with given name, so we can deselect this entry
- */
-
- foreach($_POST as $name => $value){
- if(preg_match("/wasOnPage_/",$name)){
- $id=preg_replace("/wasOnPage_/","",$name);
- if(isset($_POST["useMe_".$id])){
- $this->Selected[$id]=$id;
- }else{
- if(isset($this->Selected[$id])){
- unset($this->Selected[$id]);
- }
- }
- }
- }
- }
-
- /* Simple check */
- function check()
- {
- /* Call common method to give check the hook */
- $message= plugin::check();
-
- if($this->edit){
-
- /* check if given name is already in use */
- $att = $this->parent->handle->getAttachments();
- $ok = true;
- $this->name=trim($this->name);
-
- foreach($att as $val){
- if(!isset($this->entry['ID'])){
- if($val['name'] == $this->name){
- $ok = false;
- }
- }else{
- if(($val['name'] == $this->name)&&($this->entry['ID'] != $val['ID'])){
- $ok = false;
- }
- }
- }
- if(!$ok){
- $message[] = _("This name is already in use.");
- }
- if(empty($this->name)){
- $message[] = _("Please specify a valid name for this attachment.");
- }
- }
- return($message);
- }
-
-}// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiDeviceManagement.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiDeviceManagement.inc
deleted file mode 100644
index 699d598db..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiDeviceManagement.inc
+++ /dev/null
@@ -1,422 +0,0 @@
-ui = get_userinfo();
-
- if(isset($used)){
- $this->Selected = $used;
- }
-
- /* Specify which vars are allowed for a sepcific type of device */
- $this->DeviceAttrs['case'] = array("designation","format","comment","FK_glpi_enterprise");
- $this->DeviceAttrs['moboard'] = array("designation","chipset","comment","FK_glpi_enterprise");
- $this->DeviceAttrs['processor'] = array("designation","frequence","comment","FK_glpi_enterprise","specif_default");
- $this->DeviceAttrs['iface'] = array("designation","bandwidth","comment","FK_glpi_enterprise","specif_default");
- $this->DeviceAttrs['ram'] = array("designation","frequence","comment","FK_glpi_enterprise","specif_default","type");
- $this->DeviceAttrs['hdd'] = array("designation","rpm","interface","cache","comment","FK_glpi_enterprise","specif_default");
- $this->DeviceAttrs['drive'] = array("designation","speed","interface","is_writer","comment","FK_glpi_enterprise","specif_default");
- $this->DeviceAttrs['control'] = array("designation","interface","raid","comment","FK_glpi_enterprise");
- $this->DeviceAttrs['gfxcard'] = array("designation","ram","interface","comment","FK_glpi_enterprise","specif_default");
- $this->DeviceAttrs['sndcard'] = array("designation","type","comment","FK_glpi_enterprise","specif_default");
- $this->DeviceAttrs['power'] = array("designation","power","comment","FK_glpi_enterprise","atx");
- $this->DeviceAttrs['pci'] = array("designation","comment","FK_glpi_enterprise","specif_default");
- $this->DeviceAttrs['monitor'] = array("name","comments","serial","otherserial","size",
- "flags_micro","flags_speaker","flags_subd","flags_bnc",
- "location","type","FK_glpi_enterprise","is_global","deleted","is_template","tplname");
-
- $this->AllowedDevices=array("case","moboard","sndcard","processor","iface","ram","hdd","drive","control","gfxcard","power","pci","monitor");
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- /* Get all defined devices */
- $this->reload();
-
- /* Fill templating stuff */
- $smarty= get_smarty();
- $display= "";
-
- /* this var is used to ensure that every post is only performed once */
- $only_once = true;
-
- /* Check Post for some actions */
- foreach($_POST as $name => $value){
-
- /* If new_ then we should create an new device */
- if((preg_match("/^new_/",$name))&&($only_once)){
-
- /* don't do this twice */
- $only_once = false;
-
- /*extract device device_type */
- $deviceType = preg_replace("/_.*$/","",preg_replace("/^new_/","",$name));
-
- /* Check if type is allowed, and create empty entry */
- $tmp = array();
- if((!isset($this->DeviceAttrs[$deviceType]))||((!in_array($deviceType,$this->AllowedDevices)))){
- print_red(sprintf(_("Internal Error can't create device of type '%s'"),$deviceType));
- }else{
- foreach($this->DeviceAttrs[$deviceType] as $attr){
- $tmp[$attr] = "";
- }
- $tmp['device_type'] = $deviceType;
- $this->EditEntry = $tmp;
- $this->editMode =true;
- }
- }
- }
-
- /* delete was requested ... show dialog */
- if((isset($_GET['act']))&&($_GET['act']=="del_device")){
- $id = base64_decode($_GET['id']);
- $tmp = $this->devices[$id];
-
- $this->delete = $tmp;
-
- if(isset($tmp['name'])){
- $smarty->assign("warning",msgPool::deleteInfo($tmp['name'],_("glpi device")));
- }elseif(isset($tmp['designation'])){
- $smarty->assign("warning",msgPool::deleteInfo($tmp['designation'],_("glpi device")));
- }else{
- print_red(_("Can't detect object name."));
- }
-
- return($smarty->fetch(get_template_path('remove_glpi.tpl',TRUE,dirname(__FILE__))));
- }
-
- /* Delete entry, but check if this device is in currently in use */
- if(isset($_POST['delete_glpi_confirm'])){
- if(count($this->parent->handle->is_deviceUsed($this->delete))){
-
- $tmp = $this->parent->handle->is_deviceUsed($this->delete);
-
- $names = "";
- foreach($tmp as $name){
- $names .= ", ".$name;
- }
- $names = preg_replace("/^, /","",$names);
- $names = trim($names);
- if(count($tmp) == 3){
- $names .= " ...";
- }
- print_red(sprintf(_("You can't delete this device, it is still in use by these system(s) '%s'"),$names));
- }else{
- $this->parent->handle->deleteDevice($this->delete);
- $this->reload();
- }
- }
-
- /* Open entry for editing if requested */
- if((isset($_GET['act']))&&($_GET['act']=="edit_device")){
- $id = base64_decode($_GET['id']);
- $this->editMode =true;
- $this->EditEntry = $this->devices[$id];
- }
-
- /* Abort editing this entry */
- if(isset($_POST['AbortDeviceChanges'])){
- $this->EditEntry = array();
- $this->editMode = false;
- }
-
- /* Save all changes made on currently selected entry */
- if(isset($_POST['SaveDeviceChanges'])){
-
- /* First check if all changes made are allowed */
- if(count($this->check())==0){
- $this->save();
- $this->editMode = false;
- $this->reload();
- }else{
- foreach($this->check() as $msg){
- print_red($msg);
- }
- }
-
- }
-
- /* Check if we are currently editing something ? */
- if($this->editMode == true){
- return ($this->editDevice($this->EditEntry));
- }
-
- /* ENDE : GET / POST handling
- * Below, only output generation for headpage
- */
-
- $divlist = new divlist("glpi devices");
- $divlist->SetPluginMode();
- $divlist->SetEntriesPerPage(0);
- $divlist->SetHeader(array(
- array("string" => " ", "attach" => "style='text-align:center;width:20px;'"),
- array("string" => _("devices"), "attach" => "style=''"),
- array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'" )));
-
- $edit = "%s ";
- $editdel = " ";
- $editdel.= " ";
-
- $useDevice = " ";
-
- foreach($this->devices as $key=>$user){
-
- if(isset($user['designation'])){
- $str = "designation";
- }else{
- $str = "name";
- }
-
- if(isset($this->Selected[$user['device_type']][$user[$str]])){
- $use = " checked ";
- }else{
- $use ="";
- }
-
- /* Dawn databse struckture ....*/
- if(empty($user['comment']) && isset($user['comments'])) {
- $user['comment'] = $user['comments'];
- }
-
- $field1 = array("string" => preg_replace("/%s/",base64_encode($key),preg_replace("/%USE%/",$use,$useDevice)), "attach" => "style='text-align:center;width:20px;'");
- $field2 = array("string" => sprintf($edit,base64_encode($key),$user[$str]." [".$user['comment']."]"), "attach" => "style=''");
- $field3 = array("string" => sprintf($editdel,base64_encode($key),base64_encode($key)),
- "attach" => "style='width:60px;border-right:0px;text-align:right;'");
- $divlist->AddEntry(array($field1,$field2,$field3));
-
- }
-
- $listhead = "".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- " ".
- "
";
-
- $filter = session::get('glpiDeviceRegex');
- $smarty->assign("devicehead", $listhead);
- $smarty->assign("devices", $divlist->DrawList());
- $smarty->assign("search_image", get_template_path('images/lists/search.png'));
- $smarty->assign("searchu_image", get_template_path('images/lists/search-user.png'));
- $smarty->assign("tree_image", get_template_path('images/lists/search-subtree.png'));
- $smarty->assign("infoimage", get_template_path('images/info_small.png'));
- $smarty->assign("launchimage", get_template_path('images/lists/action.png'));
- $smarty->assign("apply", apply_filter());
- $smarty->assign("alphabet", generate_alphabet());
- $smarty->assign("device_regex", $filter['device_regex']);
-
- $display.= $smarty->fetch(get_template_path('glpiDeviceManagement.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Save device to glpi database
- * If this is a new device, create a new entry, else update this entry
- */
- function save()
- {
- if($this->parent->handle->deviceExists($this->EditEntry)){
- $this->parent->handle->updateDevices($this->EditEntry);
- }else{
- $this->parent->handle->addDevice($this->EditEntry);
- }
-
- }
-
- /* this only gets all already defined devices */
- function reload()
- {
- $this->devices = $this->parent->handle->getDevices();
- ksort($this->devices);
- }
-
- /* This funtions saves all POST variables.
- The variable must be in the array $this->EditEntry
- */
- function save_object()
- {
- foreach($_POST as $name => $value){
-
- if(preg_match("/wasOnPage_/",$name)){
- $dN = base64_decode($value);
-
- $device = $this->devices[$dN];
- $type = $device['device_type'];
-
- if(isset($device['designation'])){
- $str = "designation";
- }else{
- $str = "name";
- }
-
- if(isset($_POST['useDevice_'.$value])){
- $this->Selected[$type][$device[$str]] = $device;
- }else{
- if(isset($this->Selected[$type][$device[$str]])){
- unset($this->Selected[$type][$device[$str]]);
- }
- }
- }
- }
-
- if(is_array($this->EditEntry)){
- foreach($this->EditEntry as $name => $value){
- if(isset($_POST[$name])){
- $this->EditEntry[$name] = $_POST[$name];
- }
-
- }
- }
- }
-
- /* returns the selected devices */
- function getSelected()
- {
- return($this->Selected);
- }
-
- /* This function checks all created devices.
- If you wan't to use device specific checks,
- use >>if($attr['device_type']=="moboard")<< to create a device type depending check
- */
- function check()
- {
- /* Call common method to give check the hook */
- $message= plugin::check();
-
- $attr = $this->EditEntry;
-
- if(isset($attr['designation'])){
- $str2 = "designation";
- }else{
- $str2 = "name";
- }
- if(empty($attr[$str2])){
- $message[]=(_("You have to specify a valid name for this device."));
- }
-
- /* Avoid same name twice */
- $devices = ($this->parent->handle->getDevices());
- foreach($devices as $dev){
-
- /* Some devices use designation some name for name
- */
- if(isset($dev['designation'])){
- $str = "designation";
- }else{
- $str = "name";
- }
-
- if($dev[$str]==$attr[$str2]){
-
- /* Entries with ['ID'] already exists, and are only edited, if ID is missing we are currently creating a new entry */
- if(isset($attr['ID'])){
- if(!(($dev['ID'] == $attr['ID'])&&($dev['device_type']==$attr['device_type']))){
- $message[] = _("This device name is already in use.");
- }
- }else{
- $message[] = _("This device name is already in use.");
- }
- }
- }
-
- return($message);
- }
-
- /* This functions displays the template for all available devices
- * This function is also used if we create a new device
- */
- function editDevice($entry)
- {
- $smarty = get_smarty();
-
- /* Transfer given data to smarty */
- foreach($this->EditEntry as $name => $value){
- $smarty->assign($name,htmlentities(utf8_decode($value)));
- }
-
- /* Set default select boxes, manufacturers ... */
- $smarty->assign("device_type",$entry['device_type']);
-
- $none = array(0 => _("none"));
- $manufacturer = array_merge($none,$this->parent->handle->getEnterprises());
-
- $ramtypes = $this->parent->handle->getRAMTypes();
-
- $smarty->assign("RAMtypes", $ramtypes);
- $smarty->assign("RAMtypeKeys", array_flip($ramtypes));
-
- $deviceControlTypes = array_merge($none,$this->parent->handle->getGlpiDeviceControlTypes());
-
- $smarty->assign("HDDInterfaceKeys",array_flip($deviceControlTypes));
- $smarty->assign("HDDInterfaces" , $deviceControlTypes);
-
- $gfxControlTypes = array("0"=>_("None"),"AGP"=>"AGP","PCI"=>"PCI","PCI-X"=>"PCI-X","Other"=>_("Other"));
-
- $smarty->assign("GFXInterfaceKeys",array_flip($gfxControlTypes));
- $smarty->assign("GFXInterfaces" , $gfxControlTypes);
-
- $smarty->assign("FK_glpi_enterpriseKeys",array_flip($manufacturer));
- $smarty->assign("FK_glpi_enterprises", $manufacturer);
-
- $smarty->assign("formats",array("Large","Medium","Micro"));
- $smarty->assign("formats",array("Large","Medium","Micro"));
-
- $smarty->assign("formats",array("Large","Medium","Micro"));
- $smarty->assign("formatKeys",array('Grand','Moyen','Micro'));
- return($smarty->fetch(get_template_path('glpi_devices.tpl',TRUE,dirname(__FILE__))));
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiManufacturer.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiManufacturer.inc
deleted file mode 100644
index 3afa261c0..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiManufacturer.inc
+++ /dev/null
@@ -1,165 +0,0 @@
-ui = get_userinfo();
- }
-
- function execute()
- {
- plugin::execute();
- $smarty = get_smarty();
- $display = "";
-
- /* Remove enterprise from db */
- if((isset($_POST['remove_manu']))&&(isset($_POST['manufacturer']))){
-
- $tmp = $this->parent->handle->is_manufacturerUsed($_POST['manufacturer']);
- if(count($tmp)){
-
- $names = "";
- foreach($tmp as $name){
- $names .= ", ".$name;
- }
- $names = preg_replace("/^, /","",$names);
- $names = trim($names);
- if(count($tmp) == 3){
- $names .= " ...";
- }
- print_red(sprintf(_("You can't delete this manufacturer, it is still in use by these system(s) '%s'"),$names));
- }else{
- $this->parent->handle->removeEnterprise($_POST['manufacturer']);
- }
- }
-
- /* Add new Manufactuer : Open dialog with empty fields */
- if(isset($_POST['add_manu'])){
- $this->editMode = true;
- $this->Edit_Add = "add";
- foreach($this->attributes as $atr){
- $this->$atr = "";
- }
- }
-
- /* Edit existing manuatctuerer data */
- if((isset($_POST['edit_manu']))&&(isset($_POST['manufacturer']))){
- $this->editMode = true;
- $this->Edit_Add = "edit";
- $tmp = $this->parent->handle->getEnterprise($_POST['manufacturer']);
- $tmp = $tmp[0];
- foreach($this->attributes as $atr){
- $this->$atr = "";
- }
- foreach($this->attributes as $atr){
- if(isset($tmp[$atr])){
- $this->$atr = $tmp[$atr];
- }
- }
- $this->ID = $_POST['manufacturer'];
- }
-
- /* close Dialog without saving */
- if(isset($_POST['close_manufacturer'])){
- $this->editMode=false;
- }
-
- /* close dialog an save all changes / adds */
- if(isset($_POST['save_manufacturer'])){
- $tmp = array();
- foreach($this->attributes as $attrs){
- $tmp[$attrs]=$this->$attrs;
- }
-
- $allok = true;
- if(empty($tmp['name'])){
- print_red(_("Please specify a name."));
- $allok = false;
- }
-
- $attr = $this->parent->handle->getEnterprises();
-
- if($this->ID == -1 ){
- if(in_array($tmp['name'],$attr)){
- $allok = false;
- print_red(_("Specified name is already in use, please choose another one."));
- }
- }else{
- unset($attr[$this->ID]);
- if(in_array($tmp['name'],$attr)){
- $allok = false;
- print_red(_("Specified name is already in use, please choose another one."));
- }
- }
-
- /* all checks are ok , so save changes */
- if($allok){
- if($this->Edit_Add == "add"){
- $this->parent->handle->addEnterprise($tmp);
- $this->editMode=false;
- }else{
- $this->parent->handle->updateEnterprise($tmp,$this->ID);
- $this->editMode=false;
- }
- }
- }
-
- /* As long as this war is true, we have to display the edit dialog */
- if($this->editMode == true){
- $this->save_object();
- foreach($this->attributes as $attrs){
- $smarty->assign($attrs,$this->$attrs);
- }
-
- $display.= $smarty->fetch(get_template_path('glpiManufacturerAdd.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
-
- $smarty->assign("Manus", $this->parent->handle->getEnterprises());
- $smarty->assign("ManuKeys", array_flip($this->parent->handle->getEnterprises()));
- $display.= $smarty->fetch(get_template_path('glpiManufacturer.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Save to LDAP */
- function save()
- {
- }
-
- function save_object()
- {
- foreach($this->attributes as $attr){
- if(isset($_POST[$attr])){
- $this->$attr = stripslashes($_POST[$attr]);
- }
- }
- }
-
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterAccount.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterAccount.inc
deleted file mode 100644
index 5e2779ace..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterAccount.inc
+++ /dev/null
@@ -1,821 +0,0 @@
-ui= get_userinfo();
-
- $this->is_account = false;
-
- /* Abort class construction, if no db is defined */
- if(!isset($this->config->data['SERVERS']['GLPI'])){
- return;
- }
-
- // Get informations about databse connection
- $this->data = $this->config->data['SERVERS']['GLPI'];
-
- // Abort if mysql extension is missing
- if(!is_callable("mysql_connect")){
- return;
- }
-
- // Create handle of glpi class, and check if database connection is established
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
-
- if(!$this->handle->is_connected){
- return;
- }
-
- // If this dn is already used in database, then get all informations for this entry
- if($this->handle->is_printer_account($this->dn)){
- $this->is_account = true;
- $tmp = ($this->handle->getPrinterInformations($this->dn));
-
- foreach(array("tech_num","FK_glpi_enterprise","type","comments","contact_num","flags_serial","flags_par","flags_usb","ramSize") as $attr){
- $this->$attr = $tmp[0][$attr];
- }
-
- $atts = $this->handle->getAssignPrinterAttachments($tmp[0]['ID']);
- foreach($atts as $attachment){
- $this->usedAttachments[$attachment['FK_doc']]=$attachment['FK_doc'];
- }
-
- $cart= $this->handle->getUsedCartridges($tmp[0]['ID']);
- foreach($cart as $key => $cartridge){
- $this->usedCartridges[$key]=$cartridge;
- $this->usedCartridges[$key]['status']="exists";
- }
-
-
- }else{
- $this->is_account = false;
- }
-
- /* set defaults */
- $this->name = $this->dn;
- $this->orig_dn = $this->dn;
- $this->initially_was_account = $this->is_account;
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- if($this->is_account && !$this->view_logged){
- $this->view_logged = TRUE;
- new log("view","printer/".get_class($this),$this->dn);
- }
-
- /* Fill templating stuff */
- $smarty= get_smarty();
- $display= "";
-
- $smarty->assign("CartridgesACL",$this->getacl("Cartridges"));
-
- /* Assign smarty defaults
- To avoid undefined indexes, if there is an error with the glpi db
- */
- foreach(array("PrinterTypeKeys","PrinterTypes","ManufacturerKeys","Manufacturers",
- "Attachments","AttachmentKeys","CartridgeKeys","Cartridges") as $attr){
- $smarty->assign($attr,array());
- }
- foreach(array("type","FK_glpi_enterprise","tech_num","contact_num","comments","flags_serial","flags_par","flags_usb","AttachmentsDiv") as $attr){
- $smarty->assign($attr,"");
- }
-
- /* Assign acls */
- $tmp = $this->plInfo();
- foreach($tmp['plProvidedAcls'] as $name => $translation){
- $smarty->assign($name."ACL",$this->getacl($name));
- }
-
- /* Check if there is a glpi database server defined
- */
- if(!isset($this->config->data['SERVERS']['GLPI'])){
- print_red(_("There is no server with valid glpi database service."));
- return($smarty->fetch(get_template_path('glpiPrinter.tpl',TRUE,dirname(__FILE__))));
- }
-
- $this->data = $this->config->data['SERVERS']['GLPI'];
-
- /* Check if we can call mysql_connect
- If we can't, there is no the mysql-php extension
- */
- if(!is_callable("mysql_connect")){
- print_red(_("Can't connect to glpi database, the php-mysql extension is missing."));
- return($smarty->fetch(get_template_path('glpiPrinter.tpl',TRUE,dirname(__FILE__))));
- }
-
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
-
- /* If handle == false, abort
- Seems that the server, username and or password is wrong
- */
- if(!$this->handle->is_connected){
- print_red(_("Can't connect to glpi database, check configuration twice."));
- return($smarty->fetch(get_template_path('glpiPrinter.tpl',TRUE,dirname(__FILE__))));
- }
-
- /* Download requested of attachment requested.
- */
- if(isset($_GET['get_attachment'])){
- $atts = $this->handle->getAttachments();
- if(isset($atts[$_GET['get_attachment']])){
- $att = $atts[$_GET['get_attachment']];
- $filename = CONFIG_DIR."/glpi/".$att['filename'];
- if(file_exists($filename) && is_readable($filename)){
- $str = file_get_contents($filename);
- send_binary_content($str,$att['filename']);
- }else{
- print_red(_("Download of attachment failed. Attachment was not found on server."));
- }
- }else{
- print_red(_("Download of attachment failed. Not a valid attachment id."));
- }
- }
-
-
- /* All checks are ok
- Lets handle Posts, templates etc below ...
- */
-
- $users = $this->handle->getUsers();
- $ldap= $this->config->get_ldap_link();
-
-
- /* ##########################################################################
- * Some tab management
- */
-
- /* Do we need to flip is_account state? */
- if(isset($_POST['modify_state'])){
- if($this->is_account && $this->acl_is_removeable()){
- $this->is_account= FALSE;
- }elseif(!$this->is_account && $this->acl_is_createable()){
- $this->is_account= TRUE;
- }
- }
-
- /* Show tab dialog headers */
- if ($this->is_account){
- $display= $this->show_disable_header(_("Remove inventory"),
- _("This server has inventory features enabled. You can disable them by clicking below."));
- } else {
- $display= $this->show_enable_header(_("Add inventory"),
- _("This server has inventory features disabled. You can enable them by clicking below."));
- return ($display);
- }
-
-
- /* ##########################################################################
- * Printer type management
- * Dialog
- */
-
- /* Rename was requested */
- if(isset($_POST['Rename_PType_OK']) && $this->acl_is_writeable("type")){
- $tmp = $this->handle->getPrinterTypes();
- $allok = true;
- foreach($tmp as $id => $name){
- if(trim($name) == trim($_POST['string'])){
- $allok = false;
- }
- }
- if($allok){
- $this->handle->updatePrinterType($_POST['string'],$this->select_type);
- $this->rename = false;
- }else{
- print_red(sprintf(_("Can't rename given printer type to '%s', because this type name already exists."),$_POST['string']));
- }
- }
-
- /* abort rename
- */
- if(isset($_POST['Rename_Cancel'])){
- $this->rename = false;
- }
-
- /* Printer type management
- */
- if(isset($_POST['edit_type']) && $this->acl_is_writeable("type")){
- $this->dialog = true;
- $this->edit_type=true;
- }
-
- /* This closes the printer type editing dialog
- */
- if(isset($_POST['close_edit_type'])){
- $this->edit_type=false;
- $this->dialog = false;
- }
-
- /* This appends a new printer to our sytem types
- */
- if((isset($_POST['add_type']))&&(!empty($_POST['type_string'])) && $this->acl_is_writeable("type")){
-
- $tmp = $this->handle->getPrinterTypes();
- $allok = true;
- foreach($tmp as $id => $name){
- if(trim($name) == trim($_POST['type_string'])){
- $allok = false;
- }
- }
- if($allok){
- $this->handle->addPrinterType($_POST['type_string']);
- }else{
- print_red(sprintf(_("Can't rename given printer type to '%s', because this type name already exists."),$_POST['type_string']));
- }
- }
-
- /* Remove selected type from our printer types list
- */
- if((isset($_POST['del_type']))&&(!empty($_POST['select_type'])) && $this->acl_is_writeable("type")){
- $tmp = $this->handle->is_printerTypeUsed($_POST['select_type']);
- if(count($tmp)){
- $str = "";
- foreach($tmp as $id => $name){
- $str .= $name.", ";
- }
- $str = preg_replace("/, $/","",$str);
- print_red(sprintf(_("Can't delete printer type, it is still in use by '%s'."),$str));
- }else{
- $this->handle->removePrinterType($_POST['select_type']);
- }
- }
-
- /* Rename selected printer type to given string
- */
- if((isset($_POST['rename_type']))&&(!empty($_POST['select_type']))||($this->rename) && $this->acl_is_writeable("type")){
- $this->rename = true;
-
- $smarty->assign("Method","rename");
-
- $tmp = $this->handle->getPrinterTypes();
-
- if(isset($_POST['select_type'])){
- $this->select_type = $_POST['select_type'];
- }
- $smarty->assign("string",$tmp[$this->select_type]);
- if(isset($_POST['string'])){
- $smarty->assign("string",$_POST['string']);
- }
-
- $display= $smarty->fetch(get_template_path('glpi_edit_printer_type.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Someone wants to edit the printer types ...
- So, lets open a new dialog which provides some buttons to edit the types
- */
- if($this->edit_type){
- $smarty->assign("Method","edit");
- $smarty->assign("PrinterTypes", $this->handle->getPrinterTypes());
- $smarty->assign("PrinterTypeKeys", array_flip($this->handle->getPrinterTypes()));
- $display= $smarty->fetch(get_template_path('glpi_edit_printer_type.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
-
- /* ##########################################################################
- * Edit manufacturers
- * Dialog
- */
-
- /* Open dialog which allows to edit the manufacturers
- */
- if(isset($_POST['edit_manufacturer']) && $this->acl_is_writeable("FK_glpi_enterprise")){
- $this->cur_dialog = new glpiManufacturer($this->config,$this->dn);
- $this->dialog = true;
- $this->editManufacturer =true;
- }
-
- /* Close manufacturer editing dialog
- */
- if((isset($_POST['close_edit_manufacturer']))&&($this->editManufacturer)){
- $this->dialog = false;
- $this->cur_dialog = false;
- $this->editManufacturer=false;
- }
-
-
- /* ##########################################################################
- * Technical responsible person
- * Contact person
- * Dialog
- */
-
- /* Show dialog to select a new contact person
- * Select a contact person
- */
- if(isset($_POST['SelectContactPerson']) && $this->acl_is_writeable("contact_num")){
- $this->addUser = "contact";
- $this->cur_dialog= new glpiSelectUser($this->config,$this->dn,"user_tech_num");
- }
-
- /* Selecte technical responsible person
- */
- if(isset($_POST['SelectTechPerson']) && $this->acl_is_writeable("tech_num")){
- $this->addUser ="tech";
- $this->cur_dialog= new glpiSelectUser($this->config,$this->dn,"user_tech_num");
- }
-
- /* Abort user selection
- */
- $smarty->assign("AbortSelectUser","SelectUserCancel");
- if(isset($_POST['SelectUserCancel'])){
- $this->dialog = false;
- $this->addUser ="";
- $this->cur_dialog = false;
- }
-
- /* Technical responsible/contact person selected */
- if(isset($_GET['act'])&&($_GET['act']=="user_tech_num")){
-
- /* Get posted id */
- $id = base64_decode($_GET['id']);
-
- /* Check if user is already created in glpi database */
- if(!in_array($id,$users)){
-
- /* If this user doesn't exists in glpi db, we must create him */
- $ldap->cat($id, array('cn', 'mail', 'telephoneNumber'));
- $atr = $ldap->fetch();
- $tmp = array();
- $use = array( "cn" =>"name",
- "mail" =>"email",
- "telephoneNumber" =>"phone");
-
- /* Create array */
- foreach($use as $gosa => $glpi){
- if(isset($atr[$gosa])){
- $tmp[$glpi]= $atr[$gosa][0];
- }
- }
-
- /* Add this user */
- $this->handle->addUser($tmp,$id);
- }
-
- /* Re-read users */
- $users = ($this->handle->getUsers());
-
- /* Get user */
- $tmp = array_flip($users);
- $id=$tmp[$id];
-
- /* Use user id, close dialog */
- if($this->addUser == "tech"){
- $this->tech_num = $id;
- }else{
- $this->contact_num = $id;
- }
- $this->cur_dialog = false;
- $this->dialog= false;
- }
-
-
- /* ##########################################################################
- * Handle attachments
- */
-
- /* Attachment pool was closed with use
- */
- if(isset($_POST['UseAttachment']) && $this->acl_is_writeable("Attachments")){
- if(count($this->cur_dialog->check())){
- foreach($this->cur_dialog->check() as $msg){
- print_red($msg);
- }
- }else{
- $this->cur_dialog->save_object();
- $this->usedAttachments = $this->cur_dialog->save();
- $this->cur_dialog = false;
- $this->edit_type = false;
- }
- }
-
- /* Attachment pool was closed with abort
- */
- if(isset($_POST['AbortAttachment'])){
- $this->cur_dialog = false;
- $this->edit_type = false;
- }
-
- /* Open Attachment pool to add/edit Attachments
- */
- if(isset($_POST['AddAttachment']) && $this->acl_is_writeable("Attachments")){
- $this->cur_dialog = new glpiAttachmentPool($this->config,$this->dn,$this->usedAttachments);
- $this->dialog = true;
- }
-
- /* Remove Attachment from this tab
- */
- $once = true;
- foreach($_POST as $name => $value){
- if((preg_match("/^delAttachment_/",$name))&&($once) && $this->acl_is_writeable("Attachments")){
- $once= false;
- $name = preg_replace("/^delAttachment_/","",$name);
- $entry = preg_replace("/_.*$/","",$name);
- if(isset($this->usedAttachments[$entry])){
- unset($this->usedAttachments[$entry]);
- }
- }
- }
- if((isset($_POST['RemoveAttachment']))&&(isset($_POST['Attachments'])) && $this->acl_is_writeable("Attachments")){
- if(isset($this->usedAttachments[$_POST['Attachments']])){
- unset($this->usedAttachments[$_POST['Attachments']]);
- }
- }
-
- /* ##########################################################################
- * Printer Cartridge handling
- */
-
- /* Abort cartridge select dialog
- */
- if(isset($_POST['SelectCartridgeCancel'])){
- $this->cur_dialog = false;
- $this->edit_type = false;
- }
-
- /* Get selected cartridges and add them to our list
- */
- if(isset($_POST['SelectCartridgeSave'])){
- $this->cur_dialog->save_object();
- $carts = $this->cur_dialog->save();
- foreach($carts as $cart){
- $cart['status'] = "new";
- $this->usedCartridges[] = $cart;
- }
- $this->cur_dialog = false;
- $this->edit_type = false;
- }
-
- /* Remove cartridge
- */
- if((isset($_POST['RemoveCartridge']))&&(isset($_POST['Cartridges'])) && $this->acl_is_writeable("ManageCartridges")){
-
- foreach($_POST['Cartridges'] as $cartID){
-
- if(isset($this->usedCartridges[$cartID])){
- if($this->usedCartridges[$cartID]['status'] == "exists"){
- $this->usedCartridges[$cartID]['status'] = "deleted";
- }else{
- unset($this->usedCartridges[$cartID]);
- }
- }
- }
- }
-
- /* Open Attachment pool to add/edit Attachments
- */
- if(isset($_POST['AddCartridge']) && $this->acl_is_writeable("ManageCartridges")){
- $this->cur_dialog = new glpiPrinterCartridges($this->config,$this->dn,$this->type);
- $this->dialog = true;
- }
-
-
- /* ##########################################################################
- * Draw Dialogs
- */
- /* if( cur_dialog != false || cur_dialog != NULL)
- * There is a dialog which wants to be displayed
- */
- if($this->cur_dialog && is_object($this->cur_dialog)){
- $this->cur_dialog->save_object();
- $this->dialog=true;
- $this->cur_dialog->parent = &$this;
- return($this->cur_dialog->execute());
- }else{
- $this->dialog= false;
- }
-
-
- /* ##########################################################################
- * Assign listbox / checkbox .... values to smarty
- */
- /* Assign smarty defaults */
- foreach(array("PrinterTypes","PrinterTypeKeys","Manufacturers","TechnicalResponsibles","Attachments","Cartridges") as $attr){
- $smarty->assign($attr,array());
- }
-
- /* Assign some vars to smarty
- */
- foreach(array("type","FK_glpi_enterprise","tech_num","contact_num","flags_serial","flags_par","flags_usb") as $attr){
- $smarty->assign($attr,"");
- }
-
- $smarty->assign("comments", $this->comments);
- $smarty->assign("flags_serial", $this->flags_serial);
- $smarty->assign("flags_par", $this->flags_par);
- $smarty->assign("flags_usb", $this->flags_usb);
-
- /* Assign system types
- */
- $smarty->assign("PrinterTypes", $this->handle->getPrinterTypes());
- $smarty->assign("PrinterTypeKeys", array_flip($this->handle->getPrinterTypes()));
- $smarty->assign("type", $this->type);
-
- /* Append manufacturers
- */
- $smarty->assign("ManufacturerKeys", array_flip($this->handle->getEnterprises()));
- $smarty->assign("Manufacturers", $this->handle->getEnterprises());
- $smarty->assign("FK_glpi_enterprise", $this->FK_glpi_enterprise);
-
- /* Assign used Attachments
- */
-
- $divlist = new divSelectBox("glpiAttachmentsList");
- $divlist-> SetHeight(120);
- $atts = $this->getUsedAttachments(true);
- $downlink = "%s ";
- $del_link = " ";
- foreach($atts as $id => $attachment){
- $divlist->AddEntry
- (
- array(
- array("string"=>$attachment['name']),
- array("string"=>$attachment['mime']),
- array("string"=>sprintf($downlink,$id,$attachment['filename'])),
- array("string"=>sprintf($del_link,$attachment['ID']),"attach"=>"style='border-right:0px;'"),
- )
- );
- }
-
- $smarty->assign("AttachmentsDiv" ,$divlist->DrawList());
- $smarty->assign("Attachments", $this->getUsedAttachments());
- $smarty->assign("AttachmentKeys", array_flip($this->getUsedAttachments()));
-
- /* Assign Cartridges
- */
- $smarty->assign("Cartridges", $this->getUsedCartridges());
- $smarty->assign("CartridgeKeys", $this->getUsedCartridges(true));
-
- /* ##########################################################################
- * Assign contact and technical responsible person
- */
- if(isset($users[$this->contact_num])){
- $ldap->cat($users[$this->contact_num], array('givenName', 'sn', 'uid'));
- $tr = $ldap->fetch();
- $str = "";
- if(isset($tr['givenName'][0])){ $str .= $tr['givenName'][0]." "; }
- if(isset($tr['sn'][0])) { $str .= $tr['sn'][0]." "; }
- if(isset($tr['uid'][0])){ $str .= "[".$tr['uid'][0]."]"; }
- $smarty->assign("contact_num", $str);
- }else{
- $smarty->assign("contact_num", _("N/A"));
- }
-
- /* Handle tech person
- Assign name ... to smarty, if set
- */
- if(isset($users[$this->tech_num])){
- $ldap->cat($users[$this->tech_num], array('givenName', 'sn', 'uid'));
- $tr = $ldap->fetch();
- $str = "";
- if(isset($tr['givenName'][0])){ $str .= $tr['givenName'][0]." "; }
- if(isset($tr['sn'][0])) { $str .= $tr['sn'][0]." "; }
- if(isset($tr['uid'][0])){ $str .= "[".$tr['uid'][0]."]"; }
- $smarty->assign("tech_num", $str);
- }else{
- $smarty->assign("tech_num", _("N/A"));
- }
-
- /* If theres a cartridge selected, you can't change the printer type.
- */
- $disp = true;
-
- foreach($this->usedCartridges as $cart){
- if($cart['status'] != "deleted"){
- $disp = false;
- }
- }
- if($disp==false){
- $smarty->assign("typeACL", $this->getacl("type",true));
- }
-
- $display.= $smarty->fetch(get_template_path('glpiPrinter.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- function remove_from_parent()
- {
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
- if($this->initially_was_account){
- $this->handle->removePrinterInformations($this->dn);
- new log("remove","printer/".get_class($this),$this->dn);
- }
- }
-
-
- /* Save data to object */
- function save_object()
- {
- if(isset($_POST['glpiPrinterFlagsPosted'])){
- plugin::save_object();
- foreach($this->attributes as $attrs){
- if(isset($_POST[$attrs])){
- $this->$attrs = $_POST[$attrs];
- }
- }
-
- if(isset($_POST['FK_glpi_enterprise']) && $this->acl_is_writeable("FKglpienterprise")){
- $this->FK_glpi_enterprise = $_POST['FK_glpi_enterprise'];
- }
-
- foreach(array("flags_serial","flags_par","flags_usb") as $checkboxes){
- if($this->acl_is_writeable($checkboxes)){
- if(isset($_POST[$checkboxes])){
- $this->$checkboxes = 1;
- }else{
- $this->$checkboxes = 0;
- }
- }
- }
- }
-
- }
-
-
- /* Check supplied data */
- function check()
- {
- /* Call common method to give check the hook */
- $message= plugin::check();
-
- // if($this->TechnicalResponsible == ""){
- // $message[] = _("Please select a technical responsible person for this entry.");
- // }
-
- return ($message);
- }
-
- /* Save to LDAP */
- function save()
- {
- if($this->is_account){
- $attrs = array();
- $this->date_mod = date("Y-m-d H:i:s");
- foreach($this->attributes as $attr){
- $attrs[$attr] = $this->$attr;
- }
- $attrs['name'] = $this->dn;
- unset($attrs['ID']);
- $this->handle = new glpiDB($this->data['SERVER'],$this->data['LOGIN'],$this->data['PASSWORD'],$this->data['DB']);
- if($this->initially_was_account&&$this->is_account){
- $this->handle->updatePrinterInformations($attrs,$this->dn);
- new log("modify","printer/".get_class($this),$this->dn);
- }elseif($this->is_account){
- $this->handle->addPrinterInformations($attrs,$this->dn);
- new log("create","printer/".get_class($this),$this->dn);
- }
- $tmp = $this->handle->getPrinterInformations($this->dn);
- $this->handle->addAttachmentsToPrinter($this->usedAttachments,$tmp[0]['ID']);
-
- foreach($this->usedCartridges as $cart){
- if($cart['status'] == "deleted"){
- $this->handle->removeCartridgeFromPrinter($cart['ID']);
- }elseif($cart['status'] == "new"){
- $this->handle->addCartridgeFromPrinter($tmp[0]['ID'],$cart['type_ID']);
- }
- }
- }
- }
-
- /* Return used attachments */
- function getUsedAttachments($divlist = false)
- {
- $atts =$this->handle->getAttachments();
- $ret = array();
- foreach($atts as $entry){
- if(in_array($entry['ID'],$this->usedAttachments)){
- if($divlist){
- $ret[$entry['ID']] = $entry;
- }else{
- $cm ="";
- if(isset($entry['comment'])){
- $cm=" [".$entry['comment']."]";
- }
- if(isset($entry['mime'])){
- $cm.=" -".$entry['mime']."";
- }
-
- $ret[$entry['ID']]= $entry['name'].$cm;
- }
- }
- }
- return($ret);
- }
-
- function getUsedCartridges($flip = false)
- {
- $ret = array();
- foreach($this->usedCartridges as $key => $value){
- if($value['status'] == "deleted") continue;
- if($flip){
- $ret[$key] = $key;
- }else{
- $ret[$key] = $value['name']." [".$value['type_name']."] "._("since")." :".$value['date_use'];
- }
- }
- return($ret);
- }
-
- /* Return plugin informations for acl handling */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("Glpi"),
- "plDescription" => _("Printer inventory extension"),
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 10,
- "plSection" => array("administration"),
- "plCategory" => array("printer"),
-
- "plProvidedAcls"=> array(
- "flags_serial" => _("Supports serial interface"),
- "flags_par" => _("Supports parallel interface"),
- "flags_usb" => _("Supports usb interface"),
- "tech_num" => _("Technical responsible"),
- "comments" => _("Comments"),
- "location" => _("Location"),
- "contact_num" => _("Contact person"),
- "type" => _("Type"),
- "FKglpienterprise" => _("Manufacturer"),
-
- "Attachments" => _("Attachments"),
-
- "ManageCartridges" => _("Cartridge settings"))
- ));
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterCartridges.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterCartridges.inc
deleted file mode 100644
index 1b74357c9..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterCartridges.inc
+++ /dev/null
@@ -1,293 +0,0 @@
-ui = get_userinfo();
- if(!session::is_set('glpiCartridgeRegex')){
- session::set('glpiCartridgeRegex',"*");
- }
-
- /* Only display cartridges for this type of printer */
- $this->PrinterType = $type;
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
- $display ="";
- $smarty = get_smarty();
- $filter = session::get('glpiCartridgeRegex');
-
- /* Filter settings, remove double* */
- if(isset($_GET['search'])){
- $filter = preg_replace("/\*\**/","*",$_GET['search']."*");
- }elseif(isset($_POST['cartridge_regex'])){
- $filter = preg_replace("/\*\**/","*",$_POST['cartridge_regex']);
- }
- if(empty($filter)) {
- $filter = "*";
- }
- session::set('glpiCartridgeRegex',$filter);
-
- /* Open dialog which allows to edit the manufacturers
- */
- if(isset($_POST['edit_manufacturer_cartridges'])){
- $this->cur_sub_dialog = new glpiManufacturer($this->config,$this->dn);
- $this->dialog = true;
- $this->editManufacturer =true;
- }
-
- /* Close manufacturer editing dialog
- */
- if((isset($_POST['close_edit_manufacturer']))&&($this->editManufacturer)){
- $this->dialog = false;
- $this->cur_sub_dialog = false;
- $this->editManufacturer=false;
- }
-
- /* Check poted vars and do the requested job, but only once */
- $only_once = true;
- foreach($_POST as $name => $value){
-
- /* We have to create a new cartridge */
- if(preg_match("/^newcartridge/",$name)&&($only_once)){
- $this->cur_dialog = new glpiPrinterCartridgesEdit($this->config,$this->dn,$this->PrinterType);
- $only_once = false;
- }
- }
-
- /* Edit cartridge */
- if(isset($_GET['act'])&&$_GET['act']=="edit_cartridge"){
- $val = ($this->parent->handle->getCartridgeTypeInformations($_GET['id']));
- $this->cur_dialog = new glpiPrinterCartridgesEdit($this->config,$this->dn,$this->PrinterType,$val[$_GET['id']]);
- }
-
- /* remove cartridge */
- if(isset($_GET['act'])&&$_GET['act']=="del_cartridge"){
- /* remove attach from db */
- $this->del = $_GET['id'];
- $val = ($this->parent->handle->getCartridgeTypeInformations($_GET['id']));
- $smarty->assign("warning", msgPool::deleteInfo($val[$this->del]['name'],_("cartridge")));
- return($smarty->fetch(get_template_path('remove_glpi.tpl',TRUE,dirname(__FILE__))));
- }
-
- if(isset($_POST['delete_cancel'])){
- $this->del = false;
- }
-
- /* Delete this entry */
- if(isset($_POST['delete_glpi_confirm'])&&($this->del)) {
- $tmp = $this->parent->handle->is_cartridgeTypeUsed($this->del);
- if(count($tmp)){
-
- $str = "";
- foreach($tmp as $id => $name){
- $str .= $name.", ";
- }
- $str = preg_replace("/, $/","",$str);
-
- print_red(sprintf(_("You can't delete this cartridge type, it is still in use by this printer(s) '%s'."),$str));
- }else{
- $val = ($this->parent->handle->getCartridgeTypeInformations($this->del));
- $this->cur_dialog = new glpiPrinterCartridgesEdit($this->config,$this->dn,$this->PrinterType,$val[$this->del]);
- $this->cur_dialog->parent = $this->parent;
- $this->cur_dialog->remove_from_parent();
- $this->cur_dialog= false;
- }
- }
-
- /* Abort edit / add dialog */
- if(isset($_POST['CancelCartridge'])){
- $this->cur_dialog = false;
- }
-
- /* Save changes if check is ok */
- if(isset($_POST['SaveCartridge'])){
- $this->cur_dialog->save_object();
- if(count($this->cur_dialog->check())) {
- foreach($this->cur_dialog->check() as $checks){
- print_red($checks);
- }
- }else{
- $this->cur_dialog->save();
- $this->cur_dialog = false;
- }
- }
-
- /* If we have a dialog open, display it */
- if($this->cur_sub_dialog){
- $this->cur_sub_dialog->parent = $this->parent;
- $this->cur_sub_dialog->save_object();
- return($this->cur_sub_dialog->execute());
- }
- /* If we have a dialog open, display it */
- if($this->cur_dialog){
- $this->cur_dialog->parent = $this->parent;
- $this->cur_dialog->save_object();
- return($this->cur_dialog->execute());
- }
-
- /* Create divlist */
- $divlist = new divlist("glpi devices");
- $divlist->SetPluginMode();
- $divlist->SetEntriesPerPage(0);
- $divlist->SetHeader(array(
- array("string" => " ", "attach" => "style='text-align:center;width:20px;'"),
- array("string" => _("Cartridges"), "attach" => "style=''"),
- array("string" => _("Action"), "attach" => "style='width:60px;border-right:0px;text-align:right;'" )));
-
- /* Links for editing,adding.... */
- $edit = "%s ";
- $editdel = " ";
- $editdel.= " ";
-
- /* Checkbox for selection of some cartridges */
- $useCartridge = " ";
-
- /* Add cartridges */
- $cart = $this->getCartridgeTypes();
-
- /* Remove typically error possibilities */
- $f = str_replace("/","\/",$filter);
- $f = str_replace(".","\.",$f);
- $f = str_replace("*",".*",$f);
-
- /* Assign cartridges */
- foreach($cart as $key=>$cartr){
-
- /* Skip if filter doesn't match*/
- if(!preg_match("/^".$f."$/i",$cartr['cartridgeName'])){
- continue;
- }
-
- /* check if this cartridge is selected */
- $chk = "";
- if(isset($this->usedCartridges[$key])){
- $chk = " checked ";
- }
-
- /* Add fields */
- $field1 = array("string" => preg_replace("/%s/",($key),preg_replace("/%CHECKED%/",$chk,$useCartridge)),
- "attach" => "style='text-align:center;width:20px;'");
- $field2 = array("string" => sprintf($edit,($key),$cartr['cartridgeName']." [".$cartr['cartridgeTypeName']."]"),
- "attach" => "style=''");
- $field3 = array("string" => sprintf($editdel,($key),($key)),
- "attach" => "style='width:60px;border-right:0px;text-align:right;'");
-
- $divlist->AddEntry(array($field1,$field2,$field3));
-
- }
-
- /* Create list header */
- $listhead = "".
- " ".
- "
";
-
- /* Tell smarty some vars */
- $filter = session::get('glpiCartridgeRegex');
- $smarty->assign("devicehead", $listhead);
- $smarty->assign("devices", $divlist->DrawList());
- $smarty->assign("search_image", get_template_path('images/lists/search.png'));
- $smarty->assign("searchu_image", get_template_path('images/lists/search-user.png'));
- $smarty->assign("tree_image", get_template_path('images/lists/search-subtree.png'));
- $smarty->assign("infoimage", get_template_path('images/info_small.png'));
- $smarty->assign("launchimage", get_template_path('images/lists/action.png'));
- $smarty->assign("apply", apply_filter());
- $smarty->assign("alphabet", generate_alphabet());
- $smarty->assign("cartridge_regex", $filter);
-
- $display.= $smarty->fetch(get_template_path('glpiPrinterCartridges.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Save device to glpi database
- * If this is a new device, create a new entry, else update this entry
- */
- function save()
- {
- $carts = $this->getCartridgeTypes();
- $ret = array();
- foreach($this->usedCartridges as $key){
- $tmp =array();
- $tmp['date_use'] = date("Y-m-d");
- $tmp['ID'] = -1;
- $tmp['type_ID'] = $carts[$key]['cartridgeID'];
- $tmp['name'] = $carts[$key]['cartridgeName'];
- $tmp['FK_glpi_printers']= -1;
- $tmp['type_name'] = $carts[$key]['cartridgeTypeName'];
- $ret[$key] = $tmp;
- }
- return($ret);
- }
-
- /* this only gets all already defined devices */
- function reload()
- {
- $this->devices = $this->parent->handle->getDevices();
- ksort($this->devices);
- }
-
- /* This funtions saves all POST variables.
- The variable must be in the array $this->EditEntry
- */
- function save_object()
- {
- /* Checkbox handling
- * Check which checkbox is selected
- */
- foreach($_POST as $name => $value){
- if(preg_match("/wasOnPage/",$name)){
- $id = preg_replace("/wasOnPage_/","",$name);
- if(isset($_POST['useCartridge_'.$id])){
- $this->usedCartridges[$id]=$id;
- }else{
- unset($this->usedCartridges[$id]);
- }
- }
- }
- }
-
- /* This function cehck all created devices if you wan't to create device specific check
- use >>if($attr['device_type']=="moboard")<< to create a device type depending check
- */
- function check()
- {
- /* Call common method to give check the hook */
- $message= plugin::check();
-
- return($message);
- }
-
- /* Return cartriges for our divlist */
- function getCartridgeTypes()
- {
- $ret = array();
- $ret = $this->parent->handle->getAvailableCartridgeTypes($this->PrinterType);
- return($ret);
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc
deleted file mode 100644
index 765f2e96f..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc
+++ /dev/null
@@ -1,332 +0,0 @@
-attributes as $val){
- if(isset($values[$val])){
- $this->$val = $values[$val];
- }else{
- $this->$val = "";
- }
- }
- $this->needToCatch = true;
- $this->printer_type = $printer_type;
- }
-
- function remove_from_parent()
- {
- if($this->ID > 0){
- $this->parent->handle->removeCartridgeDropdownType($this->ID);
- }
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- /* Fill templating stuff */
- $smarty= get_smarty();
- $display= "";
-
- /* Get all currently used/supported printer types for this cartridge type
- */
- if($this->needToCatch){
- $this->needToCatch = false;
- if(!empty($this->type)){
- $this->additional_printer= $this->parent->handle->getSupportedPrinterTypeIDsForCartridge($this->ID);
- }
- }
-
-
-
-
-
-
- /* Printer type management
- */
- if(isset($_POST['edit_type_cartridge'])){
- $this->dialog = true;
- $this->edit_type=true;
- }
-
- /* This closes the printer type editing dialog
- */
- if(isset($_POST['close_edit_type_cartridge'])){
- $this->edit_type=false;
- $this->dialog = false;
- }
-
- /* This appends a new printer to our sytem types
- */
- if((isset($_POST['add_cartridge_type']))&&(!empty($_POST['cartridge_type_string']))){
- print "Add";
- $this->parent->handle->addCartridgeDropdownType($_POST['cartridge_type_string']);
- }
-
- /* Remove selected type from our printer types list
- */
- if((isset($_POST['del_cartridge_type']))&&(!empty($_POST['select_type_cartridge']))){
- $used = $this->parent->handle->getUsedDropdownTypes($_POST['select_type_cartridge']);
- if(!count($used)){
- $this->parent->handle->removeCartridgeDropdownType($_POST['select_type_cartridge']);
- }else{
- print_red(_("Can't delete this entry, it is still in use."));
- }
- }
-
- /* Rename selected printer type to given string
- */
- /* Update*/
- if((isset($_POST['rename_cartridge_type']))&&(!empty($_POST['select_type_cartridge']))&&(!empty($_POST['cartridge_type_string']))){
- $this->parent->handle->updateCartridgeDropdownType($_POST['cartridge_type_string'],$_POST['select_type_cartridge']);
- }
-
- /* Someone wants to edit the printer types ...
- So, lets open a new dialog which provides some buttons to edit the types
- */
- if($this->edit_type){
- $smarty->assign("PrinterTypes", $this->parent->handle->getCartridgeTypes());
- $smarty->assign("PrinterTypeKeys", array_flip($this->parent->handle->getCartridgeTypes()));
- $display= $smarty->fetch(get_template_path('glpi_edit_cartridge_type.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Assign attributes */
- foreach($this->attributes as $attr){
- $smarty->assign($attr,$this->$attr);
- }
-
- /* Selecte technical responsible person
- */
- if(isset($_POST['SelectCartridgeTechPerson'])){
- $this->cur_dialog= new glpiSelectUser($this->config,$this->dn,"user_cartridge_tech_num");
- }
-
- /* Abort user selection
- */
- $smarty->assign("AbortSelectUser","SelectCartridgeUserCancel");
- $smarty->assign("SaveSelectUser" ,"user_cartridge_tech_num");
- if(isset($_POST['SelectCartridgeUserCancel'])){
- $this->dialog = false;
- $this->addUser ="";
- $this->cur_dialog = false;
- }
-
- /* Start ldap, and get all glpiUsers */
- $ldap = $this->config->get_ldap_link();
- $users = ($this->parent->handle->getUsers());
-
- /* Technical responsible/contact person selected
- */
- if(isset($_GET['act'])&&($_GET['act']=="user_cartridge_tech_num")){
-
- /* Get posted id */
- $id = base64_decode($_GET['id']);
-
- /* Check if user is already created in glpi database */
- if(!in_array($id,$users)){
-
- /* If this user doesn't exists in glpi db, we must create him */
- $ldap->cat($id, array('cn', 'mail', 'telephoneNumber'));
- $atr = $ldap->fetch();
- $tmp = array();
- $use = array( "cn" =>"name",
- "mail" =>"email",
- "telephoneNumber" =>"phone");
-
- /* Create array */
- foreach($use as $gosa => $glpi){
- if(isset($atr[$gosa])){
- $tmp[$glpi]= $atr[$gosa][0];
- }
- }
-
- /* Add this user */
- $this->parent->handle->addUser($tmp,$id);
- }
-
- /* Re-read users */
- $users = ($this->parent->handle->getUsers());
-
- /* Get user */
- $tmp = array_flip($users);
- $id=$tmp[$id];
-
- /* Close dialog and use this user */
- $this->tech_num = $id;
- $this->cur_dialog = false;
- $this->dialog= false;
- }
-
- /* Execute dialog*/
- if($this->cur_dialog){
- $this->cur_dialog->save_object();
- $this->dialog=true;
- $this->cur_dialog->parent = &$this;
- return($this->cur_dialog->execute());
- }else{
- $this->dialog= false;
- }
-
- /* Create matrix with all possible printer types
- */
- $matrix = "";
-
- /* Append manufacturers
- */
- $smarty->assign("PrinterTypeMatrix", $matrix);
-
- $smarty->assign("ManufacturerKeys", array_flip($this->parent->handle->getEnterprises()));
- $smarty->assign("Manufacturers", $this->parent->handle->getEnterprises());
- $smarty->assign("FK_glpi_enterprise", $this->FK_glpi_enterprise);
-
- $smarty->assign("typeKeys", array_flip($this->parent->handle->getCartridgeTypes()));
- $smarty->assign("types", $this->parent->handle->getCartridgeTypes());
- $smarty->assign("type", $this->type);
-
- /* Handle tech person
- Assign name ... to smarty, if set
- */
- if(isset($users[$this->tech_num])){
- $ldap->cat($users[$this->tech_num], array('givenName', 'sn', 'uid'));
- $tr = $ldap->fetch();
- $str = "";
- if(isset($tr['givenName'][0])){ $str .= $tr['givenName'][0]." "; }
- if(isset($tr['sn'][0])) { $str .= $tr['sn'][0]." "; }
- if(isset($tr['uid'][0])){ $str .= "[".$tr['uid'][0]."]"; }
- $smarty->assign("tech_num", $str);
- }else{
- $smarty->assign("tech_num", _("N/A"));
- }
-
-
- $display.= $smarty->fetch(get_template_path('glpiPrinterCartridgesEdit.tpl', TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Check given values */
- function check(){
- /* Call common method to give check the hook */
- $message= plugin::check();
-
- /* Avoid choosing an already used name */
- $types = $this->parent->handle->getCartridgeTypeInformations();
- foreach($types as $type){
- if($type['name'] == $this->name){
- if($type['ID'] != $this->ID){
- $message[]= _("The selected name is already in use.");
- }
- }
- }
- return $message;
- }
-
- /* Save Post data */
- function save_object()
- {
- foreach($this->attributes as $attr){
- if(isset($_POST[$attr])){
- $this->$attr= $_POST[$attr];
- }
- }
-
- /* Get selected checkboxes */
- foreach($_POST as $name => $value){
- if(preg_match("/wasOnPage_/",$name)){
- $id = preg_replace("/wasOnPage_/","",$name);
- if(isset($_POST['UsePrinterType_'.$id])){
- $this->additional_printer[$id]=$id;
- }else{
- if(isset($this->additional_printer[$id])){
- unset($this->additional_printer[$id]);
- }
- }
- }
- }
- }
-
- /* Create / Update database with this new infos */
- function save()
- {
- $tmp = array();
- foreach($this->attributes as $attr){
- $tmp[$attr] = $this-> $attr;
- }
- $types = array();
- $types = $this->additional_printer;
- $types[$this->printer_type]=$this->printer_type;
- $this->parent->handle->Add_UpdateCatrigdeType($tmp,$types);
- }
-
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiSelectUser.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiSelectUser.inc
deleted file mode 100644
index f975cbe5f..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_glpiSelectUser.inc
+++ /dev/null
@@ -1,281 +0,0 @@
-PostVarName = $postvar;
-
- if(!session::is_set('glpi_user_filter')){
- $tmp['users_regex'] = "*";
- $tmp['base'] = $this->config->current['BASE'];
- session::set('glpi_user_filter',$tmp);
- }
-
- $this->ui = get_userinfo();
- }
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- if(isset($_POST['depselect'])){
- session::set('glpi_user_filter', array('base' => $_POST['depselect']));
- }
-
- $filter = session::get('glpi_user_filter');
-
- /* Filter settings, remove double* */
- if(isset($_GET['search'])){
- $filter['users_regex'] = preg_replace("/\*\**/","*",$_GET['search']."*");
- }elseif(isset($_POST['regex'])){
- $filter['users_regex'] = preg_replace("/\*\**/","*",$_POST['regex']);
- }
- if(empty($filter['users_regex'])) {
- $filter = "*";
- }
-
-
- $s_action="";
- /* Test Posts */
- foreach($_POST as $key => $val){
- // Post for delete
- if(preg_match("/dep_back.*/i",$key)){
- $s_action="back";
- }elseif(preg_match("/user_new.*/",$key)){
- $s_action="new";
- }elseif(preg_match("/dep_home.*/i",$key)){
- $s_action="home";
- }
- }
-
- /* Homebutton is posted */
- if($s_action=="home"){
- $filter['base']=(preg_replace("/^[^,]+,/","",$this->ui->dn));
- $filter['base']=(preg_replace("/^[^,]+,/","",$filter['base']));
- }
-
- if($s_action=="root"){
- $filter['base']=($this->config->current['BASE']);
- }
-
-
- /* If Backbutton is Posted */
- if($s_action=="back"){
- $base_back = preg_replace("/^[^,]+,/","",$filter['base']);
- $base_back = convert_department_dn($base_back);
-
- if(isset($this->config->departments[trim($base_back)])){
- $filter['base']= $this->config->departments[trim($base_back)];
- }else{
- $filter['base']= $this->config->departments["/"];
- }
- }
-
- if((isset($_GET['act']))&&($_GET['act']=="dep_open")){
- $entry = base64_decode($_GET['dep_id']);
- $filter['base']= ($this->config->departments[$entry]);
- }
-
- session::set('glpi_user_filter',$filter);
-
- $this->reload();
-
- /* Fill templating stuff */
- $smarty= get_smarty();
- $display= "";
-
- $divlist = new divlist("glpi users");
- $divlist->SetPluginMode();
- $divlist->SetEntriesPerPage(0);
- $divlist->SetHeader(array(
- array("string" => " ", "attach" => "style='text-align:center;width:20px;'"),
- array("string" => _("Users")." / "._("Departments"), "attach" => "style=''"),
- array("string" => _("Use"), "attach" => "style='width:60px;border-right:0px;text-align:right;'" )));
- $linkopen = "%s ";
- foreach($this->departments as $key=> $val){
-
- if(!isset($this->config->departments[trim($key)])){
- $this->config->departments[trim($key)]="";
- }
-
- $non_empty="";
- $keys= str_replace("/","\/",$key);
- foreach($this->config->departments as $keyd=>$vald ){
- if(preg_match("/".$keys."\/.*/",$keyd)){
- $non_empty="full";
- }
- }
-
- $field1 = array("string" => " ", "attach" => "style='text-align:center;width:20px;'");
- $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style=''");
- $field3 = array("string" => " ", "attach" => "style='width:60px;border-right:0px;text-align:right;'");
- $divlist->AddEntry(array($field1,$field2,$field3));
- }
-
- $useruse = "PostVarName."&id=%s'>%s ";
-
- foreach($this->users as $key=>$user){
- $field1 = array("string" => " ", "attach" => "style='text-align:center;width:20px;'");
- $field2 = array("string" => sprintf($useruse,base64_encode($key),$user), "attach" => "style=''");
- $field3 = array("string" => sprintf($useruse,base64_encode($key)," "),
- "attach" => "style='width:60px;border-right:0px;text-align:right;'");
- $divlist->AddEntry(array($field1,$field2,$field3));
-
- }
-
- /* Prepare departments,
- which are shown in the listbox on top of the listbox
- */
-
-
- /* Get all departments within this subtree */
- $glpi_user_filter = session::get('glpi_user_filter');
- $this->base = $glpi_user_filter['base'];
- $options ="";
- $base = $this->config->current['BASE'];
- $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", "users", $base,
- array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
-
- /* Load possible departments */
- $ui= get_userinfo();
- $tdeps= $ui->get_module_departments("users");
- $ids = $this->config->idepartments;
- foreach($deps as $dep){
- if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
- $value = $ids[$dep['dn']];
- if ($this->base == $dep['dn']){
- $options.= "$value ";
- } else {
- $options.= "$value ";
- }
- }
- }
-
- $listhead = "";
-
-
- $filter = session::get('glpi_user_filter');
- $smarty->assign("usershead", $listhead);
- $smarty->assign("users", $divlist->DrawList());
- $smarty->assign("search_image", get_template_path('images/lists/search.png'));
- $smarty->assign("searchu_image", get_template_path('images/lists/search-user.png'));
- $smarty->assign("tree_image", get_template_path('images/lists/search-subtree.png'));
- $smarty->assign("infoimage", get_template_path('images/info_small.png'));
- $smarty->assign("launchimage", get_template_path('images/lists/action.png'));
- $smarty->assign("apply", apply_filter());
- $smarty->assign("alphabet", generate_alphabet());
- $smarty->assign("users_regex", $filter['users_regex']);
-
-
- $display.= $smarty->fetch(get_template_path('glpiSelectUser.tpl',TRUE,dirname(__FILE__)));
- return($display);
- }
-
- /* Save to LDAP */
- function save()
- {
- plugin::save();
-
- /* Optionally execute a command after we're done */
-#$this->handle_post_events($mode);
- }
-
- function reload()
- {
-
- $filter = session::get('glpi_user_filter');
-
- $base = $filter['base'];
- $regex= $filter['users_regex'];
- /* NEW LIST MANAGMENT
- * We also need to search for the departments
- * So we are able to navigate like in konquerer
- */
-
- $res3= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))","users",
- $base, array("ou", "description"), GL_SIZELIMIT | GL_CONVERT);
-
- $this->departments= array();
- $tmp = array();
- foreach ($res3 as $value){
- $tmp[strtolower($value['dn']).$value['dn']]=$value;
- }
- ksort($tmp);
- foreach($tmp as $value){
- if(isset($value["description"][0])){
- $this->departments[$value['dn']]= get_sub_department($value['dn'])." - [".$value["description"][0]."]";
- }else{
- $this->departments[$value['dn']]= get_sub_department($value['dn']);//$value["description"][0];
- }
- }
-
- /* END NEW LIST MANAGMENT
- */
- $ou = get_people_ou();
-
- $res2= get_list("(&(|(cn=$regex)(sn=$regex))(objectClass=person))", "users",
- $ou.$base, array("cn", "sn", "uid", "givenName", "description"),
- GL_SUBSEARCH | GL_SIZELIMIT);
-
- $tmp = array();
-
- foreach($res2 as $val){
- $str = "";
- if(isset($val['givenName'][0])){
- $str .= $val['givenName'][0];
- }
- if(isset($val['sn'][0])){
- $str .= $val['sn'][0];
- }
- if(isset($val['uid'][0])){
- $str .= $val['uid'][0];
- }
-
- $tmp[$str] = $val;
- }
-
- ksort($tmp);
- $this->users = array();
- foreach($tmp as $value){
- if (isset($value["givenName"][0]) && isset($value["sn"][0])){
- $this->users[$value['dn']]= $value["sn"][0].", ".
- $value["givenName"][0].
- " [".$value["uid"][0]."]";
- } else {
- $this->users[$value["dn"]]= "[".$value["uid"][0]."]";
- }
- }
- }
-
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/class_goGlpiServer.inc b/gosa-plugins/glpi/admin/systems/services/glpi/class_goGlpiServer.inc
deleted file mode 100644
index c7b4ab12c..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/class_goGlpiServer.inc
+++ /dev/null
@@ -1,109 +0,0 @@
- "Eins ist toll", "zwei" => "Zwei ist noch besser");
-
- /* This plugin only writes its objectClass */
- var $objectclasses = array("goGlpiServer");
- var $attributes = array("goGlpiAdmin","goGlpiDatabase","goGlpiPassword");
- var $StatusFlag = "goGlpiServerStatus";
-
- /* This class can't be assigned twice so it conflicts with itsself */
- var $conflicts = array("goGlpiServer");
-
- var $DisplayName = "";
- var $dn = NULL;
- var $cn = "";
- var $acl;
-
- var $goGlpiServerStatus ="";
- var $goGlpiAdmin ="";
- var $goGlpiDatabase ="";
- var $goGlpiPassword ="";
- var $view_logged =FALSE;
-
-
- function goGlpiServer(&$config,$dn)
- {
- goService::goService($config,$dn);
- $this->DisplayName = _("Inventory database");
- }
-
-
- function execute()
- {
- if($this->is_account && !$this->view_logged){
- $this->view_logged = TRUE;
- new log("view","server/".get_class($this),$this->dn);
- }
-
- $smarty = get_smarty();
- foreach($this->attributes as $attr){
- $smarty->assign($attr,$this->$attr);
- }
- $tmp = $this->plInfo();
- foreach($tmp['plProvidedAcls'] as $name => $translation ){
- $smarty->assign($name."ACL",$this->getacl($name));
- }
- return($smarty->fetch(get_template_path("goGlpiServer.tpl",TRUE,dirname(__FILE__))));
- }
-
-
- function getListEntry()
- {
- $fields = goService::getListEntry();
- $fields['Message'] = _("Inventory database service");
- #$fields['AllowEdit'] = true;
- return($fields);
- }
-
- function check()
- {
- $message = plugin::check();
- if(empty($this->goGlpiAdmin)){
- $message[]= _("The attribute user is empty or contains invalid characters.");
- }
- if(empty($this->goGlpiDatabase)){
- $message[]= _("The attribute database is empty or contains invalid characters.");
- }
- return($message);
- }
-
-
- function save_object()
- {
- if(isset($_POST['goGlpiServer_posted'])){
- plugin::save_object();
- }
- }
-
- /* Return plugin informations for acl handling */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("Inventory database"),
- "plDescription" => _("Inventory database")." ("._("Services").")" ,
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 93,
- "plSection" => array("administration"),
- "plCategory" => array("server"),
-
- "plProvidedAcls"=> array(
- "start" => _("Start"),
- "stop" => _("Stop"),
- "restart" => _("Restart"),
-
- "goGlpiAdmin" => _("Admin"),
- "goGlpiDatabase" => _("Database"),
- "goGlpiPassword" => _("Password"))
- ));
- }
-
-
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpi.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpi.tpl
deleted file mode 100644
index c35b6bfc9..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpi.tpl
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
-
- {t}Generic{/t}
-
-
- {t}System type{/t}
-
-
-{render acl=$typeACL}
-
- {html_options values=$SystemTypeKeys output=$SystemTypes selected=$type}
-
-{/render}
-{render acl=$typeACL}
- {t}edit{/t}
-
-{/render}
-
-
-
- {t}Operating system{/t}
-
-
-{render acl=$osACL}
-
- {html_options values=$OSKeys output=$OSs selected=$os}
-
-{/render}
-{render acl=$osACL}
- {t}edit{/t}
-
-{/render}
-
-
-
- {t}Manufacturer{/t}
-
-
-{render acl=$FK_glpi_enterpriseACL}
-
- {html_options values=$ManufacturerKeys output=$Manufacturers selected=$FK_glpi_enterprise}
-
-{/render}
-{render acl=$FK_glpi_enterpriseACL}
- {t}edit{/t}
-
-{/render}
-
-
-
-
-
- {t}Contact person{/t}
-
-
- {$contact_num}
-{render acl=$contact_numACL}
- {t}Edit{/t}
-
-{/render}
-
-
-
- {t}Technical responsible{/t}
-
-
- {$tech_num}
-{render acl=$tech_numACL}
- {t}Edit{/t}
-
-{/render}
-
-
-
-
-
-
-
- {t}Comment{/t}
-
-
-
-{render acl=$commentsACL}
-
-{/render}
-
-
-
-
-
-
-
-
-
-
- {t}Installed devices{/t}
-
-
-
-{render acl=$DevicesACL}
-
- {html_options values=$InstalledDeviceKeys output=$InstalledDevices}
-
-{/render}
-{render acl=$DevicesACL}
- {t}Edit{/t}
-
-{/render}
-
-
-
-
-
-
-
- {t}Attachments{/t}
-
-
-
-{render acl=$AttachmentsACL}
- {$AttachmentsDiv}
-{/render}
-{render acl=$AttachmentsACL}
- {msgPool type=addButton}
-
-{/render}
-
-
-
-
-
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiAttachmentEdit.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiAttachmentEdit.tpl
deleted file mode 100644
index 300056b6b..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiAttachmentEdit.tpl
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
{t}Attachment{/t}
-
-
-
-
-
-
-
- {msgPool type=saveButton}
-
- {msgPool type=cancelButton}
-
-
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiAttachmentPool.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiAttachmentPool.tpl
deleted file mode 100644
index 982fe94b9..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiAttachmentPool.tpl
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
- {t}List of attachments{/t}
-
-
-
- {$attachmenthead}
-
-
-
- {$attachments}
-
-
-
-
-
-
-
{image path="{$infoimage}" align="right"}{t}Information{/t}
-
-
-
- {t}This dialog allow you to attach additional objects (like manuals, guides, etc.) to your currently edited computer.{/t}
-
-
-
-
{image path="{$launchimage}" align="right"}{t}Filters{/t}
-
-
-
-
-
-
-
-
-
-
-
- {t}Use{/t}
-
- {msgPool type=cancelButton}
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiDeviceManagement.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiDeviceManagement.tpl
deleted file mode 100644
index 006aaad0f..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiDeviceManagement.tpl
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
- {t}List of devices{/t}
-
-
-
- {$devicehead}
-
-
-
- {$devices}
-
-
-
-
-
-
-
{image path="{$infoimage}" align="right"}{t}Information{/t}
-
-
-
- {t}This dialog allows you to attach a device to your currently edited computer.{/t}
-
-
-
-
{image path="{$launchimage}" align="right"}{t}Filters{/t}
-
-
-
-
-
-
-
-
-
-
-
- {t}Use{/t}
-
- {msgPool type=cancelButton}
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiManufacturer.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiManufacturer.tpl
deleted file mode 100644
index 6a10c9fe1..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiManufacturer.tpl
+++ /dev/null
@@ -1,19 +0,0 @@
-{t}Manage manufacturers{/t}
-
- {html_options values=$ManuKeys output=$Manus}
-
-
-{msgPool type=addButton}
-
-{t}Edit{/t}
-
-{t}Remove{/t}
-
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiManufacturerAdd.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiManufacturerAdd.tpl
deleted file mode 100644
index 52a52dc12..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiManufacturerAdd.tpl
+++ /dev/null
@@ -1,93 +0,0 @@
-{t}Add/Edit manufacturer{/t}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {msgPool type=saveButton}
-
- {t}Close{/t}
-
-
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinter.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinter.tpl
deleted file mode 100644
index b00976822..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinter.tpl
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
-
-
-
- {t}Generic{/t}
-
-
- {t}Printer type{/t}
-
-
-{render acl=$typeACL}
-
- {html_options values=$PrinterTypeKeys output=$PrinterTypes selected=$type}
-
-{/render}
-{render acl=$typeACL}
- {t}edit{/t}
-
-{/render}
-
-
-
- {t}Manufacturer{/t}
-
-
-{render acl=$FKglpienterpriseACL}
-
- {html_options values=$ManufacturerKeys output=$Manufacturers selected=$FK_glpi_enterprise}
-
-{/render}
-{render acl=$FKglpienterpriseACL}
- {t}edit{/t}
-
-{/render}
-
-
-
-
-
-
- {t}Supported interfaces{/t}
-
-
-
-
-
-
-
-
-
-
- {t}Contacts{/t}
-
-
- {t}Technical responsible{/t}
-
-
- {$tech_num}
-{render acl=$tech_numACL}
- {t}Edit{/t}
-
-{/render}
-
-
-
-
- {t}Contact person{/t}
-
-
- {$contact_num}
-{render acl=$contact_numACL}
- {t}Edit{/t}
-
-{/render}
-
-
-
-
-
-
-
- {t}Attachments{/t}
-
-
-
-{render acl=$AttachmentsACL}
- {$AttachmentsDiv}
-{/render}
-{render acl=$AttachmentsACL}
- {msgPool type=addButton}
-
-{/render}
-
-
-
-
-
-
-
-
-
-
-
- {t}Information{/t}
-
-
-
-{render acl=$commentsACL}
-
-{/render}
-
-
-
-
-
-
- {t}Installed cartridges{/t}
-
-
-
-{render acl=$CartridgesACL}
-
- {html_options values=$CartridgeKeys output=$Cartridges}
-
-{/render}
-{render acl=$CartridgesACL}
- {msgPool type=addButton}
-
-{/render}
-{render acl=$CartridgesACL}
- {t}Remove{/t}
-
-{/render}
-
-
-
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinterCartridges.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinterCartridges.tpl
deleted file mode 100644
index 105d1c3cc..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinterCartridges.tpl
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
- {t}List of available cartridge type for this type of printer{/t}
-
-
-
- {$devicehead}
-
-
-
- {$devices}
-
-
-
-
-
-
-
{image path="{$infoimage}" align="right"}{t}Information{/t}
-
-
-
- {t}This dialog allows you to create new types of cartridges, and select one or more types for your printer. Cartridge types depends on the printer type you have selected. For each selected cartridge type there will be a new cartridge created, this allows you to select the same cartridge type for more then one printer.{/t}
-
-
-
-
{image path="{$launchimage}" align="right"}{t}Filters{/t}
-
-
-
-
-
-
-
-
-
-
-
- {t}Use{/t}
-
- {msgPool type=cancelButton}
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl
deleted file mode 100644
index 8e6038e22..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
- {t}Generic{/t}
-
-
- {t}Comments{/t}
-
-
-
- {t}Comment{/t}
-
-
-
-
-
-
-
-
-
- {t}Generic{/t}
-
-
-
- {t}Type{/t}
-
-
-
- {html_options values=$typeKeys output=$types selected=$type}
-
- {t}edit{/t}
-
-
-
-
- {t}Manufacturer{/t}
-
-
-
- {html_options values=$ManufacturerKeys output=$Manufacturers selected=$FK_glpi_enterprise}
-
- {t}edit{/t}
-
-
-
-
- {t}Technical responsible{/t}
-
-
- {$tech_num}
- {t}Choose{/t}
-
-
-
-
-
- {$PrinterTypeMatrix}
-
-
-
-
-
-
-
- {msgPool type=saveButton}
-
- {msgPool type=cancelButton}
-
-
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpiSelectUser.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpiSelectUser.tpl
deleted file mode 100644
index e74627fe6..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpiSelectUser.tpl
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
- {t}List of users{/t}
-
-
-
- {$usershead}
-
-
-
- {$users}
-
-
-
-
-
-
-
{image path="{$infoimage}" align="right"}{t}Information{/t}
-
-
-
- {t}This dialog allows you to select a user as technical responsible person.{/t}
-
-
-
-
{image path="{$launchimage}" align="right"}{t}Filters{/t}
-
-
-
-
-
-
-
-
-
-
-
- {msgPool type=cancelButton}
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_devices.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpi_devices.tpl
deleted file mode 100644
index 8c9275d02..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_devices.tpl
+++ /dev/null
@@ -1,795 +0,0 @@
-{if $device_type=="monitor"}
- {t}Add/Edit monitor{/t}
-
-
-
-
-
-{elseif $device_type=="pci"}
-
- {t}Add/Edit other device{/t}
-
-
-
-
-
-
-
-
-
-
-
- {t}Manufacturer{/t}
-
-
-
- {html_options values=$FK_glpi_enterpriseKeys output=$FK_glpi_enterprises selected=$FK_glpi_enterprise}
-
-
-
-
-
-
-
-
-{elseif $device_type=="power"}
-
- {t}Add/Edit power supply{/t}
-
-
-
-{elseif $device_type=="gfxcard"}
-
- {t}Add/Edit graphic card{/t}
-
-
-
-{elseif $device_type=="control"}
-
- {t}Add/Edit controller{/t}
-
-
-
-
-{elseif $device_type=="drive"}
-
- {t}Add/Edit drive{/t}
-
-
-
-
-{elseif $device_type=="hdd"}
- {t}Add/Edit harddisk{/t}
-
-
-
-
-{elseif $device_type=="ram"}
-
- {t}Add/Edit memory{/t}
-
-
-
-
-{elseif $device_type=="sndcard"}
- {t}Add/Edit sound card{/t}
-
-
-
-{elseif $device_type=="iface"}
- {t}Add/Edit network interface{/t}
-
-
-
-
-{elseif $device_type=="processor"}
- {t}Add/Edit processor{/t}
-
-
-
-
-{elseif $device_type=="moboard"}
- {t}Add/Edit motherboard{/t}
-
-
-
-{elseif $device_type=="case"}
- {t}Add/Edit computer case{/t}
-
-
-
-
-
-
-
-
-
-
-
- {t}Manufacturer{/t}
-
-
-
- {html_options values=$FK_glpi_enterpriseKeys output=$FK_glpi_enterprises selected=$FK_glpi_enterprise}
-
-
-
-
- {t}format{/t}
-
-
-
-
- {html_options values=$formatKeys output=$formats selected=$format}
-
-
-
-
-
-
-
-{/if}
-
-
-
-
-
- {msgPool type=saveButton}
-
- {msgPool type=cancelButton}
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_cartridge_type.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_cartridge_type.tpl
deleted file mode 100644
index ecc025350..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_cartridge_type.tpl
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- {html_options values=$PrinterTypeKeys output=$PrinterTypes}
-
-
- {msgPool type=addButton}
-
- {t}Rename{/t}
-
- {msgPool type=delButton}
-
-
-
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_os.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_os.tpl
deleted file mode 100644
index 2b5571cf5..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_os.tpl
+++ /dev/null
@@ -1,45 +0,0 @@
-{t}Manage OS-types{/t}
-{if $Method == "edit"}
-
-
- {html_options values=$OSKeys output=$OSs}
-
-
- {msgPool type=addButton}
-
- {t}Rename{/t}
-
- {msgPool type=delButton}
-
-
-
-
-
-{else}
-{t}Please enter a new name{/t}
-
-
-
- {t}Rename{/t}
-
- {msgPool type=cancelButton}
-
-
-
-
-{/if}
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_printer_type.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_printer_type.tpl
deleted file mode 100644
index 7c85ddc84..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_printer_type.tpl
+++ /dev/null
@@ -1,46 +0,0 @@
-
-{if $Method == "edit"}
-
- {html_options values=$PrinterTypeKeys output=$PrinterTypes}
-
-
- {msgPool type=addButton}
-
- {t}Rename{/t}
-
- {msgPool type=delButton}
-
-
-
-
-
-
-{else}
-
- {t}Please enter a new name{/t}
-
-
-
- {t}Rename{/t}
-
- {msgPool type=cancelButton}
-
-
-
-
-
-{/if}
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_type.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_type.tpl
deleted file mode 100644
index 23533c0f3..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/glpi_edit_type.tpl
+++ /dev/null
@@ -1,43 +0,0 @@
-{t}Manage System-types{/t}
-{if $Method == "edit"}
-
-
- {html_options values=$SystemTypeKeys output=$SystemTypes}
-
-
- {msgPool type=addButton}
-
- {t}Rename{/t}
-
- {msgPool type=delButton}
-
-
-
-
-
-{else}
-{t}Please enter a new name{/t}
-
-
-
- {t}Rename{/t}
-
- {msgPool type=cancelButton}
-
-
-
-
-{/if}
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/goGlpiServer.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/goGlpiServer.tpl
deleted file mode 100644
index c1d6a899d..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/goGlpiServer.tpl
+++ /dev/null
@@ -1,38 +0,0 @@
-{t}GLPI database information{/t}
-
-
-
-
-
- {msgPool type=saveButton}
-
-
- {msgPool type=cancelButton}
-
-
-
diff --git a/gosa-plugins/glpi/admin/systems/services/glpi/remove_glpi.tpl b/gosa-plugins/glpi/admin/systems/services/glpi/remove_glpi.tpl
deleted file mode 100644
index ae80f8cf1..000000000
--- a/gosa-plugins/glpi/admin/systems/services/glpi/remove_glpi.tpl
+++ /dev/null
@@ -1,20 +0,0 @@
-
-{image path="images/warning.png" align="top"} {t}Warning{/t}
-
-
-
- {$warning}
- {t}Please double check if your really want to do this since there is no way for GOsa to get your data back.{/t}
-
-
-
- {t}Best thing to do before performing this action would be to save the current contents of your MySql database in a file. So - if you've done so - press 'Delete' to continue or 'Cancel' to abort.{/t}
-
-
-
-
- {msgPool type=delButton}
-
- {msgPool type=cancelButton}
-
-
diff --git a/gosa-plugins/glpi/contrib/glpi.ldif b/gosa-plugins/glpi/contrib/glpi.ldif
deleted file mode 100644
index 220116940..000000000
--- a/gosa-plugins/glpi/contrib/glpi.ldif
+++ /dev/null
@@ -1,5 +0,0 @@
-dn: cn=glpi,cn=schema,cn=config
-objectClass: olcSchemaConfig
-cn: glpi
-olcAttributeTypes: ( 1.3.6.1.4.1.22262.1.1.1.4.1 NAME 'glpiAccountLogin' DESC 'glpi Account Login' EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
-olcObjectClasses: ( 1.3.6.1.4.1.22262.1.1.2.4.1 NAME 'glpiAccount' SUP top AUXILIARY DESC 'glpi Account' MAY ( glpiAccountLogin ))
diff --git a/gosa-plugins/glpi/contrib/glpi.schema b/gosa-plugins/glpi/contrib/glpi.schema
deleted file mode 100644
index 6028bfd44..000000000
--- a/gosa-plugins/glpi/contrib/glpi.schema
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-## schema file for OpenLDAP 2.x
-## Schema for storing glpi User Configuration in LDAP
-## OIDs are owned by OpenSides
-##
-#
-# $Id: glpi.schema,v 1.1 2005/11/02 16:48:16 benoit Exp $
-#
-
-attributetype ( 1.3.6.1.4.1.22262.1.1.1.4.1 NAME 'glpiAccountLogin'
- DESC 'glpi Account Login'
- EQUALITY caseIgnoreIA5Match
- SUBSTR caseExactIA5SubstringsMatch
- SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
-#
-# all objectclass
-#
-
-objectclass ( 1.3.6.1.4.1.22262.1.1.2.4.1 NAME 'glpiAccount' SUP top AUXILIARY
- DESC 'glpi Account'
- MAY ( glpiAccountLogin ))
\ No newline at end of file
diff --git a/gosa-plugins/glpi/contrib/glpi.sql b/gosa-plugins/glpi/contrib/glpi.sql
deleted file mode 100644
index a18e3b7d4..000000000
--- a/gosa-plugins/glpi/contrib/glpi.sql
+++ /dev/null
@@ -1,1627 +0,0 @@
-create database glpi;
-use glpi;
-
-CREATE TABLE `glpi_cartridges` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_glpi_cartridges_type` int(11) NOT NULL default '0',
- `FK_glpi_printers` int(11) NOT NULL default '0',
- `date_in` date default NULL,
- `date_use` date default NULL,
- `date_out` date default NULL,
- `pages` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_cartridges_type` (`FK_glpi_cartridges_type`),
- KEY `FK_glpi_printers` (`FK_glpi_printers`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
-
-INSERT INTO `glpi_cartridges` (`ID`, `FK_glpi_cartridges_type`, `FK_glpi_printers`, `date_in`, `date_use`, `date_out`, `pages`) VALUES
-(5, 5, 5, '2006-09-29', '2006-09-29', NULL, 0),
-(4, 5, 5, '2006-09-29', '2006-09-29', NULL, 0);
-
-
-CREATE TABLE `glpi_cartridges_assoc` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_glpi_cartridges_type` int(11) NOT NULL default '0',
- `FK_glpi_type_printer` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `FK_glpi_type_printer` (`FK_glpi_type_printer`,`FK_glpi_cartridges_type`),
- KEY `FK_glpi_cartridges_type` (`FK_glpi_cartridges_type`),
- KEY `FK_glpi_type_printer_2` (`FK_glpi_type_printer`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
-
-
-INSERT INTO `glpi_cartridges_assoc` (`ID`, `FK_glpi_cartridges_type`, `FK_glpi_type_printer`) VALUES
-(1, 1, 1),
-(2, 2, 5),
-(3, 2, 1),
-(4, 3, 13),
-(5, 4, 13),
-(6, 5, 11),
-(7, 5, 10),
-(8, 5, 5),
-(9, 5, 12),
-(10, 5, 2),
-(11, 5, 14),
-(12, 5, 3);
-
-
-
-CREATE TABLE `glpi_cartridges_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `ref` varchar(255) NOT NULL default '',
- `location` int(11) NOT NULL default '0',
- `type` tinyint(4) NOT NULL default '0',
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `tech_num` int(11) default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `comments` text NOT NULL,
- `alarm` tinyint(4) NOT NULL default '10',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `tech_num` (`tech_num`),
- KEY `deleted` (`deleted`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
-
-
-INSERT INTO `glpi_cartridges_type` (`ID`, `name`, `ref`, `location`, `type`, `FK_glpi_enterprise`, `tech_num`, `deleted`, `comments`, `alarm`) VALUES
-(1, 'TestPatrone', '', 0, 1, 8, 0, '', '', 0),
-(2, 'HP_deskjet_7100C', '', 0, 4, 8, 0, '', 'None', 0),
-(3, 'teseter', '', 0, 3, 12, 0, '', '', 0),
-(4, 'teseter2', '', 0, 3, 12, 0, '', '', 0),
-(5, 'Epson Stylus Nuclear Color', '', 0, 3, 12, 0, '', 'Uranium green.\r\n', 0);
-
-
-
-CREATE TABLE `glpi_computer_device` (
- `ID` int(11) NOT NULL auto_increment,
- `specificity` varchar(250) NOT NULL default '',
- `device_type` tinyint(4) NOT NULL default '0',
- `FK_device` int(11) NOT NULL default '0',
- `FK_computers` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `device_type` (`device_type`),
- KEY `device_type_2` (`device_type`,`FK_device`),
- KEY `FK_computers` (`FK_computers`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=136 ;
-
-
-INSERT INTO `glpi_computer_device` (`ID`, `specificity`, `device_type`, `FK_device`, `FK_computers`) VALUES
-(87, '', 1, 1, 1),
-(92, '', 1, 1, 13),
-(133, '', 1, 1, 17),
-(120, '', 1, 1, 23),
-(122, '', 1, 1, 24),
-(135, '', 1, 1, 19),
-(132, '', 1, 1, 29);
-
-
-
-CREATE TABLE `glpi_computers` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(200) NOT NULL default '',
- `serial` varchar(200) NOT NULL default '',
- `otherserial` varchar(200) NOT NULL default '',
- `contact` varchar(90) NOT NULL default '',
- `contact_num` varchar(90) NOT NULL default '',
- `tech_num` int(11) NOT NULL default '0',
- `comments` text NOT NULL,
- `date_mod` datetime default NULL,
- `os` int(11) default NULL,
- `location` int(11) default NULL,
- `domain` int(11) NOT NULL default '0',
- `network` int(11) NOT NULL default '0',
- `model` int(11) default NULL,
- `type` int(11) default NULL,
- `is_template` enum('0','1') NOT NULL default '0',
- `tplname` varchar(200) default NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- PRIMARY KEY (`ID`),
- KEY `location` (`location`),
- KEY `os` (`os`),
- KEY `type` (`model`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `deleted` (`deleted`),
- KEY `is_template` (`is_template`),
- KEY `date_mod` (`date_mod`),
- KEY `tech_num` (`tech_num`),
- KEY `type_2` (`type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=41 ;
-
-
-INSERT INTO `glpi_computers` (`ID`, `name`, `serial`, `otherserial`, `contact`, `contact_num`, `tech_num`, `comments`, `date_mod`, `os`, `location`, `domain`, `network`, `model`, `type`, `is_template`, `tplname`, `FK_glpi_enterprise`, `deleted`) VALUES
-(1, 'cn=asterisk,ou=servers,ou=systems,dc=gonicus,dc=de', '', '', '', '1', 1, '', '2006-03-08 12:12:04', 5, 0, 0, 0, 0, 27, '0', NULL, 8, 'N'),
-(4, 'cn=pyramid,ou=terminals,ou=systems,dc=gonicus,dc=de', '', '', '', '', 0, '', '2006-03-08 07:05:07', 5, 0, 0, 0, 0, 21, '0', NULL, 8, 'N'),
-(5, 'cn=ctu03,ou=phones,ou=systems,dc=gonicus,dc=de', '', '', '', '', 0, '', '2006-02-10 08:58:15', 6, 0, 0, 0, 0, 21, '0', NULL, 8, 'N'),
-(6, 'cn=fax,ou=servers,ou=systems,dc=gonicus,dc=de', '', '', '', '', 3, '', '2006-03-01 10:04:06', 6, 0, 0, 0, 0, 21, '0', NULL, 12, 'N'),
-(19, 'cn=cl1--6665,ou=workstations,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '18', 0, '', '2007-01-30 08:03:00', 5, 0, 0, 0, 0, 27, '0', NULL, 16, 'N'),
-(11, 'cn=vserver-04f,ou=servers,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '', 0, '', '2006-05-12 07:51:32', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(13, 'cn=GetraenkeHalter,ou=netdevices,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '6', 7, 'tester', '2006-06-21 12:34:54', 7, 0, 0, 0, 0, 28, '0', NULL, 16, 'N'),
-(18, 'cn=cl1--151,ou=workstations,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '', 0, 'tester', '2007-01-30 07:55:33', 18, 0, 0, 0, 0, 18, '0', NULL, 16, 'N'),
-(16, 'cn=ctu153,ou=phones,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '8', 9, 'Tester für den Comment \\\\\\n \r\ntester', '2006-06-20 09:24:35', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(17, 'cn=cl1--157,ou=workstations,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '', 0, 'asdfasdf \n\r\nasdf', '2007-01-30 07:01:41', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(20, 'cn=vserver-01.intranet.gonicus.de,ou=servers,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '', 0, 'sda', '2007-05-21 06:53:29', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(21, 'cn=vserver-01.intranet.gonicus.de,ou=servers,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '', 0, 'sda', '2007-05-21 06:53:29', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(23, 'cn=kohlenhydrate,ou=servers,ou=systems,ou=keks,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '11', 11, 'eg', '2006-09-29 09:37:30', 7, 0, 0, 0, 0, 26, '0', NULL, 8, 'N'),
-(24, 'cn=Mineralstoffe,ou=workstations,ou=systems,ou=keks,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '', 0, 'dfsaaaaaaaaaaaaaaaaaaaaaaaaaaa', '2006-10-18 11:21:03', 7, 0, 0, 0, 0, 27, '0', NULL, 16, 'N'),
-(25, 'cn=Ammoniumcarbonat,ou=phones,ou=systems,ou=keks,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '11', 11, 'asdf', '2006-09-29 10:34:32', 7, 0, 0, 0, 0, 21, '0', NULL, 16, 'N'),
-(26, 'cn=Kakaomasse,ou=netdevices,ou=systems,ou=keks,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '11', 11, 'ikk', '2006-09-29 10:41:12', 7, 0, 0, 0, 0, 27, '0', NULL, 8, 'N'),
-(27, 'cn=afs-22,ou=servers,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '', 0, '-ö', '2006-11-30 13:31:50', 7, 0, 0, 0, 0, 26, '0', NULL, 16, 'N'),
-(28, 'cn=Netzwerkkomponente,ou=netdevices,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '11', 0, '', '2006-11-29 14:43:00', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(29, 'cn=vserver-04.intranet.gonicus.de,ou=servers,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '', 0, 'asdfasdf', '2006-11-30 12:48:22', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(30, 'cn=okulele,ou=servers,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '21', 21, 'No comment', '2007-01-23 14:20:48', 11, 0, 0, 0, 0, 21, '0', NULL, 16, 'N'),
-(31, 'cn=keksesindlecker45,ou=workstations,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '', 0, 'sdfsdfaasdf', '2007-01-16 08:26:35', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N'),
-(32, 'cn=phoneTesterAparatz,ou=phones,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '', 0, '', '2007-01-15 08:21:39', 5, 0, 0, 0, 0, 18, '0', NULL, 12, 'N'),
-(39, 'cn=terminal,ou=terminals,ou=systems,o=Landeshauptstadt München,c=de', '', '', '', '', 0, '', '2007-05-21 07:02:42', 6, 0, 0, 0, 0, 28, '0', NULL, 12, 'N');
-
-
-
-CREATE TABLE `glpi_config` (
- `ID` int(11) NOT NULL auto_increment,
- `ldap_port` varchar(10) NOT NULL default '389',
- `num_of_events` varchar(200) NOT NULL default '',
- `jobs_at_login` varchar(200) NOT NULL default '',
- `sendexpire` varchar(200) NOT NULL default '',
- `cut` varchar(200) NOT NULL default '',
- `expire_events` varchar(200) NOT NULL default '',
- `list_limit` varchar(200) NOT NULL default '',
- `version` varchar(200) NOT NULL default '',
- `logotxt` varchar(200) NOT NULL default '',
- `root_doc` varchar(200) NOT NULL default '',
- `event_loglevel` varchar(200) NOT NULL default '',
- `mailing` varchar(200) NOT NULL default '',
- `imap_auth_server` varchar(200) NOT NULL default '',
- `imap_host` varchar(200) NOT NULL default '',
- `ldap_host` varchar(200) NOT NULL default '',
- `ldap_basedn` varchar(200) NOT NULL default '',
- `ldap_rootdn` varchar(200) NOT NULL default '',
- `ldap_pass` varchar(200) NOT NULL default '',
- `admin_email` varchar(200) NOT NULL default '',
- `mailing_resa_all_admin` varchar(200) NOT NULL default '0',
- `mailing_resa_user` varchar(200) NOT NULL default '1',
- `mailing_resa_admin` varchar(200) NOT NULL default '1',
- `mailing_signature` varchar(200) NOT NULL default '',
- `mailing_new_admin` varchar(200) NOT NULL default '',
- `mailing_followup_admin` varchar(200) NOT NULL default '',
- `mailing_finish_admin` varchar(200) NOT NULL default '',
- `mailing_new_all_admin` varchar(200) NOT NULL default '',
- `mailing_followup_all_admin` varchar(200) NOT NULL default '',
- `mailing_finish_all_admin` varchar(200) NOT NULL default '',
- `mailing_new_all_normal` varchar(200) NOT NULL default '',
- `mailing_followup_all_normal` varchar(200) NOT NULL default '',
- `mailing_finish_all_normal` varchar(200) NOT NULL default '',
- `mailing_new_attrib` varchar(200) NOT NULL default '',
- `mailing_followup_attrib` varchar(200) NOT NULL default '',
- `mailing_finish_attrib` varchar(200) NOT NULL default '',
- `mailing_new_user` varchar(200) NOT NULL default '',
- `mailing_followup_user` varchar(200) NOT NULL default '',
- `mailing_finish_user` varchar(200) NOT NULL default '',
- `ldap_field_name` varchar(200) NOT NULL default '',
- `ldap_field_email` varchar(200) NOT NULL default '',
- `ldap_field_location` varchar(200) NOT NULL default '',
- `ldap_field_realname` varchar(200) NOT NULL default '',
- `ldap_field_phone` varchar(200) NOT NULL default '',
- `ldap_condition` varchar(255) NOT NULL default '',
- `permit_helpdesk` varchar(200) NOT NULL default '',
- `default_language` varchar(255) NOT NULL default 'french',
- `priority_1` varchar(200) NOT NULL default '#fff2f2',
- `priority_2` varchar(200) NOT NULL default '#ffe0e0',
- `priority_3` varchar(200) NOT NULL default '#ffcece',
- `priority_4` varchar(200) NOT NULL default '#ffbfbf',
- `priority_5` varchar(200) NOT NULL default '#ffadad',
- `date_fiscale` date NOT NULL default '2005-12-31',
- `cartridges_alarm` int(11) NOT NULL default '10',
- `cas_host` varchar(255) NOT NULL default '',
- `cas_port` varchar(255) NOT NULL default '',
- `cas_uri` varchar(255) NOT NULL default '',
- `planning_begin` time NOT NULL default '08:00:00',
- `planning_end` time NOT NULL default '20:00:00',
- `utf8_conv` int(11) NOT NULL default '0',
- `auto_assign` enum('0','1') NOT NULL default '0',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-
-
-INSERT INTO `glpi_config` (`ID`, `ldap_port`, `num_of_events`, `jobs_at_login`, `sendexpire`, `cut`, `expire_events`, `list_limit`, `version`, `logotxt`, `root_doc`, `event_loglevel`, `mailing`, `imap_auth_server`, `imap_host`, `ldap_host`, `ldap_basedn`, `ldap_rootdn`, `ldap_pass`, `admin_email`, `mailing_resa_all_admin`, `mailing_resa_user`, `mailing_resa_admin`, `mailing_signature`, `mailing_new_admin`, `mailing_followup_admin`, `mailing_finish_admin`, `mailing_new_all_admin`, `mailing_followup_all_admin`, `mailing_finish_all_admin`, `mailing_new_all_normal`, `mailing_followup_all_normal`, `mailing_finish_all_normal`, `mailing_new_attrib`, `mailing_followup_attrib`, `mailing_finish_attrib`, `mailing_new_user`, `mailing_followup_user`, `mailing_finish_user`, `ldap_field_name`, `ldap_field_email`, `ldap_field_location`, `ldap_field_realname`, `ldap_field_phone`, `ldap_condition`, `permit_helpdesk`, `default_language`, `priority_1`, `priority_2`, `priority_3`, `priority_4`, `priority_5`, `date_fiscale`, `cartridges_alarm`, `cas_host`, `cas_port`, `cas_uri`, `planning_begin`, `planning_end`, `utf8_conv`, `auto_assign`) VALUES
-(1, '389', '10', '1', '1', '80', '30', '15', ' 0.6', 'GLPI powered by indepnet', '/glpi', '5', '0', '', '', '', '', '', '', 'admsys@xxxxx.fr', '0', '1', '1', 'SIGNATURE', '1', '1', '1', '1', '0', '0', '0', '0', '0', '0', '0', '0', '1', '1', '1', 'uid', 'mail', 'physicaldeliveryofficename', 'cn', 'telephonenumber', '', '', 'english', '#fff2f2', '#ffe0e0', '#ffcece', '#ffbfbf', '#ffadad', '2005-12-31', 10, '', '', '', '08:00:00', '20:00:00', 0, '0');
-
-
-
-CREATE TABLE `glpi_connect_wire` (
- `ID` int(11) NOT NULL auto_increment,
- `end1` int(11) NOT NULL default '0',
- `end2` int(11) NOT NULL default '0',
- `type` tinyint(4) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `end1_1` (`end1`,`end2`,`type`),
- KEY `end1` (`end1`),
- KEY `end2` (`end2`),
- KEY `type` (`type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
-
-
-INSERT INTO `glpi_connect_wire` (`ID`, `end1`, `end2`, `type`) VALUES
-(1, 1, 1, 4),
-(5, 2, 17, 4),
-(4, 2, 13, 4),
-(7, 2, 23, 4),
-(8, 2, 24, 4),
-(9, 2, 29, 4);
-
-
-
-CREATE TABLE `glpi_consumables` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_glpi_consumables_type` int(11) default NULL,
- `date_in` date default NULL,
- `date_out` date default NULL,
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_cartridges_type` (`FK_glpi_consumables_type`),
- KEY `date_in` (`date_in`),
- KEY `date_out` (`date_out`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_consumables_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `ref` varchar(255) NOT NULL default '',
- `location` int(11) NOT NULL default '0',
- `type` tinyint(4) NOT NULL default '0',
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `tech_num` int(11) default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `comments` text NOT NULL,
- `alarm` tinyint(4) NOT NULL default '10',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `tech_num` (`tech_num`),
- KEY `deleted` (`deleted`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_contact_enterprise` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_enterprise` int(11) NOT NULL default '0',
- `FK_contact` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `FK_enterprise` (`FK_enterprise`,`FK_contact`),
- KEY `FK_enterprise_2` (`FK_enterprise`),
- KEY `FK_contact` (`FK_contact`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_contacts` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `phone` varchar(30) NOT NULL default '',
- `phone2` varchar(30) NOT NULL default '',
- `fax` varchar(30) NOT NULL default '',
- `email` varchar(255) NOT NULL default '',
- `type` tinyint(4) NOT NULL default '1',
- `comments` text NOT NULL,
- `deleted` enum('Y','N') NOT NULL default 'N',
- PRIMARY KEY (`ID`),
- KEY `deleted` (`deleted`),
- KEY `type` (`type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_contract_device` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_contract` int(11) NOT NULL default '0',
- `FK_device` int(11) NOT NULL default '0',
- `device_type` tinyint(4) NOT NULL default '0',
- `is_template` enum('0','1') NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `FK_contract` (`FK_contract`,`FK_device`,`device_type`),
- KEY `FK_contract_2` (`FK_contract`),
- KEY `FK_device` (`FK_device`,`device_type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_contract_enterprise` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_enterprise` int(11) NOT NULL default '0',
- `FK_contract` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `FK_enterprise` (`FK_enterprise`,`FK_contract`),
- KEY `FK_enterprise_2` (`FK_enterprise`),
- KEY `FK_contract` (`FK_contract`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_contracts` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `num` varchar(255) NOT NULL default '',
- `cost` float NOT NULL default '0',
- `contract_type` int(11) NOT NULL default '0',
- `begin_date` date default NULL,
- `duration` tinyint(4) NOT NULL default '0',
- `notice` tinyint(4) NOT NULL default '0',
- `periodicity` tinyint(4) NOT NULL default '0',
- `facturation` tinyint(4) NOT NULL default '0',
- `bill_type` int(11) NOT NULL default '0',
- `comments` text NOT NULL,
- `compta_num` varchar(255) NOT NULL default '',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `week_begin_hour` time NOT NULL default '00:00:00',
- `week_end_hour` time NOT NULL default '00:00:00',
- `saturday_begin_hour` time NOT NULL default '00:00:00',
- `saturday_end_hour` time NOT NULL default '00:00:00',
- `saturday` enum('Y','N') NOT NULL default 'N',
- `monday_begin_hour` time NOT NULL default '00:00:00',
- `monday_end_hour` time NOT NULL default '00:00:00',
- `monday` enum('Y','N') NOT NULL default 'N',
- `device_countmax` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `contract_type` (`contract_type`),
- KEY `begin_date` (`begin_date`),
- KEY `bill_type` (`bill_type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_case` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(255) NOT NULL default '',
- `format` enum('Grand','Moyen','Micro') NOT NULL default 'Moyen',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_control` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(255) NOT NULL default '',
- `interface` enum('IDE','SATA','SCSI','USB') NOT NULL default 'IDE',
- `raid` enum('Y','N') NOT NULL default 'Y',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_drive` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(255) NOT NULL default '',
- `is_writer` enum('Y','N') NOT NULL default 'Y',
- `speed` varchar(30) NOT NULL default '',
- `interface` enum('IDE','SATA','SCSI') NOT NULL default 'IDE',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_gfxcard` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(120) NOT NULL default '',
- `ram` varchar(10) NOT NULL default '',
- `interface` enum('AGP','PCI','PCI-X','Other') NOT NULL default 'AGP',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_hdd` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(100) NOT NULL default '',
- `rpm` varchar(20) NOT NULL default '',
- `interface` int(11) NOT NULL default '0',
- `cache` varchar(20) NOT NULL default '',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_iface` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(120) NOT NULL default '',
- `bandwidth` varchar(20) NOT NULL default '',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_moboard` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(100) NOT NULL default '',
- `chipset` varchar(120) NOT NULL default '',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-
-
-INSERT INTO `glpi_device_moboard` (`ID`, `designation`, `chipset`, `comment`, `FK_glpi_enterprise`, `specif_default`) VALUES
-(1, 'NVidia Nforce 9', 'Nforce', 'kein', 2, '');
-
-
-
-CREATE TABLE `glpi_device_pci` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(255) NOT NULL default '',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_power` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(255) NOT NULL default '',
- `power` varchar(20) NOT NULL default '',
- `atx` enum('Y','N') NOT NULL default 'Y',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_processor` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(120) NOT NULL default '',
- `frequence` int(11) NOT NULL default '0',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_ram` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(100) NOT NULL default '',
- `frequence` varchar(8) NOT NULL default '',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- `type` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-
-
-
-CREATE TABLE `glpi_device_sndcard` (
- `ID` int(11) NOT NULL auto_increment,
- `designation` varchar(120) NOT NULL default '',
- `type` varchar(100) NOT NULL default '',
- `comment` text NOT NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `specif_default` varchar(250) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-
-
-
-CREATE TABLE `glpi_doc_device` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_doc` int(11) NOT NULL default '0',
- `FK_device` int(11) NOT NULL default '0',
- `device_type` tinyint(4) NOT NULL default '0',
- `is_template` enum('0','1') NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `FK_doc` (`FK_doc`,`FK_device`,`device_type`),
- KEY `FK_doc_2` (`FK_doc`),
- KEY `FK_device` (`FK_device`,`device_type`),
- KEY `is_template` (`is_template`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=55 ;
-
-
-INSERT INTO `glpi_doc_device` (`ID`, `FK_doc`, `FK_device`, `device_type`, `is_template`) VALUES
-(17, 1, 1, 1, '0'),
-(8, 1, 2, 1, '0'),
-(50, 1, 1, 3, '0'),
-(51, 4, 5, 3, '0'),
-(52, 1, 7, 3, '0'),
-(53, 4, 7, 3, '0'),
-(54, 1, 8, 3, '0');
-
-
-
-CREATE TABLE `glpi_docs` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `filename` varchar(255) NOT NULL default '',
- `rubrique` int(11) NOT NULL default '0',
- `mime` varchar(30) NOT NULL default '',
- `date_mod` datetime NOT NULL default '0000-00-00 00:00:00',
- `comment` text NOT NULL,
- `deleted` enum('Y','N') NOT NULL default 'N',
- `link` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `rubrique` (`rubrique`),
- KEY `deleted` (`deleted`),
- KEY `date_mod` (`date_mod`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
-
-
-INSERT INTO `glpi_docs` (`ID`, `name`, `filename`, `rubrique`, `mime`, `date_mod`, `comment`, `deleted`, `link`) VALUES
-(1, 'Anleitung', 'class_mail-methods-kolab.inc', 0, 'application/octet-stream', '2006-01-25 11:23:16', 'leeer', 'N', ''),
-(4, 'Hardware handbuch', 'sieve-php.inc', 0, 'application/octet-stream', '2006-09-29 11:01:52', 'Steht alles drin.\r\n42.342 Seiten', 'N', '');
-
-
-
-CREATE TABLE `glpi_dropdown_cartridge_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;
-
-
-INSERT INTO `glpi_dropdown_cartridge_type` (`ID`, `name`) VALUES
-(3, 'Color blue'),
-(4, 'Color combination RGB'),
-(6, 'Laser Cartridge Red'),
-(8, 'Laser Cartridge Green'),
-(9, 'Laser Cartridge combination RGB'),
-(10, 'Color Black'),
-(11, 'Color Black /& Rgb');
-
-
-
-CREATE TABLE `glpi_dropdown_consumable_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_contact_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_contract_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
-
-
-INSERT INTO `glpi_dropdown_contract_type` (`ID`, `name`) VALUES
-(1, 'Prêt'),
-(2, 'Location'),
-(3, 'Leasing'),
-(4, 'Assurances'),
-(5, 'Maintenance Hardware'),
-(6, 'Maintenance Software'),
-(7, 'Prestation');
-
-
-
-CREATE TABLE `glpi_dropdown_domain` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_enttype` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_firmware` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_hdd_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
-
-
-INSERT INTO `glpi_dropdown_hdd_type` (`ID`, `name`) VALUES
-(1, 'IDE'),
-(2, 'SATA'),
-(3, 'SCSI');
-
-
-
-CREATE TABLE `glpi_dropdown_iface` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_kbcategories` (
- `ID` int(11) NOT NULL auto_increment,
- `parentID` int(11) NOT NULL default '0',
- `name` varchar(255) NOT NULL default '',
- `completename` text NOT NULL,
- PRIMARY KEY (`ID`),
- UNIQUE KEY `parentID_2` (`parentID`,`name`),
- KEY `parentID` (`parentID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_locations` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `parentID` int(11) NOT NULL default '0',
- `completename` text NOT NULL,
- PRIMARY KEY (`ID`),
- UNIQUE KEY `name` (`name`,`parentID`),
- KEY `parentID` (`parentID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-INSERT INTO `glpi_dropdown_locations` (`ID`, `name`, `parentID`, `completename`) VALUES
-(1, 'lala', 0, 'chk'),
-(2, 'ldala', 1, 'chacka');
-
-
-
-CREATE TABLE `glpi_dropdown_model` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_netpoint` (
- `ID` int(11) NOT NULL auto_increment,
- `location` int(11) NOT NULL default '0',
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `location` (`location`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_network` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_os` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=21 ;
-
-
-INSERT INTO `glpi_dropdown_os` (`ID`, `name`) VALUES
-(5, 'Windows 3.1'),
-(6, 'Debian Sarge'),
-(7, 'Debian Woody'),
-(11, 'Windows 98 se'),
-(10, 'Debian SID'),
-(14, 'Windows Server 2003'),
-(18, 'Windows 99');
-
-
-
-CREATE TABLE `glpi_dropdown_ram_type` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
-
-
-INSERT INTO `glpi_dropdown_ram_type` (`ID`, `name`) VALUES
-(1, 'EDO'),
-(2, 'DDR'),
-(3, 'SDRAM'),
-(4, 'SDRAM-2');
-
-
-
-CREATE TABLE `glpi_dropdown_rubdocs` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_state` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-INSERT INTO `glpi_dropdown_state` (`ID`, `name`) VALUES
-(1, 'asdf'),
-(2, 'asdfasdf');
-
-
-
-CREATE TABLE `glpi_dropdown_tracking_category` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_dropdown_vlan` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_enterprises` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(50) NOT NULL default '',
- `type` int(11) NOT NULL default '0',
- `address` text NOT NULL,
- `website` varchar(100) NOT NULL default '',
- `phonenumber` varchar(20) NOT NULL default '',
- `comments` text NOT NULL,
- `deleted` enum('Y','N') NOT NULL default 'N',
- `fax` varchar(255) NOT NULL default '',
- `email` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `deleted` (`deleted`),
- KEY `type` (`type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=18 ;
-
-
-INSERT INTO `glpi_enterprises` (`ID`, `name`, `type`, `address`, `website`, `phonenumber`, `comments`, `deleted`, `fax`, `email`) VALUES
-(8, 'Microsoft', 0, 'Neverlandranche', 'www.google.de', '0001', 'No comment', '', '02', '02@01.00'),
-(12, 'Cherry', 0, '3 Tasten höher als ''n'' 4 te links.', 'http://cherry_oder_so_aehnlich.com', 'N/A', 'N/A', '', 'N/A', 'N/A@N/A.N/A'),
-(16, 'GONICUS GmbH', 0, '', 'http://www.gonicus.de', '', 'fg', '', '', '');
-
-
-
-CREATE TABLE `glpi_event_log` (
- `ID` int(11) NOT NULL auto_increment,
- `item` int(11) NOT NULL default '0',
- `itemtype` varchar(20) NOT NULL default '',
- `date` datetime NOT NULL default '0000-00-00 00:00:00',
- `service` varchar(20) default NULL,
- `level` tinyint(4) NOT NULL default '0',
- `message` text NOT NULL,
- PRIMARY KEY (`ID`),
- KEY `comp` (`item`),
- KEY `date` (`date`),
- KEY `itemtype` (`itemtype`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=105 ;
-
-
-INSERT INTO `glpi_event_log` (`ID`, `item`, `itemtype`, `date`, `service`, `level`, `message`) VALUES
-(90, 0, 'dropdowns', '2006-01-18 14:58:40', 'setup', 5, 'glpi added a value to a dropdown.'),
-(89, 0, 'dropdowns', '2006-01-18 14:58:31', 'setup', 5, 'glpi added a value to a dropdown.'),
-(88, 0, 'dropdowns', '2006-01-18 14:58:22', 'setup', 5, 'glpi added a value to a dropdown.'),
-(87, 0, 'dropdowns', '2006-01-18 14:58:07', 'setup', 5, 'glpi added a value to a dropdown.'),
-(86, 0, 'dropdowns', '2006-01-18 14:56:55', 'setup', 5, 'glpi added a value to a dropdown.'),
-(85, 0, 'dropdowns', '2006-01-18 14:56:40', 'setup', 5, 'glpi added a value to a dropdown.'),
-(84, 0, 'dropdowns', '2006-01-18 14:56:28', 'setup', 5, 'glpi added a value to a dropdown.'),
-(83, 0, 'dropdowns', '2006-01-18 14:56:12', 'setup', 5, 'glpi added a value to a dropdown.'),
-(82, 1, 'cartridges', '2006-01-18 14:55:35', 'inventory', 4, 'glpi added item HP Deskjet 80000 Green.'),
-(81, -1, 'system', '2006-01-18 14:49:46', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(80, -1, 'system', '2006-01-18 14:47:02', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(79, -1, 'system', '2006-01-17 12:23:40', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(78, 4, 'documents', '2006-01-17 09:51:47', 'document', 4, 'glpi associate device.'),
-(77, 4, 'documents', '2006-01-17 09:51:38', 'document', 4, 'glpi associate device.'),
-(76, 4, 'printers', '2006-01-17 09:41:51', 'inventory', 4, 'glpi updated item.'),
-(75, 0, 'dropdowns', '2006-01-17 09:41:28', 'setup', 5, 'glpi added a value to a dropdown.'),
-(74, 0, 'dropdowns', '2006-01-17 09:41:14', 'setup', 5, 'glpi added a value to a dropdown.'),
-(73, 0, 'dropdowns', '2006-01-17 09:41:03', 'setup', 5, 'glpi added a value to a dropdown.'),
-(72, 4, 'printers', '2006-01-17 08:56:20', 'inventory', 4, 'glpi added Name.'),
-(71, -1, 'system', '2006-01-17 08:48:04', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(31, -1, 'system', '2005-12-23 09:38:42', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(32, 26, 'computers', '2005-12-23 09:39:05', 'inventory', 4, 'glpi deleted item.'),
-(33, 0, 'Devices', '2005-12-23 14:53:31', 'inventory', 4, 'glpi added gzt.'),
-(34, -1, 'system', '2006-01-03 07:49:38', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(35, -1, 'system', '2006-01-03 08:16:04', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(36, 11, 'networking', '2006-01-03 08:30:08', 'inventory', 4, 'glpi added item name .'),
-(37, 2, 'Devices', '2006-01-03 12:07:52', 'inventory', 4, 'glpi updated item.'),
-(38, 0, 'Devices', '2006-01-03 13:12:53', 'inventory', 4, 'glpi added asdfasdf.'),
-(39, 0, 'Devices', '2006-01-03 13:27:36', 'inventory', 4, 'glpi added amd.'),
-(40, 0, 'Devices', '2006-01-03 13:33:00', 'inventory', 4, 'glpi added Duschaube.'),
-(41, 0, 'Devices', '2006-01-03 13:46:11', 'inventory', 4, 'glpi added name.'),
-(42, 0, 'Devices', '2006-01-03 14:03:42', 'inventory', 4, 'glpi added Hdd.'),
-(43, 0, 'Devices', '2006-01-03 14:42:23', 'inventory', 4, 'glpi added name.'),
-(44, 0, 'Devices', '2006-01-03 14:59:12', 'inventory', 4, 'glpi added Controllers.'),
-(45, 0, 'Devices', '2006-01-03 15:06:59', 'inventory', 4, 'glpi added gfxcard.'),
-(46, 0, 'Devices', '2006-01-03 15:18:33', 'inventory', 4, 'glpi added power.'),
-(47, 0, 'Devices', '2006-01-03 15:22:32', 'inventory', 4, 'glpi added pheripgherals.'),
-(48, -1, 'system', '2006-01-04 08:15:26', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(49, 2, 'Devices', '2006-01-04 08:16:05', 'inventory', 4, 'glpi updated item.'),
-(50, 26, 'computers', '2006-01-04 08:22:28', 'inventory', 4, 'glpi Unlinked a device from computer 26.'),
-(51, -1, 'system', '2006-01-04 11:23:06', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(52, 26, 'documents', '2006-01-04 11:23:47', 'document', 4, 'glpi associate device.'),
-(53, 2, 'documents', '2006-01-04 11:25:40', 'document', 4, 'glpi added item tester.'),
-(54, 3, 'documents', '2006-01-04 11:26:09', 'document', 4, 'glpi added item .'),
-(55, 4, 'documents', '2006-01-04 11:26:29', 'document', 4, 'glpi added item .'),
-(56, -1, 'system', '2006-01-04 15:22:51', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(57, 3, 'documents', '2006-01-04 15:41:50', 'document', 4, 'glpi updated item.'),
-(58, -1, 'system', '2006-01-05 10:17:59', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(59, 26, 'documents', '2006-01-05 10:18:52', 'document', 4, 'glpi associate device.'),
-(60, -1, 'system', '2006-01-06 08:24:59', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(61, -1, 'system', '2006-01-06 09:21:47', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(62, -1, 'system', '2006-01-06 10:03:43', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(63, 0, 'dropdowns', '2006-01-06 10:33:17', 'setup', 5, 'glpi added a value to a dropdown.'),
-(64, 0, 'dropdowns', '2006-01-06 10:41:57', 'setup', 5, 'glpi added a value to a dropdown.'),
-(65, 0, 'dropdowns', '2006-01-06 10:42:12', 'setup', 5, 'glpi added a value to a dropdown.'),
-(66, 5, 'monitors', '2006-01-06 14:38:56', 'inventory', 4, 'glpi added asdfasdf.'),
-(67, 27, 'computers', '2006-01-06 14:39:39', 'inventory', 5, 'glpi connected item.'),
-(68, -1, 'system', '2006-01-16 12:08:10', 'login', 1, 'failed login: root'),
-(69, -1, 'system', '2006-01-16 12:08:23', 'login', 1, 'failed login: admin'),
-(70, -1, 'system', '2006-01-16 12:08:35', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(91, 0, 'dropdowns', '2006-01-18 14:58:57', 'setup', 5, 'glpi added a value to a dropdown.'),
-(92, 0, 'dropdowns', '2006-01-18 14:59:08', 'setup', 5, 'glpi added a value to a dropdown.'),
-(93, 0, 'dropdowns', '2006-01-18 14:59:21', 'setup', 5, 'glpi added a value to a dropdown.'),
-(94, 1, 'cartridges', '2006-01-18 15:00:07', 'inventory', 4, 'glpi updated item.'),
-(95, 1, 'cartridges', '2006-01-18 15:02:10', 'inventory', 4, 'glpi added a cartridge.'),
-(96, 1, 'cartridges', '2006-01-18 15:03:19', 'inventory', 4, 'glpi added a cartridge.'),
-(97, 1, 'cartridges', '2006-01-18 15:31:39', 'inventory', 5, 'glpi installed cartridge.'),
-(98, -1, 'system', '2006-01-19 08:33:27', 'login', 3, 'glpi logged in from 10.3.64.43.'),
-(99, 1, 'cartridges', '2006-01-19 08:34:32', 'inventory', 4, 'glpi added 17 cartridge.'),
-(100, 0, 'infocom', '2006-01-19 08:34:54', 'financial', 4, 'glpi added infocoms.'),
-(101, 1, 'cartridges', '2006-01-19 10:21:27', 'inventory', 4, 'glpi updated item.'),
-(102, 1, 'cartridges', '2006-01-19 10:21:33', 'inventory', 4, 'glpi added 1 cartridge.'),
-(103, 2, 'cartridges', '2006-01-19 10:22:45', 'inventory', 4, 'glpi added item Laserjet3.'),
-(104, 2, 'cartridges', '2006-01-19 10:23:16', 'inventory', 4, 'glpi updated item.');
-
-
-
-CREATE TABLE `glpi_followups` (
- `ID` int(11) NOT NULL auto_increment,
- `tracking` int(11) default NULL,
- `date` datetime default NULL,
- `author` int(11) NOT NULL default '0',
- `contents` text,
- PRIMARY KEY (`ID`),
- KEY `tracking` (`tracking`),
- KEY `author` (`author`),
- KEY `date` (`date`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_infocoms` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_device` int(11) NOT NULL default '0',
- `device_type` tinyint(4) NOT NULL default '0',
- `buy_date` date NOT NULL default '0000-00-00',
- `use_date` date NOT NULL default '0000-00-00',
- `warranty_duration` tinyint(4) NOT NULL default '0',
- `warranty_info` varchar(255) NOT NULL default '',
- `FK_enterprise` int(11) default NULL,
- `num_commande` varchar(50) NOT NULL default '',
- `bon_livraison` varchar(50) NOT NULL default '',
- `num_immo` varchar(50) NOT NULL default '',
- `value` float NOT NULL default '0',
- `warranty_value` float default NULL,
- `amort_time` tinyint(4) NOT NULL default '0',
- `amort_type` varchar(20) NOT NULL default '',
- `amort_coeff` float NOT NULL default '0',
- `comments` text NOT NULL,
- `facture` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `FK_device` (`FK_device`,`device_type`),
- KEY `FK_enterprise` (`FK_enterprise`),
- KEY `buy_date` (`buy_date`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-
-
-INSERT INTO `glpi_infocoms` (`ID`, `FK_device`, `device_type`, `buy_date`, `use_date`, `warranty_duration`, `warranty_info`, `FK_enterprise`, `num_commande`, `bon_livraison`, `num_immo`, `value`, `warranty_value`, `amort_time`, `amort_type`, `amort_coeff`, `comments`, `facture`) VALUES
-(1, 10, 19, '0000-00-00', '0000-00-00', 0, '', NULL, '', '', '', 0, NULL, 0, '', 0, '', '');
-
-
-
-CREATE TABLE `glpi_inst_software` (
- `ID` int(11) NOT NULL auto_increment,
- `cID` int(11) NOT NULL default '0',
- `license` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `cID` (`cID`),
- KEY `sID` (`license`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_kbitems` (
- `ID` int(11) NOT NULL auto_increment,
- `categoryID` int(11) NOT NULL default '0',
- `question` text NOT NULL,
- `answer` text NOT NULL,
- `faq` enum('yes','no') NOT NULL default 'no',
- PRIMARY KEY (`ID`),
- KEY `categoryID` (`categoryID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_licenses` (
- `ID` int(15) NOT NULL auto_increment,
- `sID` int(15) NOT NULL default '0',
- `serial` varchar(255) NOT NULL default '',
- `expire` date default NULL,
- `oem` enum('N','Y') NOT NULL default 'N',
- `oem_computer` int(11) NOT NULL default '0',
- `buy` enum('Y','N') NOT NULL default 'Y',
- PRIMARY KEY (`ID`),
- KEY `sID` (`sID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_links` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_links_device` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_links` int(11) NOT NULL default '0',
- `device_type` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `device_type_2` (`device_type`,`FK_links`),
- KEY `device_type` (`device_type`),
- KEY `FK_links` (`FK_links`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_monitors` (
- `ID` int(10) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `date_mod` datetime NOT NULL default '0000-00-00 00:00:00',
- `contact` varchar(255) NOT NULL default '',
- `contact_num` varchar(255) NOT NULL default '',
- `tech_num` int(11) NOT NULL default '0',
- `comments` text NOT NULL,
- `serial` varchar(255) NOT NULL default '',
- `otherserial` varchar(255) NOT NULL default '',
- `size` int(3) NOT NULL default '0',
- `flags_micro` tinyint(4) NOT NULL default '0',
- `flags_speaker` tinyint(4) NOT NULL default '0',
- `flags_subd` tinyint(4) NOT NULL default '0',
- `flags_bnc` tinyint(4) NOT NULL default '0',
- `location` int(11) default NULL,
- `type` int(11) default NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `is_global` enum('0','1') NOT NULL default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `is_template` enum('0','1') NOT NULL default '0',
- `tplname` varchar(255) default NULL,
- PRIMARY KEY (`ID`),
- KEY `ID` (`ID`),
- KEY `type` (`type`),
- KEY `location` (`location`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `deleted` (`deleted`),
- KEY `is_template` (`is_template`),
- KEY `tech_num` (`tech_num`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-INSERT INTO `glpi_monitors` (`ID`, `name`, `date_mod`, `contact`, `contact_num`, `tech_num`, `comments`, `serial`, `otherserial`, `size`, `flags_micro`, `flags_speaker`, `flags_subd`, `flags_bnc`, `location`, `type`, `FK_glpi_enterprise`, `is_global`, `deleted`, `is_template`, `tplname`) VALUES
-(2, 'asdfasdf', '0000-00-00 00:00:00', '', '', 0, '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '');
-
-
-
-CREATE TABLE `glpi_networking` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(30) NOT NULL default '',
- `ram` varchar(10) NOT NULL default '',
- `serial` varchar(50) NOT NULL default '',
- `otherserial` varchar(50) NOT NULL default '',
- `contact` varchar(30) NOT NULL default '',
- `contact_num` varchar(30) NOT NULL default '',
- `tech_num` int(11) NOT NULL default '0',
- `date_mod` datetime NOT NULL default '0000-00-00 00:00:00',
- `comments` text NOT NULL,
- `location` int(11) default NULL,
- `domain` int(11) NOT NULL default '0',
- `network` int(11) NOT NULL default '0',
- `type` int(11) default NULL,
- `firmware` int(11) default NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `is_template` enum('0','1') NOT NULL default '0',
- `tplname` varchar(255) default NULL,
- `ifmac` varchar(30) NOT NULL default '',
- `ifaddr` varchar(30) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `location` (`location`),
- KEY `type` (`type`),
- KEY `firmware` (`firmware`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `deleted` (`deleted`),
- KEY `is_template` (`is_template`),
- KEY `tech_num` (`tech_num`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
-
-
-INSERT INTO `glpi_networking` (`ID`, `name`, `ram`, `serial`, `otherserial`, `contact`, `contact_num`, `tech_num`, `date_mod`, `comments`, `location`, `domain`, `network`, `type`, `firmware`, `FK_glpi_enterprise`, `deleted`, `is_template`, `tplname`, `ifmac`, `ifaddr`) VALUES
-(10, '', '', '', '', '', '', 0, '0000-00-00 00:00:00', '', NULL, 0, 0, NULL, NULL, 0, 'N', '1', 'Blank Template', '', ''),
-(11, '', '', '', '', '', '', 0, '2006-01-03 08:30:08', '', 0, 0, 0, 0, 0, 0, 'N', '0', NULL, '', '');
-
-
-
-CREATE TABLE `glpi_networking_ports` (
- `ID` int(11) NOT NULL auto_increment,
- `on_device` int(11) NOT NULL default '0',
- `device_type` tinyint(4) NOT NULL default '0',
- `logical_number` int(11) NOT NULL default '0',
- `name` char(30) NOT NULL default '',
- `ifaddr` char(30) NOT NULL default '',
- `ifmac` char(30) NOT NULL default '',
- `iface` int(11) default NULL,
- `netpoint` int(11) default NULL,
- PRIMARY KEY (`ID`),
- KEY `on_device` (`on_device`,`device_type`),
- KEY `netpoint` (`netpoint`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_networking_vlan` (
- `ID` int(11) NOT NULL auto_increment,
- `FK_port` int(11) NOT NULL default '0',
- `FK_vlan` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `FK_port_2` (`FK_port`,`FK_vlan`),
- KEY `FK_port` (`FK_port`),
- KEY `FK_vlan` (`FK_vlan`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_networking_wire` (
- `ID` int(11) NOT NULL auto_increment,
- `end1` int(11) NOT NULL default '0',
- `end2` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `end1_1` (`end1`,`end2`),
- KEY `end1` (`end1`),
- KEY `end2` (`end2`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_peripherals` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `date_mod` datetime NOT NULL default '0000-00-00 00:00:00',
- `contact` varchar(255) NOT NULL default '',
- `contact_num` varchar(255) NOT NULL default '',
- `tech_num` int(11) NOT NULL default '0',
- `comments` text NOT NULL,
- `serial` varchar(255) NOT NULL default '',
- `otherserial` varchar(255) NOT NULL default '',
- `location` int(11) NOT NULL default '0',
- `type` int(11) NOT NULL default '0',
- `brand` varchar(255) NOT NULL default '',
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `is_global` enum('0','1') NOT NULL default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `is_template` enum('0','1') NOT NULL default '0',
- `tplname` varchar(255) default NULL,
- PRIMARY KEY (`ID`),
- KEY `type` (`type`),
- KEY `location` (`location`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `deleted` (`deleted`),
- KEY `is_template` (`is_template`),
- KEY `tech_num` (`tech_num`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-
-
-INSERT INTO `glpi_peripherals` (`ID`, `name`, `date_mod`, `contact`, `contact_num`, `tech_num`, `comments`, `serial`, `otherserial`, `location`, `type`, `brand`, `FK_glpi_enterprise`, `is_global`, `deleted`, `is_template`, `tplname`) VALUES
-(1, '', '0000-00-00 00:00:00', '', '', 0, '', '', '', 0, 0, '', 0, '0', 'N', '1', 'Blank Template'),
-(2, 'gf5200', '2005-12-13 09:34:32', 'Herr Herr', '0231', 4, 'f', '45875486468', '4554', 0, 0, 'GC', 1, '0', 'N', '0', NULL);
-
-
-
-CREATE TABLE `glpi_printers` (
- `ID` int(10) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `date_mod` datetime NOT NULL default '0000-00-00 00:00:00',
- `contact` varchar(255) NOT NULL default '',
- `contact_num` varchar(255) NOT NULL default '',
- `tech_num` int(11) NOT NULL default '0',
- `serial` varchar(255) NOT NULL default '',
- `otherserial` varchar(255) NOT NULL default '',
- `flags_serial` tinyint(4) NOT NULL default '0',
- `flags_par` tinyint(4) NOT NULL default '0',
- `flags_usb` tinyint(4) NOT NULL default '0',
- `comments` text NOT NULL,
- `ramSize` varchar(6) NOT NULL default '',
- `location` int(11) default NULL,
- `domain` int(11) NOT NULL default '0',
- `network` int(11) NOT NULL default '0',
- `type` int(11) default NULL,
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `is_template` enum('0','1') NOT NULL default '0',
- `tplname` varchar(255) default NULL,
- `initial_pages` varchar(30) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `id` (`ID`),
- KEY `location` (`location`),
- KEY `type` (`type`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `deleted` (`deleted`),
- KEY `is_template` (`is_template`),
- KEY `tech_num` (`tech_num`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
-
-
-INSERT INTO `glpi_printers` (`ID`, `name`, `date_mod`, `contact`, `contact_num`, `tech_num`, `serial`, `otherserial`, `flags_serial`, `flags_par`, `flags_usb`, `comments`, `ramSize`, `location`, `domain`, `network`, `type`, `FK_glpi_enterprise`, `deleted`, `is_template`, `tplname`, `initial_pages`) VALUES
-(1, 'cn=demohost,ou=printers,ou=systems,dc=gonicus,dc=de', '2006-02-01 12:48:33', '', '', 0, '', '', 0, 0, 0, '', '0', 0, 0, 0, 2, 8, 'N', '0', NULL, '0'),
-(2, 'cn=drucker4,ou=printers,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '2006-09-19 09:49:33', '', '', 0, '', '', 0, 0, 0, '', '0', 0, 0, 0, 3, 12, 'N', '0', NULL, '0'),
-(3, 'cn=drucker6,ou=printers,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '2006-11-29 14:53:41', '', '', 0, '', '', 0, 0, 0, '', '0', 0, 0, 0, 3, 12, 'N', '0', NULL, '0'),
-(4, 'cn=Fettsäuren,ou=printers,ou=systems,ou=keks,ou=DasTestDep,o=Landeshauptstadt München,c=de', '2006-09-28 09:17:45', '', '', 0, '', '', 1, 1, 1, '', '0', 0, 0, 0, 3, 12, 'N', '0', NULL, '0'),
-(5, 'cn=Brennwert,ou=printers,ou=systems,ou=keks,ou=DasTestDep,o=Landeshauptstadt München,c=de', '2006-09-29 11:02:10', '', '', 0, '', '', 1, 1, 1, 'dfsaaaaaaaaaaaaaaaaa', '0', 0, 0, 0, 3, 12, 'N', '0', NULL, '0'),
-(7, 'cn=atz23,ou=printers,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '2006-11-29 10:19:48', '', '', 19, '', '', 1, 1, 1, 'ursssszzzzzzzzzzzzzzzzzzzzzzzzzzzzzz', '0', 0, 0, 0, 3, 12, 'N', '0', NULL, '0'),
-(8, 'cn=drucker2,ou=printers,ou=systems,ou=DasTestDep,o=Landeshauptstadt München,c=de', '2006-11-29 10:25:26', '', '', 0, '', '', 1, 1, 1, 'test', '0', 0, 0, 0, 3, 12, 'N', '0', NULL, '0');
-
-
-
-CREATE TABLE `glpi_repair_item` (
- `ID` int(11) NOT NULL auto_increment,
- `device_type` tinyint(4) NOT NULL default '0',
- `id_device` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `device_type` (`device_type`),
- KEY `device_type_2` (`device_type`,`id_device`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_reservation_item` (
- `ID` int(11) NOT NULL auto_increment,
- `device_type` tinyint(4) NOT NULL default '0',
- `id_device` int(11) NOT NULL default '0',
- `comments` text NOT NULL,
- PRIMARY KEY (`ID`),
- KEY `device_type` (`device_type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-
-
-INSERT INTO `glpi_reservation_item` (`ID`, `device_type`, `id_device`, `comments`) VALUES
-(1, 1, 20, '');
-
-
-
-CREATE TABLE `glpi_reservation_resa` (
- `ID` bigint(20) NOT NULL auto_increment,
- `id_item` int(11) NOT NULL default '0',
- `begin` datetime NOT NULL default '0000-00-00 00:00:00',
- `end` datetime NOT NULL default '0000-00-00 00:00:00',
- `id_user` int(11) NOT NULL default '0',
- `comment` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`),
- KEY `id_item` (`id_item`),
- KEY `id_user` (`id_user`),
- KEY `begin` (`begin`),
- KEY `end` (`end`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_software` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(200) NOT NULL default '',
- `version` varchar(20) NOT NULL default '',
- `comments` text,
- `location` int(11) default NULL,
- `tech_num` int(11) NOT NULL default '0',
- `platform` int(11) default NULL,
- `is_update` enum('N','Y') NOT NULL default 'N',
- `update_software` int(11) NOT NULL default '-1',
- `FK_glpi_enterprise` int(11) NOT NULL default '0',
- `deleted` enum('Y','N') NOT NULL default 'N',
- `is_template` enum('0','1') NOT NULL default '0',
- `tplname` varchar(255) default NULL,
- `date_mod` datetime default NULL,
- PRIMARY KEY (`ID`),
- KEY `platform` (`platform`),
- KEY `location` (`location`),
- KEY `FK_glpi_enterprise` (`FK_glpi_enterprise`),
- KEY `deleted` (`deleted`),
- KEY `is_template` (`is_template`),
- KEY `date_mod` (`date_mod`),
- KEY `tech_num` (`tech_num`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
-
-
-INSERT INTO `glpi_software` (`ID`, `name`, `version`, `comments`, `location`, `tech_num`, `platform`, `is_update`, `update_software`, `FK_glpi_enterprise`, `deleted`, `is_template`, `tplname`, `date_mod`) VALUES
-(6, '', '', NULL, NULL, 0, NULL, 'N', -1, 0, 'N', '1', 'Blank Template', NULL);
-
-
-
-CREATE TABLE `glpi_state_item` (
- `ID` int(11) NOT NULL auto_increment,
- `device_type` tinyint(4) NOT NULL default '0',
- `id_device` int(11) NOT NULL default '0',
- `state` int(11) default '1',
- `is_template` enum('0','1') NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `device_type` (`device_type`),
- KEY `device_type_2` (`device_type`,`id_device`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_tracking` (
- `ID` int(11) NOT NULL auto_increment,
- `date` datetime default NULL,
- `closedate` datetime NOT NULL default '0000-00-00 00:00:00',
- `status` enum('new','old') default NULL,
- `author` int(11) NOT NULL default '0',
- `assign` int(11) NOT NULL default '0',
- `assign_type` tinyint(4) NOT NULL default '0',
- `device_type` int(11) NOT NULL default '1',
- `computer` int(11) default NULL,
- `contents` text,
- `priority` tinyint(4) NOT NULL default '1',
- `is_group` enum('no','yes') NOT NULL default 'no',
- `uemail` varchar(100) default NULL,
- `emailupdates` varchar(4) default NULL,
- `realtime` float NOT NULL default '0',
- `category` int(11) NOT NULL default '0',
- PRIMARY KEY (`ID`),
- KEY `computer` (`computer`),
- KEY `author` (`author`),
- KEY `assign` (`assign`),
- KEY `date` (`date`),
- KEY `closedate` (`closedate`),
- KEY `status` (`status`),
- KEY `category` (`category`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_tracking_planning` (
- `ID` bigint(20) NOT NULL auto_increment,
- `id_tracking` int(11) NOT NULL default '0',
- `id_assign` int(11) NOT NULL default '0',
- `begin` datetime NOT NULL default '0000-00-00 00:00:00',
- `end` datetime NOT NULL default '0000-00-00 00:00:00',
- PRIMARY KEY (`ID`),
- KEY `id_tracking` (`id_tracking`),
- KEY `begin` (`begin`),
- KEY `end` (`end`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_type_computers` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=30 ;
-
-
-INSERT INTO `glpi_type_computers` (`ID`, `name`) VALUES
-(26, 'SuperDupfer'),
-(27, 'Server'),
-(18, 'System tester'),
-(19, 'Windows workstation'),
-(21, 'Network device'),
-(28, 'Microcontroller');
-
-
-
-CREATE TABLE `glpi_type_docs` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) NOT NULL default '',
- `ext` varchar(10) NOT NULL default '',
- `icon` varchar(255) NOT NULL default '',
- `mime` varchar(100) NOT NULL default '',
- `upload` enum('Y','N') NOT NULL default 'Y',
- `date_mod` datetime default NULL,
- PRIMARY KEY (`ID`),
- UNIQUE KEY `extension` (`ext`),
- KEY `upload` (`upload`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=54 ;
-
-
-INSERT INTO `glpi_type_docs` (`ID`, `name`, `ext`, `icon`, `mime`, `upload`, `date_mod`) VALUES
-(1, 'JPEG', 'jpg', 'jpg-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(2, 'PNG', 'png', 'png-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(3, 'GIF', 'gif', 'gif-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(4, 'BMP', 'bmp', 'bmp-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(5, 'Photoshop', 'psd', 'psd-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(6, 'TIFF', 'tif', 'tif-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(7, 'AIFF', 'aiff', 'aiff-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(8, 'Windows Media', 'asf', 'asf-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(9, 'Windows Media', 'avi', 'avi-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(44, 'C source', 'c', '', '', 'Y', '2004-12-13 19:47:22'),
-(27, 'RealAudio', 'rm', 'rm-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(16, 'Midi', 'mid', 'mid-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(17, 'QuickTime', 'mov', 'mov-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(18, 'MP3', 'mp3', 'mp3-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(19, 'MPEG', 'mpg', 'mpg-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(20, 'Ogg Vorbis', 'ogg', 'ogg-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(24, 'QuickTime', 'qt', 'qt-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(10, 'BZip', 'bz2', 'bz2-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(25, 'RealAudio', 'ra', 'ra-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(26, 'RealAudio', 'ram', 'ram-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(11, 'Word', 'doc', 'doc-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(12, 'DjVu', 'djvu', '', '', 'Y', '2004-12-13 19:47:21'),
-(42, 'MNG', 'mng', '', '', 'Y', '2004-12-13 19:47:22'),
-(13, 'PostScript', 'eps', 'ps-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(14, 'GZ', 'gz', 'gz-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(37, 'WAV', 'wav', 'wav-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(15, 'HTML', 'html', 'html-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(34, 'Flash', 'swf', '', '', 'Y', '2004-12-13 19:47:22'),
-(21, 'PDF', 'pdf', 'pdf-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(22, 'PowerPoint', 'ppt', 'ppt-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(23, 'PostScript', 'ps', 'ps-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(40, 'Windows Media', 'wmv', '', '', 'Y', '2004-12-13 19:47:22'),
-(28, 'RTF', 'rtf', 'rtf-dist.png', '', 'Y', '2004-12-13 19:47:21'),
-(29, 'StarOffice', 'sdd', 'sdd-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(30, 'StarOffice', 'sdw', 'sdw-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(31, 'Stuffit', 'sit', 'sit-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(43, 'Adobe Illustrator', 'ai', 'ai-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(32, 'OpenOffice Impress', 'sxi', 'sxi-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(33, 'OpenOffice', 'sxw', 'sxw-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(46, 'DVI', 'dvi', 'dvi-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(35, 'TGZ', 'tgz', 'tgz-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(36, 'texte', 'txt', 'txt-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(49, 'RedHat/Mandrake/SuSE', 'rpm', 'rpm-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(38, 'Excel', 'xls', 'xls-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(39, 'XML', 'xml', 'xml-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(41, 'Zip', 'zip', 'zip-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(45, 'Debian', 'deb', 'deb-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(47, 'C header', 'h', '', '', 'Y', '2004-12-13 19:47:22'),
-(48, 'Pascal', 'pas', '', '', 'Y', '2004-12-13 19:47:22'),
-(50, 'OpenOffice Calc', 'sxc', 'sxc-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(51, 'LaTeX', 'tex', 'tex-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(52, 'GIMP multi-layer', 'xcf', 'xcf-dist.png', '', 'Y', '2004-12-13 19:47:22'),
-(53, 'JPEG', 'jpeg', 'jpg-dist.png', '', 'Y', '2005-03-07 22:23:17');
-
-
-
-CREATE TABLE `glpi_type_monitors` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-
-
-INSERT INTO `glpi_type_monitors` (`ID`, `name`) VALUES
-(1, 'testoe');
-
-
-
-CREATE TABLE `glpi_type_networking` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_type_peripherals` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
-
-
-
-
-CREATE TABLE `glpi_type_printers` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(255) default NULL,
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
-
-
-INSERT INTO `glpi_type_printers` (`ID`, `name`) VALUES
-(2, 'Tintenstrahl'),
-(3, 'Farb Laser'),
-(5, 'Not known'),
-(6, 'Nadeldrucker Farbe'),
-(10, 'Nadeldrucker'),
-(11, 'Laser'),
-(12, 'Photodrucker A3'),
-(14, 'Tintentrahl');
-
-
-
-CREATE TABLE `glpi_users` (
- `ID` int(11) NOT NULL auto_increment,
- `name` varchar(80) NOT NULL default '',
- `password` varchar(80) NOT NULL default '',
- `password_md5` varchar(80) NOT NULL default '',
- `email` varchar(80) NOT NULL default '',
- `phone` varchar(100) default NULL,
- `type` enum('normal','admin','post-only','super-admin') NOT NULL default 'normal',
- `realname` varchar(255) NOT NULL default '',
- `can_assign_job` enum('yes','no') NOT NULL default 'no',
- `location` int(11) default NULL,
- `tracking_order` enum('yes','no') NOT NULL default 'no',
- `language` varchar(255) NOT NULL default '',
- PRIMARY KEY (`ID`),
- UNIQUE KEY `name` (`name`),
- KEY `type` (`type`),
- KEY `name_2` (`name`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
-
-
-INSERT INTO `glpi_users` (`ID`, `name`, `password`, `password_md5`, `email`, `phone`, `type`, `realname`, `can_assign_job`, `location`, `tracking_order`, `language`) VALUES
-(1, 'cn=GOsa main administrator admin,ou=people,dc=gonicus,dc=de', '', '', 'asdfasdf@asdfasdf.de', '333333333', 'normal', '', 'no', NULL, 'no', ''),
-(2, 'cn=Getester Hainz,ou=people,dc=gonicus,dc=de', '', '', 'gtest@blafasel.org', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(3, 'cn=adff dendnen,ou=people,dc=gonicus,dc=de', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(4, 'cn=tttttttttttt testttttttttttttttttt,ou=people,ou=Diesisteinelangeabteilung,ou=', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(5, 'cn=asdff33 asdf333,ou=people,ou=tester,ou=Vertrieb,dc=gonicus,dc=de', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(6, 'cn=Florian Schiessl,ou=people,o=Landeshauptstadt München,c=de', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(7, 'cn=blub blab,ou=people,o=Landeshauptstadt München,c=de', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(8, 'cn=Florian test,ou=people,o=Landeshauptstadt München,c=de', '', '', '', '233-92742', 'normal', '', 'no', NULL, 'no', ''),
-(9, 'uid=pppppp,ou=people,o=Landeshauptstadt München,c=de', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(10, 'cn=acltest2 acltest2,ou=people,ou=checkTheFAIStuff,ou=DasTestDep,o=Landeshauptst', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(11, 'cn=acltest acltest,ou=people,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', 'acltest@gonicus.de', '123123', 'normal', '', 'no', NULL, 'no', ''),
-(12, 'cn=Max Mustermann,ou=people,ou=PrinterLosesMember,ou=DasTestDep,o=Landeshauptsta', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(13, 'cn=Susanne Neuhaus,ou=people,ou=PrinterLosesMember,ou=DasTestDep,o=Landeshauptst', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(14, '', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(15, 'cn=Florian Meier,ou=people,ou=PrinterLosesMember,ou=DasTestDep,o=Landeshauptstad', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(16, 'cn=abtielung abtielung,ou=people,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '7890', 'normal', '', 'no', NULL, 'no', ''),
-(17, 'cn=Franz Keller,ou=people,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', 'ableis@gonicus.de', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(18, 'cn=Jan Wenzel,ou=people,o=Landeshauptstadt München,c=de', '', '', '', NULL, 'normal', '', 'no', NULL, 'no', ''),
-(19, 'cn=acl2 acl2,ou=people,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', '', '22222222222222', 'normal', '', 'no', NULL, 'no', ''),
-(20, 'cn=a11 a11,ou=people,ou=DasTestDep,o=Landeshauptstadt München,c=de', '', '', 'a11@gonicus.de', '311112', 'normal', '', 'no', NULL, 'no', ''),
-(21, 'cn=Admin Admin,ou=people,o=Landeshauptstadt München,c=de', '', '', 'ableis@gonicus.de', '1234', 'normal', '', 'no', NULL, 'no', '');
-
diff --git a/gosa-plugins/glpi/help/guide.xml b/gosa-plugins/glpi/help/guide.xml
deleted file mode 100644
index e69de29bb..000000000
diff --git a/gosa-plugins/glpi/html/images/crossref.png b/gosa-plugins/glpi/html/images/crossref.png
deleted file mode 100644
index ec2ed7888..000000000
Binary files a/gosa-plugins/glpi/html/images/crossref.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/drives.png b/gosa-plugins/glpi/html/images/drives.png
deleted file mode 100644
index 9cc127ee1..000000000
Binary files a/gosa-plugins/glpi/html/images/drives.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/gfx_hardware.png b/gosa-plugins/glpi/html/images/gfx_hardware.png
deleted file mode 100644
index af9f6f744..000000000
Binary files a/gosa-plugins/glpi/html/images/gfx_hardware.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/glpi_device.png b/gosa-plugins/glpi/html/images/glpi_device.png
deleted file mode 100644
index 7ef47b3bd..000000000
Binary files a/gosa-plugins/glpi/html/images/glpi_device.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/harddisk.png b/gosa-plugins/glpi/html/images/harddisk.png
deleted file mode 100644
index 7e8d7017f..000000000
Binary files a/gosa-plugins/glpi/html/images/harddisk.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/hardware.png b/gosa-plugins/glpi/html/images/hardware.png
deleted file mode 100644
index 0ac401c6f..000000000
Binary files a/gosa-plugins/glpi/html/images/hardware.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/mainboard.png b/gosa-plugins/glpi/html/images/mainboard.png
deleted file mode 100644
index e6fc3407d..000000000
Binary files a/gosa-plugins/glpi/html/images/mainboard.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/net_hardware.png b/gosa-plugins/glpi/html/images/net_hardware.png
deleted file mode 100644
index 72567f6ae..000000000
Binary files a/gosa-plugins/glpi/html/images/net_hardware.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/new_attachment.png b/gosa-plugins/glpi/html/images/new_attachment.png
deleted file mode 100644
index 9a88da967..000000000
Binary files a/gosa-plugins/glpi/html/images/new_attachment.png and /dev/null differ
diff --git a/gosa-plugins/glpi/html/images/zip.png b/gosa-plugins/glpi/html/images/zip.png
deleted file mode 100644
index af23ddfaa..000000000
Binary files a/gosa-plugins/glpi/html/images/zip.png and /dev/null differ
diff --git a/gosa-plugins/glpi/locale/de/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/de/LC_MESSAGES/messages.po
deleted file mode 100644
index 22152dfdd..000000000
--- a/gosa-plugins/glpi/locale/de/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1205 +0,0 @@
-# translation of messages.po to Deutsch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-#
-# Alfred Schroeder , 2004.
-# Cajus Pollmeier , 2004, 2005, 2006.
-# Jan Wenzel , 2004,2005, 2008.
-# Stefan Koehler , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2008-04-03 16:07+0200\n"
-"Last-Translator: Jan Wenzel \n"
-"Language-Team: Deutsch \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "Benutzer"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "Abteilungen"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr "Benutzen"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr "verwenden"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "Gehe zur Wurzel-Abteilung"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "Wurzel"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "Eine Abteilung nach oben"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr "Auf"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "Gehe zur Abteilung des Benutzers"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr "Heimat"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr "Liste neu laden"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr "Ãbertragen"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "Basis"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "Aktualisieren"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-msgid "GLPI database information"
-msgstr "Informationen der GLPI-Datenbank"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr "Protokoll-DB Benutzer"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "Passwort"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr "Datenbank"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr "Umbenennen"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr "Schliessen"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr "Bitte geben Sie einen neuen Namen ein"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr "Anhang"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "Name"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr "Kommentar"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr "Datei"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr "Hochladen"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "Status"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr "Dateiname"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr "MIME-Typ"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr "Kann diesen Eintrag nicht entfernen, da er noch benutzt wird."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr "N/A"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr "Der angegebene Name wird bereits verwendet."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-msgid "cartridge"
-msgstr "Patrone"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-"Sie können diesen Patronentyp nicht entfernen, er wird noch von folgendem(n) "
-"Drucker(n) verwendet: '%s'"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr "Patronen"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "Aktion"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "Entfernen"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr "Neuer Monitor"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr "M"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr "Hersteller hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr "Website"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "Adresse"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "Fax"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "Email"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr "Kommentare"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr "Interner Fehler: Kann Gerät von Typ '%s' nicht anlegen."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-msgid "glpi device"
-msgstr "GLPI-Gerät"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr "Kann Objektnamen nicht erkennen."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-"Sie können dieses Gerät nicht entfernen, es wird noch von folgendem(n) System"
-"(en) verwendet: '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr "Geräte"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "Aktionen"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr "Neues Mainboard"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "MB"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr "Neuer Prozessor"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr "P"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr "Neues Gehäuse"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr "C"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr "Neues Netzwerk-Interface"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr "NI"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr "Neuer Arbeitsspeicher"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr "R"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr "Neue Festplatte"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr "HDD"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr "Neues Laufwerk"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr "D"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr "Neuer Controller"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr "CS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr "Neue Grafikkarte"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr "GC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr "Neue Soundkarte"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr "SC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr "Neues Netzteil"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr "PS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr "Neues allgemeines Gerät"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr "OC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr "Bitte geben Sie einen gültigen Namen für dieses Gerät an."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr "Der angegebene Gerätename wird bereits verwendet."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "keine"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr "keine"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr "Andere"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "Allgemein"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr "Druckertyp"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "Bearbeiten"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr "Hersteller"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr "Unterstützte Schnittstellen"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr "Seriell"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr "Parallel"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr "USB"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr "Kontakte"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr "Technischer Kontakt"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr "Kontaktperson"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr "Anhänge"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "Information"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr "Installierte Patronen"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "Entfernen"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr "Monitor hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr "MonitorgröÃe"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr "Zoll"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr "Integriertes Mikrofon"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr "ja"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr "nein"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr "Integrierte Lautsprecher"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr "Sub-D"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr "BNC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr "Seriennumner"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr "Zusätzliche Seriennummer"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr "Allgemeines Gerät hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr "Netzteil hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr "ATX"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr "Strom"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr "Grafikkarte hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr "Interface"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr "RAM"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr "Controller hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "GröÃe"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr "Laufwerk hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr "Taktung"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr "Beschreibbar"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr "Festplatte hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr "Upm"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr "Cache"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Typ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr "Speicher hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr "Frequenz"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr "Soundkarte hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr "Netzwerk-Interface hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr "MAC-Adresse"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "Bandbreite"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr "Prozessor hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr "Frequenz"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr "Standardfrequenz"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr "Motherboard hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr "Chipsatz"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr "Computergehäuse hinzufügen/bearbeiten"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr "Format"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Inventory database"
-msgstr "Inventar-Datenbank"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-msgid "Inventory database service"
-msgstr "Inventar-Datenbank Dienst"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "Das Attribut Benutzer ist leer oder enthält ungültige Zeichen."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "Das Attribut Datenbank ist leer oder enthält ungültige Zeichen."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "Dienste"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-msgid "Start"
-msgstr "Start"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr "Beenden"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-msgid "Restart"
-msgstr "Neustart"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-msgid "Admin"
-msgstr "Administrator"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr "Hersteller verwalten"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "Warnung"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-"Bitte überprüfen Sie genau, was Sie tun. GOsa hat keine Möglichkeit, die "
-"Daten wiederherzustellen."
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Es ist eine gute Idee, vor dieser Aktion eine komplette Sicherung Ihrer "
-"MySQL-Datenbank zu erstellen. Wenn Sie dies erledigt haben, drücken Sie "
-"'Entfernen', um fortzufahren oder 'Abbrechen', um die aktuelle Aktion "
-"abzubrechen."
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr "Referenz"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "Wählen"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr "Verfügbare Patronentypen für diesen Druckertyp"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-"Dieser Dialog erlaubt es Ihnen, neue Arten von Patronen hinzuzufügen und "
-"einen oder mehrere Typen zu Ihrem Drucker zuzuordnen. Patronentypen sind "
-"abhängig von Ihrem gewählten Druckertyp. Für jeden gewählten Patronentyp "
-"wird eine neue Patrone erstellt. Dies erlaubt es Ihnen, den gleichen "
-"Patronentyp für mehr als einen Drucker zu verwenden."
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "Filter"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr "Zeige die Patronentypen, auf die Folgendes passt"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr "Regulärer Ausdruck zum Erkennen von Patronentypen"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr "Anhänge"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-"Dieser Dialog erlaubt es Ihnen, verschiedene Objekte (wie Anleitungen, "
-"Hilfen, etc.) zum momentan gewählten Computer hinzuzufügen."
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr "Zeige Anhänge, auf die zutrifft"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr "Regulärer Ausdruck zum Erkennen von Anhangs-Namen"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr "Liste der Geräte"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-"Dieser Dialog erlaubt es Ihnen, ein Gerät zum momentan ausgewählten Computer "
-"hinzuzufügen."
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr "Zeige die Geräte, auf die das Folgende passt"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr "Regulärer Ausdruck zum Erkennen von Gerätenamen"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr "Es wurde kein Server mit einer gültigen glpi-Datenbank gefunden."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr ""
-"Die MySQL-Erweiterung wurde nicht gefunden - kann daher nicht zur glpi-"
-"Datenbank verbinden."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr ""
-"Kann nicht zur glpi-Datenbank verbinden - bitte überprüfen Sie Ihre "
-"Konfiguration."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-"Herunterladen des Anhangs fehlgeschlagen. Der Anhang wurde auf dem Server "
-"nicht gefunden."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr "Herunterladen des Anhangs fehlgeschlagen. Keine gültige Anhangs-ID."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr "Dieses Feature wurde noch nicht implementiert."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-"Das Hinzufügen des neuen Systemtyps ist fehlgeschlagen - der angegebene Name "
-"wird bereits verwendet."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-"Sie können diesen Systemtyp nicht entfernen, er wird noch von folgendem(n) "
-"System(en) verwendet: '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr ""
-"Das Umbenennen schlug fehl: Der angegebene Name wird bereits verwendet."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr ""
-"Das Hinzufügen des neuen Betriebssystems ist fehlgeschlagen - der angegebene "
-"Name wird bereits verwendet."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-"Sie können dieses Betriebssystem nicht löschen, es wird von folgenden(m) "
-"System(en) verwendet: '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr ""
-"Das Aktualisieren des Betriebssystems schlug fehl, da der angegebene Name "
-"bereits verwendet wird."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-"Kann den Benutzer nicht hinzufügen, da die DN zu lang ist. Es sind hier "
-"maximal 100 Zeichen erlaubt."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr "Inventar entfernen"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr ""
-"Dieses Gerät besitzt aktivierte Inventar-Funktionen. Sie können diese durch "
-"einen Klick auf die Schaltfläche unten deaktivieren."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr "Inventar hinzufügen"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr ""
-"Aktuell besitzt dieses Gerät keine aktivierten Inventar-Funktionen. Sie "
-"können diese durch einen Klick auf die Schaltfläche unten aktivieren."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr ""
-"Kann das glpi-Konto nicht entfernen, solange die MySQL-Erweiterung für PHP "
-"fehlt."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr "GLPI"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-msgid "Inventory extension"
-msgstr "Inventar-Erweiterung"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr "Betriebssystem"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "Ort"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "Modell"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-msgid "Peripheral devices"
-msgstr "Externe Geräte"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr "System-Typ"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr "Installierte Geräte"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-msgid "Trading"
-msgstr "Handeln"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr "Software"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr "Verträge"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-msgid "attachment"
-msgstr "Anhang"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-"Sie können diesen Anhang nicht entfernen, er wird noch von folgendem(n) "
-"System(en) verwendet: '%s'"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr "Es wurde keine gültige Datei hochgeladen."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr "Upload war nicht erfolgreich."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr ""
-"Das Verzeichnis '%s/glpi/' zum Speichern von GLPI-Uploads wurde nicht "
-"gefunden."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr "Es wurde bereits eine Datei mit dem selben Namen hochgeladen."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr "Kann Datei '%s' nicht anlegen."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr "Datei ist verfügbar."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr "Datei konnte nicht gelesen werden, vielleicht ist nicht vorhanden."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr "Es wurde noch keine Datei hochgeladen."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr "MIME"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr "Diese Tabelle enthält alle verfügbaren Anhänge."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr "leer"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr "Neuen Anhang erstellen"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr "Neuer Anhang"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr "Der angegebene Name wird bereits verwendet."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr "Bitte geben Sie einen gültigen Namen für diesen Anhang an."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr ""
-"Dieser Server besitzt aktivierte Inventar-Funktionen. Sie können diese durch "
-"einen Klick auf die Schaltfläche unten deaktivieren."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr ""
-"Aktuell besitzt dieser Server keine aktivierten Inventar-Funktionen. Sie "
-"können diese durch einen Klick auf die Schaltfläche unten aktivieren."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-"Kann Druckertyp nicht in '%s' umbenennen - der angegebene Name wird bereits "
-"verwendet."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr ""
-"Sie können diesen Druckertyp nicht entfernen, er wird noch von '%s' "
-"verwendet."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr "seit"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-msgid "Printer inventory extension"
-msgstr "Drucker-Inventar-Erweiterung"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-msgid "Supports serial interface"
-msgstr "Unterstützt serielle Schnittstelle"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-msgid "Supports parallel interface"
-msgstr "Unterstützt parallele Schnittstelle"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-msgid "Supports usb interface"
-msgstr "Unterstützt USB-Schnittstelle"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-msgid "Cartridge settings"
-msgstr "Patronen-Einstellungen"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "Liste der Benutzer"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr ""
-"Dieser Dialog erlaubt es Ihnen, einen Benutzer als technische Kontaktperson "
-"zu wählen."
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "Zeige die Benutzer, auf die Folgendes passt"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "Regulärer Ausdruck zum Erkennen von Benutzernamen"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr "Betriebssysteme verwalten"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-"Sie können diesen Hersteller nicht entfernen, er wird noch von folgendem(n) "
-"System(en) verwendet: '%s'"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr "Bitte geben Sie einen Namen ein!"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr ""
-"Der angegebene Name wird bereits verwendet. Bitte wählen Sie einen anderen."
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr "System-Typen verwalten"
diff --git a/gosa-plugins/glpi/locale/es/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/es/LC_MESSAGES/messages.po
deleted file mode 100644
index 8f5fd5be0..000000000
--- a/gosa-plugins/glpi/locale/es/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1216 +0,0 @@
-# translation of admin.po to
-# translation of systems.po to
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# , 2010.
-msgid ""
-msgstr ""
-"Project-Id-Version: admin\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2010-01-25 00:03+0100\n"
-"Last-Translator: \n"
-"Language-Team: Spanish <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "Usuarios"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "Departamentos"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr "Usar"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr "usar"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "Ir al departamento raÃz"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "RaÃz"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "Subir un departamento"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr "Arriba"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "Ir al departamento de usuarios"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr "Inicio"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr "Recargar lista"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr "Enviar"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "Base"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "Enviar departamento"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-msgid "GLPI database information"
-msgstr "Información de base de datos GLPI"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr "Usuario de Base de datos de registro"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "Contraseña"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr "Bases de datos"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr "Renombrar"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr "Cerrar"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr "Por favor introduzca un nuevo nombre"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr "Adjunto"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "Nombre"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr "Comentario"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr "Archivo"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr "Enviar"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "Estado"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr "Nombre del archivo"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr "Tipo MIME"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr "No se puede eliminar esta entrada, está todavÃa en uso."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr "N/A"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr "El nombre introducido ya esta siendo usado"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-msgid "cartridge"
-msgstr "cartucho"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-"Ha decidido eliminar el tipo de cartucho, aún está en uso por la impresora"
-"(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr "Cartuchos"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "Acción"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "Editar"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "Eliminar"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr "Nuevo monitor"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr "M"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr "Añadir/Editar Fabricante"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr "Sitio web"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "Dirección"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "Número de teléfono"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "Fax"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "Correo Electrónico"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr "Comentarios"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr "Error interno. No puedo crear un dispositivo de tipo '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-msgid "glpi device"
-msgstr "dispositivos glpi"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr "No puedo encontrar el nombre de objeto "
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-"No puede eliminar este dispositivo, esta todavÃa en uso por este sistema(s) "
-"'%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr "dispositivos"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "Acciones"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr "Nueva placa base"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "Mb"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr "Nuevo procesador"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr "P"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr "Nueva caja"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr "C"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr "Nuevo interfaz de red"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr "NI"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr "Nueva memoria"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr "R"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr "Nuevo disco duro"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr "HDD"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr "Nuevo Disco"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr "D"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr "Nueva Controladora"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr "CS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr "Nueva tarjeta gráfica"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr "GC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr "Nueva tarjeta de sonido"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr "SC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr "Nueva fuente de alimentación"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr "PS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr "Nuevo otros dispositivos"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr "OC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr "Por favor introduzca un nombre valido para este dispositivo."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr "El nombre de dispositivo especificado ya esta siendo usado"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "ninguno"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr "Ninguno"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr "Otro"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "Genérico"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr "Tipo de impresora"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "editar"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr "Fabricante"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr "Interfaces soportados"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr "Serie"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr "Paralelo"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr "USB"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr "Contactos"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr "Responsable técnico"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr "Persona de contacto"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr "Adjuntos"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "Información"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr "Cartuchos instalados"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "Eliminar"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr "Añadir/Editar monitor"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr "Tamaño del monitor"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr "Pulgada"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr "Micrófono integrado"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr "Si"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr "No"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr "altavoces integrados"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr "Sub-D"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr "BNC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr "Número serie"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr "Número de serie adicional"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr "Añadir/Editar otro dispositivo"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr "Añadir / Editar fuente de energÃa"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr "ATX"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr "Potencia"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr "Añadir / Editar Tarjeta Gráfica"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr "interfaz"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr "RAM"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr "Añadir/Editar controlador"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "Tamaño"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr "Añadir / Editar disco"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr "Velocidad"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr "Grabable"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr "Añadir/Editar Disco Duro"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr "Rpm"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr "Cache"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Tipo"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr "Añadir/Editar memoria"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr "Frecuencia"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr "Añadir/Editar tarjeta de sonido"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr "Añadir/Editar dispositivo de red"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr "Dirección MAC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "Ancho de banda"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr "Añadir/Editar procesador"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr "Frecuencia"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr "Frecuencia inicial"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr "Añadir/Editar placa base"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr "Chipset"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr "Añadir/Editar Caja de ordenador"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr "formato"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Inventory database"
-msgstr "Base de datos de inventario"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-msgid "Inventory database service"
-msgstr "Servicio de base de datos de inventario"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "El atributo usuario está vacÃo o tiene caracteres no validos"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "¡El atributo base de datos está vacÃo o tiene caracteres no validos!"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "Servicios"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-msgid "Start"
-msgstr "Inicio"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr "Parada"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-msgid "Admin"
-msgstr "Administrador"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr "Administre fabricantes"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "Aviso"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-"Si está seguro de lo que quiere hacer pulse dos veces, ya que no hay manera "
-"de que GOsa recupere posteriormente la información."
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"La mejor opción antes de ejecutar esta acción es haber grabado el contenido "
-"actual de su base de datos MySql en un fichero. Entonces - Y soloentonces - "
-"presione 'Eliminar' para continuar o 'Cancelar' para abortar."
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr "Referencia"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "Elige"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr "Lista de cartuchos disponibles para este tipo de impresora"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-"Este dialogo le permite crear nuevos tipos de cartuchos, y seleccionar uno o "
-"mas tipos para su impresora. Los tipos de Cartuchos dependerán del tipo de "
-"impresora que haya seleccionado. Por cada tipo de cartucho seleccionado se "
-"creara un nuevo cartucho, esto le permite seleccionar el mismo tipo de "
-"cartucho para mas de una impresora."
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "Filtros"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr "Mostrar tipos de cartuchos que concuerdan con"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr "Expresiones regulares que coincidan con tipos de cartuchos"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr "Lista de Adjuntos"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-"Este dialogo le permite unir objetos tradicionales (como manuales, guÃas, "
-"etc.) al ordenador que está editando actualmente."
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr "Mostrar adjuntos que coincidan con"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr "Expresiones regulares para encontrar nombres de adjuntos"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr "Lista de dispositivos"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-"Este dialogo le permite unir un dispositivo al ordenador que está "
-"actualmente editando."
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr "Mostrar dispositivos que coincidan con"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr "Expresiones regulares que coincidan con nombres de dispositivos"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr "No existe un servidor con un servicio de base de datos glpi válido."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr ""
-"No puedo conectar a la base de datos glpi, la extensión php-mysql no es "
-"accesible."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr ""
-"No puedo conectar a la base de datos glpi, compruebe la configuración de "
-"nuevo."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-"La descarga del adjunto ha fallado. El adjunto no ha sido encontrado en el "
-"servidor."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr "La descarga del adjunto ha fallado. El adjunto no tiene un id válido."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr "Esta caracterÃstica no está todavÃa implementada"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-"Ha fallado al añadir un nuevo tipo de sistema, el nombre de tipo de sistema "
-"ya está en uso."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-"No puede eliminar este tipo de sistema, está todavÃa en uso por el sistema"
-"(s) '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr ""
-"El cambio de nombre ha fallado, ha introducido uno que ya está siendo usado."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr ""
-"Ha fallado al añadir un nuevo sistema operativo, el nombre introducido ya "
-"está en uso."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-"No puede eliminar este sistema operativo, está todavÃa en uso por el sistema"
-"(s) '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr ""
-"Ha fallado al actualizar el sistema operativo, el valor introducido ya esta "
-"siendo utilizado."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-"No se puede añadir el usuario introducido, la dn del usuario es muy larga, "
-"solo se permiten 100 caracteres."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr "Eliminar inventario"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr ""
-"Este dispositivo tiene información de inventario activada. Puede "
-"desactivarla pulsando aquÃ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr "Añadir inventario"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr ""
-"Este dispositivo tiene información de inventario desactivada. Puede "
-"activarla pulsando aquÃ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr ""
-"Mientras no se encuentre la extensión php_mysql no se puede eliminar la "
-"cuenta glpi."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr "Glpi"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-msgid "Inventory extension"
-msgstr "Eliminar extensión de impresión"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr "Sistema operativo"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "Localización"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "Modelo"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-msgid "Peripheral devices"
-msgstr "Dispositivo periférico"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr "Tipo de sistema"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr "Dispositivos instalados"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-msgid "Trading"
-msgstr "Comercial"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr "Software"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr "Contratos"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-msgid "attachment"
-msgstr "adjunto"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-"No puede eliminar este adjunto, está todavÃa en uso por el(los) sistema(s) '%"
-"s'"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr "No se ha subido ningún archivo valido."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr "El envÃo no fue correcto."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr "El directorio donde guardar los envÃos '%s/glpi/' no es accesible."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr "Ya se ha subido anteriormente un fichero con este nombre."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr "No puedo crear el fichero '%s'."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr "El archivo esta disponible."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr "No se puede acceder al archivo, posiblemente se haya perdido."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr "No se ha subido ningún archivo actualmente."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr "Mime"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr "Esta tabla muestra todos los adjuntos disponibles."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr "vacÃo"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr "Crear nuevo adjunto"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr "Nuevo adjunto"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr "El nombre introducido ya esta siendo usado"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr "Por favor introduzca un nombre de adjunto valido."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr ""
-"Este servidor tiene la extensión inventario activada. Puede desactivarla "
-"pulsando aquÃ."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr ""
-"Este servidor tiene la extensión inventario desactivada. Puede activarla "
-"pulsando aquÃ."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-"No puedo cambiar el nombre del tipo de impresora a '%s' porque este tipo ya "
-"existe."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr "No puedo eliminar el tipo de impresora, todavÃa está en uso por '%s'."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr "desde"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-msgid "Printer inventory extension"
-msgstr "Extensión de inventario de impresión"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-msgid "Supports serial interface"
-msgstr "Soporta interfaz serie"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-msgid "Supports parallel interface"
-msgstr "Soporta interfaz paralelo"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-msgid "Supports usb interface"
-msgstr "Soporta interfaz usb"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-msgid "Cartridge settings"
-msgstr "CaracterÃsticas del cartucho"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "Lista de usuarios"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr ""
-"Este dialogo le permite seleccionar un usuario como personal técnico "
-"responsable."
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "Mostrar usuarios que coincidan con"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "Expresiones regulares para buscar nombre de usuarios"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr "Administrar tipos de OS"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-"No puede eliminar este fabricante, está todavÃa en uso por este(os) sistema"
-"(s) '%s'"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr "Por favor introduzca un nombre"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr ""
-"El valor introducidocomo 'Nombre' esta siendo utilizado. Por favor elija "
-"otro."
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr "Administrar tipos de sistemas"
-
-#~ msgid "You're about to delete the glpi attachment component '%s'."
-#~ msgstr "Ha decidido eliminar el componente adjunto glpi '%s'."
-
-#~ msgid "Add"
-#~ msgstr "Añadir"
-
-#~ msgid "Cancel"
-#~ msgstr "Cancelar"
-
-#~ msgid "Save"
-#~ msgstr "Guardar"
-
-#~ msgid "You're about to delete the glpi device '%s'."
-#~ msgstr "Ha decidido eliminar el dispositivo glpi '%s'."
-
-#~ msgid "You're about to delete the glpi cartridge type '%s'."
-#~ msgstr "Ha decidido eliminar el tipo de cartucho glpi '%s'."
diff --git a/gosa-plugins/glpi/locale/fr/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/fr/LC_MESSAGES/messages.po
deleted file mode 100644
index 18811bbe7..000000000
--- a/gosa-plugins/glpi/locale/fr/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1193 +0,0 @@
-# translation of messages.po to french
-# Benoit Mortier , 2005, 2006, 2007, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2008-07-23 23:06+0200\n"
-"Last-Translator: Benoit Mortier \n"
-"Language-Team: french \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "Utilisateurs"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "Départements"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr "Utiliser"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr "utiliser"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "Aller au département de base"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "Racine"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "Monter d'un département"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr "Au dessus"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "Aller au département des utilisateurs"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr "Accueil"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr "Recharger la liste"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr "Soumettre"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "Base"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "Soumettre le département"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-msgid "GLPI database information"
-msgstr "Information sur la base de données GLPI"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr "Utilisateur de la base de données des journaux systèmes"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "Mot de passe"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr "Base de données"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr "Renommer"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr "Fermer"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr "Veuillez entrer un nouveau nom"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr "Document lié"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "Nom"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr "Commentaires"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr "Fichier"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr "Télécharger"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "Statut"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr "Nom du fichier"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr "Type mime"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr "Impossible d'effacer cette entrée elle est encore utilisée"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr "N/A"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr "Le nom spécifié est déjà utilisé."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-msgid "cartridge"
-msgstr "cartouche"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-"Vous ne pouvez pas effacer ce type de cartouche, il est utilisé actuellement "
-"par ce(s) imprimante(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr "Cartouches"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "Action"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "Editer"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "Supprimer"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr "Nouvel écran"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr "M"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr "Ajouter/Modifier un fabricant"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr "Site web"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "Adresse"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "Numéro de téléphone"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "Fax"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "Adresse de messagerie"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr "Commentaires"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr "Erreur interne, impossible de créer le périphérique de type '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-msgid "glpi device"
-msgstr "périphérique glpi"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr "Impossible de détecter le nom de l'objet."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-"Vous ne pouvez pas effacer ce périphérique, il est utilisé actuellement par "
-"ces système(s) '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr "périphériques"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "Actions"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr "Nouvelle carte mère"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "MB"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr "Nouveau processeur"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr "P"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr "Nouveau boitier"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr "C"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr "Nouvelle carte réseau"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr "NI"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr "Nouvelle mémoire vive"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr "R"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr "Nouveau disque dur"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr "Disque dur"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr "Nouveau lecteur"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr "D"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr "Nouveau contrôleur"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr "CS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr "Nouvelle carte graphique"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr "GC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr "Nouvelle carte son"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr "SC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr "Nouvelle alimentation"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr "PS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr "Nouveau périphérique"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr "OC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr "Veuillez spécifier un nom valide pour ce périphérique."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr "Le nom de ce périphérique est déjà utilisé."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "aucun"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr "Aucun"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr "Autres"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "Informations"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr "Type de l'imprimante"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "éditer"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr "Fabricant"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr "Interfaces supportées"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr "Série"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr "Parallèle"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr "USB"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr "Contacts"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr "Responsable technique"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr "Personne de contact"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr "Documents liés"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "Information"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr "Cartouches installés"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "Supprimer"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr "Ajouter/Modifier un écran"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr "Taille écran"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr "Inch"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr "Micro intégré"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr "Oui"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr "Non"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr "Haut parleur intégré"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr "Sub-D"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr "BNC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr "Numéro de série"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr "Numéro de série supplémentaire"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr "Ajouter/Modifier un autre périphérique"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr "Ajouter/Modifier une alimentation"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr "atx"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr "Puissance électrique"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr "Ajouter/Modifier une carte graphique"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr "Interface"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr "Mémoire vive"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr "Ajouter/Modifier un contrôleur"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "Taille"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr "Ajouter/Modifier un lecteur"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr "Vitesse"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr "Inscriptible"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr "Ajouter/Modifier un disque dur"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr "Vitesse"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr "Cache"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Type"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr "Ajouter/Modifier la mémoire vive"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr "Fréquence"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr "Ajouter/Modifier une carte son"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr "Ajouter/Modifier une carte réseau"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr "Adresse MAC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "Bande passante"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr "Ajouter/Modifier un processeur"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr "Fréquence"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr "Fréquence par défaut"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr "Ajouter/Modifier une carte mère"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr "Jeu de composants"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr "Ajouter/Modifier un Boîtier"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr "format"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Inventory database"
-msgstr "Base de données de l'inventaire"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-msgid "Inventory database service"
-msgstr "Service de la base de données d'inventaire"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "L'attribut utilisateur est vide ou contient des caractères invalides."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-msgid "The attribute database is empty or contains invalid characters."
-msgstr ""
-"L'attribut base de données est vide ou contient des caractères invalides."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "Services"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-msgid "Start"
-msgstr "Démarrage"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr "Arrêter"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-msgid "Restart"
-msgstr "Réessayer"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-msgid "Admin"
-msgstr "Administrateur"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr "Gérer les Fabricants"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "Avertissement"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-"Veuillez vous assurez que vous voulez effectuer cette opération. Toutes les "
-"données seront perdues étant donné qu'il est impossible pour GOsa de "
-"récupérer vos données."
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Il est conseillé de sauvegarder le contenu de votre base de données MySql "
-"dans un fichier avant de réaliser cette action. Donc - si vous avez fait "
-"cela - appuyez sur 'Supprimer' pour continuer ou 'Annuler' pour abandonner."
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr "Référence"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "Choisir"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr "Liste des types de cartouches disponibles pour ce type d'imprimante"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-"Cette page vous permet de créer de nouveaux types de cartouches, et de "
-"sélectionner un ou plusieurs type pour votre imprimante. Les types de "
-"cartouches dépendent du type d'imprimante que vous avez sélectionné. Pour "
-"chaque type de cartouche sélectionné il y aura une nouvelle cartouche crée, "
-"ceci vous permettra de sélectionner le même type de cartouche pour plusieurs "
-"imprimantes."
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "Filtres"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr "Afficher les types de cartouches correspondantes"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr "Expression régulière pour sélectionner les cartouches correspondantes"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr "Liste des documents liés"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-"Ce menu vous permet d'attacher des objets supplémentaires ( comme des "
-"manuels, guides, etc..) à l'ordinateur que vous être en train d'éditer."
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr "Afficher les documents liées correspondants"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr "Expression régulière pour faire correspondre le nom des documents liés"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr "Liste des périphériques"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-"Ce menu vous permet d'attacher un périphérique à votre ordinateur en cours "
-"d'édition."
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr "Afficher les périphériques correspondants"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr "Expression régulière concordant avec les noms des périphériques"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr "Il n'y a pas de serveur qui contient un service glpi valide."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr ""
-"Impossible de se connecter sur la base de données glpi, l'extension php-"
-"mysql n'est pas disponible."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr ""
-"Impossible de se connecter à la base de données glpi, veuillez vérifier la "
-"configuration."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-"Le téléchargement de la pièce jointe à échoué. La pièce jointe n'est pas "
-"présente sur le serveur."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr "Le téléchargement de la pièce jointe à échoué. Numéro id non valide."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr "Cette fonctionnalité n'est pas encore implémentée."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-"L'ajout d'un nouveau type de système à échoué, le nom est déjà utilisé."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-"Vous ne pouvez pas effacer ce type de système, il est utilisé actuellement "
-"par les sytème(s) '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr "Le changement de nom à échoué, le nom spécifié est déjà utilisé."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr ""
-"L'ajout d'un nouveau système d'exploitation à échoué, le nom utilisé existe "
-"déjà ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-"Vous ne pouvez pas effacer ce système d'exploitation, il est utilisé "
-"actuellement par ce(s) système(s) '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr ""
-"Le changement de nom du système d'exploitation à échoué, le nom utilisé "
-"existe déjà ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-"Impossible d'ajouter l'utilisateur, le dns de l'utilisateur est trop long, "
-"seulement 100 caractères sont permis. "
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr "Supprimer l'inventaire"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr ""
-"Ce périphérique à l'extension inventaire activée. Vous pouvez la désactiver "
-"en cliquant sur le bouton ci-dessous."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr "Ajouter l'inventaire"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr ""
-"Ce périphérique à l'extension d'inventaire désactivé. Vous pouvez l'activer "
-"en cliquant sur le bouton ci-dessous."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr ""
-"Impossible de supprimer l'extension glpi, l'extension mysql n'est pas "
-"disponible."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr "Glpi"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-msgid "Inventory extension"
-msgstr "Extension d'inventaire"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr "Système d'exploitation"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "Lieu"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "Modèle"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-msgid "Peripheral devices"
-msgstr "Périphériques externes"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr "Type de système"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr "Périphériques installés"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-msgid "Trading"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr "Logiciel"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr "Contrats"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-msgid "attachment"
-msgstr "pièce jointe"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-"Impossible d'effacer ce fichier attaché, tant qu'il est utilisé par ce(s) "
-"système(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr "Pas de fichier valide téléchargé."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr "Le téléchargement n'a pas réussi."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr "Le répertoire de téléchargement pour gpli '%s/glpi' est manquant."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr "Il existe déjà un fichier avec ce nom."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr "Impossible de créer le fichier '%s'."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr "Le fichier est disponible."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr "Le fichier n'est pas lisible, il est probablement manquant."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr "Pas de fichier téléchargé."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr "Mime"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr "Ce tableau montre tout les fichiers attachés disponibles."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr "vide"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr "Créer un nouveau fichier attaché"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr "Nouveau document lié"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr "Le nom spécifié est déjà utilisé."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr "Veuillez spécifier un nom valide pour ce document lié."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr ""
-"Ce serveur à l'extension inventaire activée. Vous pouvez la désactiver en "
-"cliquant sur le bouton ci-dessous."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr ""
-"Ce serveur à l'extension d'inventaire désactivé. Vous pouvez l'activer en "
-"cliquant sur le bouton ci-dessous."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-"Impossible de renommer le type d'imprimante en '%s', ce type existe déjà ."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr ""
-"Impossible d'effacer ce type d'imprimante, il est encore utilisé par '%s'"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr "depuis"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-msgid "Printer inventory extension"
-msgstr "Ajouter une extension d'inventaire d'imprimante"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-msgid "Supports serial interface"
-msgstr "Supporte une Interface série"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-msgid "Supports parallel interface"
-msgstr "Supporte une interface parallèle"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-msgid "Supports usb interface"
-msgstr "Supporte une interface usb"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-msgid "Cartridge settings"
-msgstr "Paramètre des cartouches"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "Liste des utilisateurs"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr ""
-"Ce dialogue vous permet de désigner un utilisateur comme personne "
-"responsable."
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "Afficher les utilisateurs correspondants"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "Expression régulière concordant avec les noms des utilisateurs"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr "Gérer les types de systèmes d'exploitation"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-"Vous ne pouvez pas effacer ce fournisseur, il est utilisé actuellement par ce"
-"(s) système(s) '%s'"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr "Veuillez indiquer un nom."
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr "Le nom indiqué est déjà utilisé, veuillez en choisir un autre."
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr "Gérer le type de système"
diff --git a/gosa-plugins/glpi/locale/it/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/it/LC_MESSAGES/messages.po
deleted file mode 100644
index 9e0cfec71..000000000
--- a/gosa-plugins/glpi/locale/it/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1274 +0,0 @@
-# translation of messages.po to Italian
-# Copyright (c) 2005 B-Open Solutions srl - http://www.bopen.it/
-# Copyright (c) 2005 Alessandro Amici
-# Alessandro Amici , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2005-11-18 15:26+0100\n"
-"Last-Translator: Alessandro Amici \n"
-"Language-Team: Italian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9.1\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "Utenti"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "Dipartimenti"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-#, fuzzy
-msgid "Use"
-msgstr "Utenti"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#, fuzzy
-msgid "use"
-msgstr "utenti"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "Vai al dipartimento base"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "Root"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "Sali di dipartimento"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "Vai agli utenti del dipartimento"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr "Home"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "Base"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "Imposta dipartimento"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-#, fuzzy
-msgid "GLPI database information"
-msgstr "Informazioni generali"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-#, fuzzy
-msgid "Logging DB user"
-msgstr "Utenti di Dominio"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "Password"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-#, fuzzy
-msgid "Database"
-msgstr "Database"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-#, fuzzy
-msgid "Rename"
-msgstr "Cognome"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-#, fuzzy
-msgid "Close"
-msgstr "Scegli"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-#, fuzzy
-msgid "Please enter a new name"
-msgstr "Inserisci la URI del server LDAP"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-#, fuzzy
-msgid "Attachment"
-msgstr "Argomenti"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "Cognome"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-#, fuzzy
-msgid "Comment"
-msgstr "Contenuti"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-#, fuzzy
-msgid "Upload"
-msgstr "leggere"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "Stato"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-#, fuzzy
-msgid "Filename"
-msgstr "Cognome"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-#, fuzzy
-msgid "Mime-type"
-msgstr "Tipo"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-#, fuzzy
-msgid "Can't delete this entry, it is still in use."
-msgstr "Nome descrittivo del gruppo"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-#, fuzzy
-msgid "The selected name is already in use."
-msgstr "L'indirizzo principale inserito è già in uso."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-#, fuzzy
-msgid "cartridge"
-msgstr "Dispositivi del client"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "Azione"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "Modifica"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "Rimuovi"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-#, fuzzy
-msgid "New monitor"
-msgstr "Nuova password"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-#, fuzzy
-msgid "M"
-msgstr "Mb"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-#, fuzzy
-msgid "Add/Edit manufacturer"
-msgstr "Modifica contatto"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-#, fuzzy
-msgid "Website"
-msgstr "scrivere"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "Indirizzo"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "Numero di telefono"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "Fax"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "Indirizzo email"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-#, fuzzy
-msgid "Comments"
-msgstr "Contenuti"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-#, fuzzy
-msgid "glpi device"
-msgstr "Dispositivi"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-#, fuzzy
-msgid "devices"
-msgstr "Dispositivi"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "Azioni"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-#, fuzzy
-msgid "New mainbord"
-msgstr "Nuova password"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "Mb"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-#, fuzzy
-msgid "New processor"
-msgstr "Nuova password"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-#, fuzzy
-msgid "New case"
-msgstr "utenti"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-#, fuzzy
-msgid "New network interface"
-msgstr "Mostra stampanti di rete"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-#, fuzzy
-msgid "NI"
-msgstr "Unix"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-#, fuzzy
-msgid "New ram"
-msgstr "utenti"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-#, fuzzy
-msgid "New hard disk"
-msgstr "Server"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-#, fuzzy
-msgid "New drive"
-msgstr "Server"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-#, fuzzy
-msgid "D"
-msgstr "UID"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-#, fuzzy
-msgid "New controller"
-msgstr "Nuova conferenza"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-#, fuzzy
-msgid "New sound card"
-msgstr "Nuova password"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-#, fuzzy
-msgid "New misc device"
-msgstr "Mostra dispositiva di rete"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-#, fuzzy
-msgid "You have to specify a valid name for this device."
-msgstr "Specificare una dimenzione valida per le mail da rigettare."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-#, fuzzy
-msgid "This device name is already in use."
-msgstr "L'indirizzo principale inserito è già in uso."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "nessuno"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-#, fuzzy
-msgid "None"
-msgstr "nessuno"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-#, fuzzy
-msgid "Other"
-msgstr "Filtri"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "Generale"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-#, fuzzy
-msgid "Printer type"
-msgstr "Nome della stampante"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "modifica"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-#, fuzzy
-msgid "Supported interfaces"
-msgstr "Mostra dispositiva di rete"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-#, fuzzy
-msgid "Serial"
-msgstr "Terminali"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-#, fuzzy
-msgid "Contacts"
-msgstr "Contatto"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-#, fuzzy
-msgid "Contact person"
-msgstr "Contatto"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-#, fuzzy
-msgid "Attachments"
-msgstr "Argomenti"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "Informazioni"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-#, fuzzy
-msgid "Installed cartridges"
-msgstr "Dispositivi del client"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "Rimuovi"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-#, fuzzy
-msgid "Add/Edit monitor"
-msgstr "Modifica contatto"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-#, fuzzy
-msgid "Monitor size"
-msgstr "Dimensione quota"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-#, fuzzy
-msgid "Inch"
-msgstr "Francese"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-#, fuzzy
-msgid "Yes"
-msgstr "Sistemi"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-#, fuzzy
-msgid "No"
-msgstr "nessuno"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-#, fuzzy
-msgid "Serial number"
-msgstr "Numero di telefono"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-#, fuzzy
-msgid "Additional serial number"
-msgstr "Numero seriale del certificato"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-#, fuzzy
-msgid "Add/Edit other device"
-msgstr "Dispositivi del client"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-#, fuzzy
-msgid "Power"
-msgstr "Pager"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-#, fuzzy
-msgid "Interface"
-msgstr "Terminal Server"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-#, fuzzy
-msgid "Ram"
-msgstr "Cognome"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-#, fuzzy
-msgid "Add/Edit controller"
-msgstr "Nuova conferenza"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "Dimensione"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-#, fuzzy
-msgid "Writeable"
-msgstr "scrivere"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-#, fuzzy
-msgid "Add/Edit harddisk"
-msgstr "Server"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-#, fuzzy
-msgid "Cache"
-msgstr "Annulla"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Tipo"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-#, fuzzy
-msgid "Add/Edit memory"
-msgstr "Modifica contatto"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-#, fuzzy
-msgid "Frequenz"
-msgstr "Numero di telefono"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-#, fuzzy
-msgid "Add/Edit sound card"
-msgstr "Nuova password"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-#, fuzzy
-msgid "Add/Edit network interface"
-msgstr "Mostra stampanti di rete"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-#, fuzzy
-msgid "MAC address"
-msgstr "Indirizzo principale"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "Banda"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-#, fuzzy
-msgid "Add/Edit processor"
-msgstr "Nuova password"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-#, fuzzy
-msgid "Frequence"
-msgstr "Numero di telefono"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-#, fuzzy
-msgid "Default frequence"
-msgstr "Stampante predefinita"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-#, fuzzy
-msgid "Chipset"
-msgstr "reset"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-#, fuzzy
-msgid "Add/Edit computer case"
-msgstr "Computer"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-#, fuzzy
-msgid "format"
-msgstr "Informazioni"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-#, fuzzy
-msgid "Inventory database"
-msgstr "Database"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-#, fuzzy
-msgid "Inventory database service"
-msgstr "Database"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-#, fuzzy
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "Il valore specificato come '%s' contiene dei caratteri invalidi!"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-#, fuzzy
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "Il valore specificato come '%s' contiene dei caratteri invalidi!"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "Servizi"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-#, fuzzy
-msgid "Start"
-msgstr "Avvio"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-#, fuzzy
-msgid "Stop"
-msgstr "Rapporto"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-#, fuzzy
-msgid "Restart"
-msgstr "Riprova"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-#, fuzzy
-msgid "Admin"
-msgstr "DN dell'amministratore"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-#, fuzzy
-msgid "Manage manufacturers"
-msgstr "Modifica contatto"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "Attenzione"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-#, fuzzy
-msgid "Reference"
-msgstr "Riferimenti"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "Scegli"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "Filtri"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-#, fuzzy
-msgid "Display cartridge types matching"
-msgstr "Mostra utenti che corrispondono a"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-#, fuzzy
-msgid "Regular expression for matching cartridge types"
-msgstr "Espressione regolare per selezionare l'indirizzo"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-#, fuzzy
-msgid "List of attachments"
-msgstr "Lista dei dipartimenti"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-#, fuzzy
-msgid "Display attachments matching"
-msgstr "Mosra gruppi corrispondenti a"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-#, fuzzy
-msgid "Regular expression for matching attachment names"
-msgstr "Espressioni regolare per selezionare il nome del gruppo"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-#, fuzzy
-msgid "List of devices"
-msgstr "Lista degli utenti"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-#, fuzzy
-msgid "Display devices matching"
-msgstr "Mostra gli indirizzi che corrispondono"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-#, fuzzy
-msgid "Regular expression for matching device names"
-msgstr "Espressioni regolare per selezionare il nome del gruppo"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-#, fuzzy
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr "Impossibile connettersi al server del database!"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-#, fuzzy
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr "Impossibile connettersi al server del database!"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-#, fuzzy
-msgid "Rename failed, this system type name is already used."
-msgstr "L'indirizzo principale inserito è già in uso."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-#, fuzzy
-msgid "Updating operating system failed, specifed name is already used."
-msgstr "L'indirizzo principale inserito è già in uso."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-#, fuzzy
-msgid "Remove inventory"
-msgstr "Elimina contatto"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-#, fuzzy
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr "Questa identià possiede estensioni Unix."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-#, fuzzy
-msgid "Add inventory"
-msgstr "Aggiungi contatto"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-#, fuzzy
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr "Questa identità non possiede estensioni Unix"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-#, fuzzy
-msgid "Inventory extension"
-msgstr "Elimina foto"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-#, fuzzy
-msgid "Operating system"
-msgstr "Rimuovi"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "Località "
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-#, fuzzy
-msgid "Model"
-msgstr "Dominio"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-#, fuzzy
-msgid "Peripheral devices"
-msgstr "Dispositivi del client"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-#, fuzzy
-msgid "System type"
-msgstr "Sistemi"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-#, fuzzy
-msgid "Installed devices"
-msgstr "Dispositivi del client"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-#, fuzzy
-msgid "Trading"
-msgstr "Ricerca"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-#, fuzzy
-msgid "Software"
-msgstr "Stato"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-#, fuzzy
-msgid "Contracts"
-msgstr "Contatto"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-#, fuzzy
-msgid "attachment"
-msgstr "Argomenti"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-#, fuzzy
-msgid "There is no valid file uploaded."
-msgstr "Prego inserire un numero di telefono valido!"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-#, fuzzy
-msgid "There is already a file with the same name uploaded."
-msgstr "Prego inserire un numero di telefono valido!"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, fuzzy, php-format
-msgid "Can't create file '%s'."
-msgstr "Rimuovi"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-#, fuzzy
-msgid "Mime"
-msgstr "Cellulare"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-#, fuzzy
-msgid "empty"
-msgstr "Riprova"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-#, fuzzy
-msgid "Create new attachment"
-msgstr "Lista dei dipartimenti"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-#, fuzzy
-msgid "New Attachment"
-msgstr "Argomenti"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-#, fuzzy
-msgid "This name is already in use."
-msgstr "L'indirizzo principale inserito è già in uso."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-#, fuzzy
-msgid "Please specify a valid name for this attachment."
-msgstr "Specificare una dimenzione valida per le mail da rigettare."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-#, fuzzy
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr "Questa identià possiede estensioni Unix."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-#, fuzzy
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr "Questa identità non possiede estensioni Unix"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-#, fuzzy
-msgid "since"
-msgstr "Privato"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-#, fuzzy
-msgid "Printer inventory extension"
-msgstr "Elimina foto"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-#, fuzzy
-msgid "Supports serial interface"
-msgstr "Mostra dispositiva di rete"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-#, fuzzy
-msgid "Supports parallel interface"
-msgstr "Mostra dispositiva di rete"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-#, fuzzy
-msgid "Supports usb interface"
-msgstr "Mostra dispositiva di rete"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-#, fuzzy
-msgid "Cartridge settings"
-msgstr "Opzioni di posta dell'identità "
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "Lista degli utenti"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "Mostra utenti che corrispondono a"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-#, fuzzy
-msgid "Manage OS-types"
-msgstr "Utenti di Dominio"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-#, fuzzy
-msgid "Please specify a name."
-msgstr "Prego inserire un numero di telefono valido!"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-#, fuzzy
-msgid "Manage System-types"
-msgstr "Sistemi"
-
-#~ msgid "Add"
-#~ msgstr "Aggiungi"
-
-#~ msgid "Cancel"
-#~ msgstr "Annulla"
-
-#~ msgid "Save"
-#~ msgstr "Salva"
diff --git a/gosa-plugins/glpi/locale/messages.po b/gosa-plugins/glpi/locale/messages.po
deleted file mode 100644
index 56d7c144e..000000000
--- a/gosa-plugins/glpi/locale/messages.po
+++ /dev/null
@@ -1,1139 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr ""
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-msgid "GLPI database information"
-msgstr ""
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr ""
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr ""
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-msgid "cartridge"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-msgid "glpi device"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Inventory database"
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-msgid "Inventory database service"
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-msgid "The attribute user is empty or contains invalid characters."
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-msgid "The attribute database is empty or contains invalid characters."
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-msgid "Start"
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-msgid "Restart"
-msgstr ""
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-msgid "Admin"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr ""
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr ""
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-msgid "Inventory extension"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-msgid "Peripheral devices"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi.tpl:112
-msgid "Trading"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-msgid "attachment"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-msgid "Printer inventory extension"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-msgid "Supports serial interface"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-msgid "Supports parallel interface"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-msgid "Supports usb interface"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-msgid "Cartridge settings"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr ""
diff --git a/gosa-plugins/glpi/locale/nl/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/nl/LC_MESSAGES/messages.po
deleted file mode 100644
index ca887cf99..000000000
--- a/gosa-plugins/glpi/locale/nl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1232 +0,0 @@
-# translation of messages.po to Dutch
-# GOsa2 Translations
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-# Alfred Schroeder , 2004.
-# Cajus Pollmeier , 2004.
-#
-# Translator:
-# Niels Klomp (CareWorks ICT Services) , 2005.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2006-06-02 16:58+0100\n"
-"Last-Translator: Niels Klomp (CareWorks ICT Services) \n"
-"Language-Team: CareWorks ICT Services \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "Gebruikers"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "Afdelingen"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr "Gebruik"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr "gebruik"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "Ga naar basis afdelingen"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "Basis"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "Ga een afdeling omhoog"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr "Omhoog"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "Ga naar gebruikers afdeling"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr "Home"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr "Lijst herladen"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr "Verwerk"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "Basis"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "Verwerk afdeling"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-#, fuzzy
-msgid "GLPI database information"
-msgstr "Algemene gebruikersinformatie"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr "Log DB gebruiker"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "Wachtwoord"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr "Database"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr "Hernoemen"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr "Sluiten"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr "Geef a.u.b. een nieuwe naam op"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr "Bijlage"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "Naam"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr "Opmerking"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr "Bestand"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr "Uploaden"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "Status"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr "Bestandsnaam"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr "MIME-type"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr "Kan dit object niet verwijderen, aangezien deze nog in gebruik is."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr "Niet beschikbaar"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr "De opgegeven naam wordt al gebruikt."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-#, fuzzy
-msgid "cartridge"
-msgstr "Cartridges"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-"U kunt dit cartridgetype niet verwijderen, aangezien deze nog steeds in "
-"gebruik is door deze printer(s): '%s'"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr "Cartridges"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "Actie"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "Bewerken"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "Verwijderen"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr "Nieuwe monitor"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr "M"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr "Fabrikant toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr "Website"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "Adres"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "Telefoonnummer"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "Fax"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "E-mail"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr "Opmerkingen"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr "Interne fout. Kan apparaat van het type '%s' niet aanmaken."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-#, fuzzy
-msgid "glpi device"
-msgstr "apparaten"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr "Kan de objectnaam niet detecteren"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-"U kunt dit apparaat niet verwijderen, aangezien deze nog steeds gebruikt "
-"wordt door deze systemen: '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr "apparaten"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "Acties"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr "Nieuw moederbord"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "MB"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr "Nieuwe processor"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr "PR"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr "Nieuwe behuizing"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr "C"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr "Nieuwe netwerk aansluiting"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr "NI"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr "Nieuw geheugen"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr "R"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr "Nieuwe hardeschijf"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr "HDD"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr "Nieuwe schijf"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr "D"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr "Nieuwe controller"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr "CS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr "Nieuwe grafische kaart"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr "GC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr "Nieuwe geluidskaart"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr "SC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr "Nieuwe voeding"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr "PS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr "Nieuw overig apparaat"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr "OC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr "Geef a.u.b. een geldige naam op voor dit apparaat."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr "De opgegeven apparaat naam wordt al gebruikt."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "geen"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr "Geen"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr "Overige"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "Algemeen"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr "Printertype"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "Bewerk"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr "Fabricant"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr "Ondersteunde interfaces"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr "Serieel"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr "Parallel"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr "USB"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr "Contacten"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr "Technisch verantwoordelijke"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr "Contactpersoon"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr "Bijlagen"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "Informatie"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr "Geinstalleerde cartridges"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "Verwijderen"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr "Monitor toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr "Monitor grootte"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr "Inch"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr "Geintegreerde microfoon"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr "Ja"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr "Nee"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr "Geintegreerde luidsprekers"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr "Sub-D"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr "BNC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr "Serienummer"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr "Extra serienummer"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr "Overig apparaat toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr "Voeding toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr "ATX"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr "Voeding"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr "Grafische kaart toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr "Interface"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr "RAM"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr "Controller toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "Grootte"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr "Station toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr "Snelheid"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr "Schrijfbaar"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr "Hardeschijf toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr "RPM"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr "Cache"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Type"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr "Geheugen toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr "Frequentie"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr "Geluidskaart toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr "Netwerkkaart toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr "Hardware adres (MAC)"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "Bandbreedte"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr "Processor toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr "Frequentie"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr "Standaard frequentie"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr "Moederbord toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr "Chipset"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr "Computer behuizing toevoegen/bewerken"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr "formaat"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-#, fuzzy
-msgid "Inventory database"
-msgstr "gebruiker database"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-#, fuzzy
-msgid "Inventory database service"
-msgstr "gebruiker database"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-#, fuzzy
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "Het atribuut '%s' is leeg of bevat ongeldige karakters!"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-#, fuzzy
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "Het atribuut '%s' is leeg of bevat ongeldige karakters!"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "Services"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-#, fuzzy
-msgid "Start"
-msgstr "Opstarten"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr "Stop"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-#, fuzzy
-msgid "Restart"
-msgstr "Opnieuw proberen"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-#, fuzzy
-msgid "Admin"
-msgstr "Beheerders"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr "Fabricanten beheren"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "Waarschuwing"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-"Verzeker u ervan dat u dit daadwerkelijk wil doorvoeren, aangezien het "
-"onmogelijk is voor GOsa om de data terug te halen."
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Het is aan te raden de huidige inhoud van uw MySQL database op te slaan "
-"alvorens u doorgaat. Indien u dat gedaan heeft drukt u op 'Verwijderen' om "
-"door te gaan of op 'Annuleren' om te annuleren."
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr "Referentie"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "Kies"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr "Lijst met beschikbare cartridges voor dit type printer"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-"Deze dialoog maakt het mogelijk om nieuwe cartridgetypes aan te maken en één "
-"of meer types te selecteren voor uw printer. De cartridgetypes zijn "
-"afhankelijk van de door u geselecteerde printer. Voor elk geselecteerde "
-"cartridgetype zal een nieuwe cartridge aangemaakt worden. Dit maakt het "
-"mogelijk om hetzelfde cartridgetype voor meerdere printers te selecteren."
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "Filters"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr "Toon de overeenkomende cartridgetypes"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr "Reguliere expresie voor overeenkomende cartridgetypes"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr "Lijst met bijlages"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-"Deze dialoog maakt het mogelijk om extra objecten (zoals handleidingen, "
-"documenten, etc.), aan de computer die u momenteel aan het bewerken bent, "
-"toe te voegen."
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr "Toon overeenkomende bijlages"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr "Reguliere expressie voor overeenkomende bijlagenamen"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr "Lijst met apparaten"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-"Deze dialoog maakt het mogelijk om een apparaat te verbinden aan de computer "
-"die u momenteel aan het bewerken bent."
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr "Toon overeenkomende apparaten"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr "Reguliere expressie voor overeenkomende apparaat namen"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr "Er is geen server met geldige GLPI database service aanwezig."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr ""
-"Kan niet verbinden met de GLPI database. Er is geen MySQL extensie "
-"beschikbaar. Controleer uw PHP installatie."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr ""
-"Kan niet verbinden met de GLPI database. Controleer uw configuratie a.u.b. "
-"nogmaals."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr "Deze mogelijkheid is nog niet geïmplementeerd."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-"Het toevoegen van een nieuw systeemtype is mislukt, aangezien de typenaam al "
-"in gebruik is."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-"U kunt dit systeemtype niet verwijderen, aangezien deze nog steeds in "
-"gebruik is door deze systemen: '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr "Hernoemen is mislukt. De opgegeven naam wordt al gebruikt."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr ""
-"Het toevoegen van het besturingssysteem is mislukt. De naam wordt al "
-"gebruikt."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-"U kunt dit besturingssysteem niet verwijderen, aangezien deze nog steeds in "
-"gebruik is door deze systemen: '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr ""
-"Het bijwerken van het besturingssysteem is mislukt. De opgegeven naam wordt "
-"al gebruikt."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr "Inventaris verwijderen"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr ""
-"Dit apparaat heeft inventaris mogelijkheden ingeschakeld. U kunt deze "
-"uitschakelen door de knop hieronder te gebruiken."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr "Inventaris toevoegen"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr ""
-"Dit apparaat heeft inventaris mogelijkheden uitgeschakeld. U kunt deze "
-"inschakelen door de knop hieronder te gebruiken."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr ""
-"Kan het GLPI account niet verwijderen, zolang er geen MySQL extensie "
-"beschikbaar is. Controleer uw PHP installatie."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-#, fuzzy
-msgid "Inventory extension"
-msgstr "Verwijder printer mogelijkheden"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr "Besturingssysteem"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "Plaats"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "Model"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-#, fuzzy
-msgid "Peripheral devices"
-msgstr "Printer"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr "Systeemtype"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr "Geinstalleerde apparaten"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-msgid "Trading"
-msgstr "Uit-/Omwisseling"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr "Software"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr "Contracten"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-#, fuzzy
-msgid "attachment"
-msgstr "Bijlage"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-"U kunt deze bijlage niet verwijderen, aangezien deze nog steeds in gebruik "
-"is door deze systemen: '%s'"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr "Er is geen geldig bestand ge-upload."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr "Upload was niet succesvol"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, fuzzy, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr ""
-"De directory '/etc/gosa/glpi/', om GLPI bestanden in te bewaren, ontbreekt. "
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr "Er bestaat al een bestand met dezelfde naam."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr "Kan bestand '%s' niet aanmaken."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr "Bestand is beschikbaar"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr "Bestand is niet leesbaar. Het is mogelijk dat het bestand ontbreekt."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr "Er is momenteel geen bestand ge-upload."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr "MIME"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr "Deze tabel geeft alle beschikbaare bijlages weer"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr "leeg"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr "Nieuwe bijlage aanmaken"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr "Nieuwe bijlage"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr "De opgegeven naam wordt al gebruikt."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr "Geef a.u.b. een geldige naam op voor deze bijlage."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr ""
-"Deze server heeft inventaris mogelijkheden ingeschakeld. U kunt deze "
-"uitschakelen door de knop hieronder te gebruiken."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr ""
-"Deze server heeft inventaris mogelijkheden uitgeschakeld. U kunt deze "
-"inschakelen door de knop hieronder te gebruiken."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-"Kan het opgegeven printertype niet wijzigen naar '%s', aangezien deze "
-"typenaam al bestaat."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr ""
-"Kan het printertype niet verwijderen, aangezien deze nog steeds in gebruik "
-"is door: '%s'"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr "sinds"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-#, fuzzy
-msgid "Printer inventory extension"
-msgstr "Voeg printer extensie toe"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-#, fuzzy
-msgid "Supports serial interface"
-msgstr "Ondersteunde interfaces"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-#, fuzzy
-msgid "Supports parallel interface"
-msgstr "Ondersteunde interfaces"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-#, fuzzy
-msgid "Supports usb interface"
-msgstr "Ondersteunde interfaces"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-#, fuzzy
-msgid "Cartridge settings"
-msgstr "Cartridges"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "Lijst met gebruikers"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr ""
-"Deze dialoog stelt u in staat om een gebruiker als technisch "
-"verantwoordelijk persoon aan te wijzen."
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "Toon overeenkomende gebruikers"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "Reguliere expressie voor overeenkomende gebruikersnamen"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr "OS-types beheren"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-"U kunt deze fabrikant niet verwijderen, aangezien deze nog steeds in gebruik "
-"is door deze systemen: '%s'"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr "Geef a.u.b. een naam op."
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr "De opgegeven naam is al in gebruik. Kies a.u.b. een andere naam."
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr "Systeemtypes beheren"
-
-#~ msgid "You're about to delete the glpi attachment component '%s'."
-#~ msgstr "U staat op het punt het GLPI bijlage component '%s' te verwijderen."
-
-#~ msgid "Add"
-#~ msgstr "Toevoegen"
-
-#~ msgid "Cancel"
-#~ msgstr "Annuleren"
-
-#~ msgid "Save"
-#~ msgstr "Opslaan"
-
-#~ msgid "You're about to delete the glpi device '%s'."
-#~ msgstr "U staat op het punt het GLPI apparaat '%s' te verwijderen."
-
-#~ msgid "You're about to delete the glpi cartridge type '%s'."
-#~ msgstr "U staat op het punt het GLPI cartridgetype '%s' te verwijderen."
diff --git a/gosa-plugins/glpi/locale/pl/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/pl/LC_MESSAGES/messages.po
deleted file mode 100644
index e7e327560..000000000
--- a/gosa-plugins/glpi/locale/pl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1189 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: polski\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2009-09-05 15:29+0100\n"
-"Last-Translator: Piort Rybicki \n"
-"Language-Team: Piotr Rybicki \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Polish\n"
-"X-Poedit-Country: POLAND\n"
-"X-Poedit-SourceCharset: iso-8859-2\n"
-"X-Poedit-Basepath: tedst\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "Użytkownicy"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "Departamenty"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr "Użyj"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr "użyj"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "Idź do gÅównego departamentu"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "GÅówny"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "Idź jeden departament wyżej"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr "Góra"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "Przejdź do departamentu użytkowników"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr "Katalog domowy"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr "PrzeÅaduj listÄ"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr "WyÅlij"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "Kontener"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "Zatwierdź departament"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-msgid "GLPI database information"
-msgstr "informacje bazy danych GLPI"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr "Użytkownik bazy logowania"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "HasÅo"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr "Baza"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr "ZmieÅ nazwÄ"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr "Zamknij"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr "ProszÄ podaÄ nowÄ
nazwÄ."
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr "ZaÅÄ
cznik"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "ImiÄ"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr "Komentarz"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr "Plik"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr "Wgraj"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "Status"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr "Nazwa pliku"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr "Typ-Mime"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr "Nie można usunÄ
Ä tego elementu, ponieważ jest wciÄ
ż w użyciu."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr "B/D"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr "Wybrana nazwie już jest w użyciu."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-msgid "cartridge"
-msgstr "Kartriidź"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-"Nie można usunÄ
Ä tego typu kartridża. Jest wciÄ
ż używany przez drukarkÄ(i) '%"
-"s'."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr "Kartridźe"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "Akcja"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "Edytuj"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "UsuÅ"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr "Nowy monitor"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr "M"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr "Dodaj/Edytuj producenta"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr "Strona WWW"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "Adres"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "Numer telefonu"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "Fax"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "Email"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr "Komentarze"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr "BÅÄ
d wewnÄtrzny: nie można utworzyÄ urzÄ
dzenia typu '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-msgid "glpi device"
-msgstr "urzÄ
dzenie glpi"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr "Nie można wykryÄ nazwy obiektu."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-"Nie można usunÄ
Ä tego urzÄ
dzenia, jest ono wciÄ
ż używane przez te(n) system"
-"(y) '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr "urzÄ
dzenia"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "Akcje"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr "Nowa pÅyta gÅówna"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "MB"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr "Nowy procesor"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr "P"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr "Nowa obudowa"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr "C"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr "Nowy interfejs sieciowy"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr "NI"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr "Nowa pamiÄÄ RAM"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr "R"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr "Nowy dysk twardy"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr "Dysk"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr "Nowy napÄd"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr "D"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr "Nowy kontroler"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr "CS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr "Nowa karta graficzna"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr "GC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr "Nowa karta dźwiÄkowa"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr "SC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr "Nowy zasilacz"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr "PS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr "Nowe inne urzÄ
dzenie"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr "OC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr "ProszÄ podaÄ prawidÅowÄ
nazwÄ dla tego urzÄ
dzenia."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr "Ta nazwa urzÄ
dzenia jest już w użyciu."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "żaden"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr "Brak"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr "Inne"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "Ogólne"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr "Typ drukarki"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "edytuj"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr "Producent"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr "Wspierane interfejsy"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr "Szeregowy"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr "RównolegÅy"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr "USB"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr "Kontakty"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr "Osoba techniczna"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr "Osoba kontaktowa"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr "ZaÅÄ
czniki"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "Informacja"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr "Zainstalowane kartridźe"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "UsuÅ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr "Dodaj/Edytuj monitor"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr "Rozmiar monitora"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr "Cale"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr "Zintegrowany mikrofon"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr "Tak"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr "Nie"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr "Zintegrowane gÅoÅniki"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr "Pod-D"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr "BNC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr "Numer seryjny"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr "Dodatkowy numer seryjny"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr "Dodaj/Edytuj urzÄ
dzenie"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr "Dodaj/ZmieÅ zasilacz komputera"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr "Atx"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr "Moc"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr "Dodaj/ZmieÅ kartÄ graficznÄ
"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr "Interfejs"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr "PamiÄÄ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr "Dodaj/Edytuj kontroler"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "Rozmiar"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr "Dodaj/Edytuj napÄd"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr "PrÄdkoÅÄ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr "Zapisywalny"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr "Dodaj/Edytuj dysk twardy"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr "Rpm"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr "Cache"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Typ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr "Dodaj/Edytuj pamiÄÄ RAM"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr "CzÄstotliwoÅÄ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr "Dodaj/ZmieÅ kartÄ dźwiÄkowÄ
"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr "Dodaj/ZmieÅ interfejs sieciowy"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr "Adres MAC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "PrzepustowoÅÄ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr "Dodaj/Edytuj procesor"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr "CzÄstotliwoÅÄ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr "DomyÅlna czÄstotliwoÅÄ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr "Dodaj/Edytuj pÅytÄ gÅównÄ
"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr "Chipset"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr "Dodaj/ZmieÅ obudowÄ komputera"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr "format"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Inventory database"
-msgstr "Baza inwentarza"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-msgid "Inventory database service"
-msgstr "UsÅuga bazy inwentarza"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "Atrybut użytkownik jest pusty lub zawiera nieprawidÅowe znaki."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "Podany atrybut bazy danych jest pusty lub zawiera nieprawidÅowe znaki."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "UsÅugi"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-msgid "Start"
-msgstr "Start"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr "Zatrzymaj"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-msgid "Restart"
-msgstr "Restart"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-msgid "Admin"
-msgstr "Admin"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr "ZarzÄ
dzaj producentami"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "Ostrzeżenie"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-"ProszÄ upewniÄ siÄ, że faktycznie chcesz wykonaÄ tÄ
operacjÄ. Nie ma "
-"możliwoÅci odwrócenia tego procesu."
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Przed wykonaniem tej operacji zaleca siÄ wykonanie kopii bezpieczeÅstwa bazy "
-"MySQL. NaciÅnij 'UsuÅ' aby kontynuowaÄ, lub 'Anuluj' aby przerwaÄ."
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr "Referencja"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "Wybierz"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr "Lista dostÄpnych typów kartridży dla tego typu drukarki"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-"Ten dialog umożliwia tworzenie nowych typów kartridży oraz wybrania jednego "
-"lub wiÄcej typów drukarki. Typ kartridża zależy od typu wybranej drukarki. "
-"Dla każdego wybranego typu katridża zostanie utworzony nowy kartridż. To "
-"pozwala na wybranie tego samego typu kartidża dla wiÄcej niż jednej drukarki."
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "Filtry"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr "WyÅwietl pasujÄ
ce typy katridży"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr "Wyrażenie regularne dla dopasowania kartridźy"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr "Lista zaÅÄ
czników"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-"Ten dialog umożliwia przypisanie dodatkowych obiektów (np dokumentacja) do "
-"obecnie edytowanego komputera."
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr "WyÅwietl pasujÄ
ce zaÅÄ
czniki"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr "Wyrażenie regularne dla dopasowania nazw zaÅÄ
czników"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr "Lista urzÄ
dzeÅ"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-"Ten dialog umożliwia przypiÄcie urzÄ
dzenia do obecnie edytowanego komputera."
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr "WyÅwietl pasujÄ
ce urzÄ
dzenia"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr "Wyrażenie regularne dla dopasowania nazw urzÄ
dzeÅ"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr "Brak serwera z poprawnÄ
usÅugÄ
bazy glpi."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr ""
-"Nie można poÅÄ
czyÄ siÄ z bazÄ
danych glpi, brak rozszerzenia php-mysql."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr ""
-"Nie można poÅÄ
czyÄ siÄ z bazÄ
danych glpi, proszÄ sprawdziÄ konfiguracjÄ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr "Ta funkcjonalnoÅÄ nie jest jeszcze zaimplementowana."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-"Dodawanie nowego typu systemu nieudane, nazwa typu systemu jest już używana."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-"Nie można usunÄ
Ä tego typu systemu. Jest wciÄ
ż używany przez system(y) '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr "Zmiana nazwy nieudana, ta nazwa typu systemu jest już w użyciu."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr ""
-"Dodawanie nowego systemu operacyjnego nieudane, podana nazwa już istnieje."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-"Nie można usunÄ
Ä tego systemu operacyjnego. Jest wciÄ
ż używany przez system"
-"(y) '%s'."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr ""
-"Aktualizacja systemu operacyjnego nieudana, podana nazwa jest już używana."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr "UsuÅ inwentarz"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr ""
-"To urzÄ
dzenie posiada wÅÄ
czone informacje inwentarza. Można je wyÅÄ
czyÄ "
-"klikajÄ
c poniżej."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr "Dodaj inwentarz"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr ""
-"To urzÄ
dzenie posiada wyÅÄ
czone informacje inwentarza. Można je wÅÄ
czyÄ "
-"klikajÄ
c poniżej."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr "Nie można usunÄ
Ä konta glpi, brak obsÅugi mysql w php."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr "Glpi"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-msgid "Inventory extension"
-msgstr "Rozszerzenie inwentarza"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr "System operacyjny"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "Lokalizacja"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "Model"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-msgid "Peripheral devices"
-msgstr "UrzÄ
dzenie peryferyjne"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr "Typ systemu"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr "Zainstalowane urzÄ
dzenia"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-msgid "Trading"
-msgstr "Handel"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr "Oprogramowanie"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr "Kontrakty"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-msgid "attachment"
-msgstr "zaÅÄ
cznik"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-"Nie można usunÄ
Ä tego zaÅÄ
cznika, jest wciÄ
ż używany przez system(y) '%s'"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr "Brak wgranego poprawnego pliku."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr "Wgrywanie nieudane."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr "Brak katalogu '/%s/glpi' do przechowywania plików glpi."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr "Już istnieje wgrany plik z tÄ
samÄ
nazwÄ
."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr "Nie można stworzyÄ pliku '%s'."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr "Plik jest dostÄpny"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr "Nie można czytaÄ pliku, prawdopodobnie plik nie istnieje."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr "Obecnie brak wgranych plików"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr "Mime"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr "Ta tabela wyÅwietla wszystkie dostepne zaÅÄ
czniki"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr "pusto"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr "Stwórz nowy zaÅÄ
cznik"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr "Nowy zaÅÄ
cznik"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr "Ta nazwa jest już w użyciu."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr "ProszÄ podaÄ prawidÅowÄ
nazwÄ dla tego zaÅÄ
cznika."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr ""
-"Ten serwer posiada cechy inwentarza. Można je wyÅÄ
czyÄ klikajÄ
c poniżej"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr ""
-"Ten serwer nie posiada cech inwentarza. Można je wÅÄ
czyÄ klikajÄ
c poniżej."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-"Nie można zmieniÄ nazwy typu drukarki na '%s' ponieważ ta nazwa typu jest "
-"już używana."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr "Nie można usunÄ
Ä typu drukarki, jest wciÄ
ż w użyciu przez '%s'."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr "od"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-msgid "Printer inventory extension"
-msgstr "rozszerzenie inwentarza drukarek"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-msgid "Supports serial interface"
-msgstr "Wspiera interfejs szeregowy"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-msgid "Supports parallel interface"
-msgstr "Wspiera interfejs równolegÅy"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-msgid "Supports usb interface"
-msgstr "Wspiera interfejs USB"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-msgid "Cartridge settings"
-msgstr "Ustawienia kartridźy"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "Lista użytkowników"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr "Ten dialog umożliwia wybranie użytkownika jako kontaktu technicznego."
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "WyÅwietl użytkowników pasujÄ
cych"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "Wyrażenie regularne do dopasowania nazw użytkowników"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr "ZarzÄ
dzaj typami systemów operacyjnych"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-"Nie można usunÄ
Ä tego producenta, jest on wciÄ
ż używany przez te system(y) '%"
-"s'"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr "ProszÄ podaÄ nazwÄ"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr "Podana nazwa jest już używana, proszÄ wybraÄ innÄ
."
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr "ZarzÄ
dzaj typami systemów"
-
-#~ msgid "You're about to delete the glpi attachment component '%s'."
-#~ msgstr "Zamierzasz usunÄ
Ä zaÅÄ
cznik glpi '%s'."
-
-#~ msgid "Add"
-#~ msgstr "Dodaj"
-
-#~ msgid "Cancel"
-#~ msgstr "Anuluj"
-
-#~ msgid "Save"
-#~ msgstr "Zapisz"
-
-#~ msgid "You're about to delete the glpi device '%s'."
-#~ msgstr "Zamierzasz usunÄ
Ä urzÄ
dzenie blpi '%s'."
-
-#~ msgid "You're about to delete the glpi cartridge type '%s'."
-#~ msgstr "Zamierzasz usunÄ
Ä kartridż glpi typu '%s'."
diff --git a/gosa-plugins/glpi/locale/pt_BR/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/pt_BR/LC_MESSAGES/messages.po
deleted file mode 100644
index 5e468ce3d..000000000
--- a/gosa-plugins/glpi/locale/pt_BR/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1106 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: GOsa plugins - glpi\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2010-03-13 17:47-0300\n"
-"Last-Translator: Marcos Amorim \n"
-"Language-Team: Marcos Amorim Clever de Oliveira \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: BRAZIL\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "Usuários"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "Departamentos"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr "Usar"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr "usar"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "Ir para a raiz do departamento"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "Raiz"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "Subir um nÃvel de departamento"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr "Acima"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "Ir para usuários do departamento"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr "Home"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr "Recarregar lista"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr "Enviar"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "Base"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "Submeter departamento"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-msgid "GLPI database information"
-msgstr "Informações do banco de dados GLPI"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr "Usuário do banco de dados"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "Senha"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr "Banco de dados"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr "Renomear"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr "Fechar"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr "Por favor entre com um novo nome"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr "Anexo"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "Nome"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr "Comentário"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr "Arquivo"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr "Upload"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "Estatus"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr "Nome do arquivo"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr "Tipo Mime"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr "Não é possÃvel excluir esta entrada, ela ainda esta em uso."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr "N/A"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr "O nome selecionado já está em uso."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-msgid "cartridge"
-msgstr "cartucho"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid "You can't delete this cartridge type, it is still in use by this printer(s) '%s'."
-msgstr "Você não pode excluir este tipo de cartucho, ele ainda esta em uso por estas impressora(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr "Cartuchos"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "Ação"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "Editar"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "Excluir"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr "Novo Monitor"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr "M"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr "Adiciona/Edita fabricante"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr "Página na Web"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "Endereço"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "Número de telefone"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "Fax"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "Email"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr "Comentários"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr "Erro interno, não é possÃvel criar o tipo de dispositivo para '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-msgid "glpi device"
-msgstr "dispositivo gpli"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr "Não é possÃvel detectar o nome."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid "You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr "Você não pode excluir este dispositivo, ele ainda esta em uso por este(s) sistema(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr "dispositivos"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "Ações"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr "Nova placa mãe"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "MB"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr "Novo processador"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr "P"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr "Novo gabinete"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr "C"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr "Nova placa de rede"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr "NI"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr "Nova memória"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr "R"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr "Novo disco rigido"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr "HDD"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr "Novo driver"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr "D"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr "Nova controladora"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr "CS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr "Nova placa de vÃdeo"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr "GC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr "Nova placa de som"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr "SC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr "Nova fonte de alimentação"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr "PS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr "Novo dispositivo genérico"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr "OC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr "Você não informou um nome válido para este dispositivo."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr "O nome já esta em uso."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "nenhum"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr "Nenhum"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr "Outro"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "Geral"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr "ACL tipo"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "editar"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr "Fabricante"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr "Interfaces suportadas"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr "Serial"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr "Paralela"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr "USB"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr "Contatos"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr "Técnico responsável"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr "Contato"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr "Anexos"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "Informação"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr "Cartuchos instalados"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "Remover"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr "Adiciona/Edita monitor"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr "Tamanho do monitor"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr "Inch"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr "Microfone integrado"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr "Sim"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr "Não"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr "Auto falantes integrado"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr "Sub-D"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr "BNC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr "Número serial"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr "Número serial adicional"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr "Adiciona/Edita outros dispositivos"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr "Adiciona/Edita fonte de alimentação"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr "Atx"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr "Força"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr "Adiciona/Edita placa de vÃdeo"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr "Interface"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr "Ram"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr "Adiciona/Edita controladora"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "Tamanho"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr "Adiciona/Edita drive"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr "Velocidade"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr "Gravável"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr "Adiciona/Edita disco rigido"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr "RPM"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr "Cache"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Tipo"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr "Adiciona/Edita memória"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr "Frequência"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr "Adiciona/Edita placa de som"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr "Adiciona/Edita placa de rede"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr "Endereço MAC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "Largura de banda"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr "Adiciona/Edita processador"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr "Frequência"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr "Frequência padrão"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr "Adiciona/Edita placa mãe"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr "Chipset"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr "Adiciona/Edita gabinete"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr "formato"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Inventory database"
-msgstr "Banco de dados inventário"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-msgid "Inventory database service"
-msgstr "Serviço de banco de dados do inventário"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "O campo usuário esta vazio ou contém caracteres inválidos."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "O campo banco de dados esta vazio ou contém caracteres inválidos."
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "Serviços"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-msgid "Start"
-msgstr "Iniciar"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr "Parar"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-msgid "Admin"
-msgstr "Admin"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr "Gerenciar fabricantes"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "Aviso"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid "Please double check if your really want to do this since there is no way for GOsa to get your data back."
-msgstr "Por favor, verifique se você realmente quer fazer isso pois não há maneira do GOsa adquirir seus dados novamente."
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid "Best thing to do before performing this action would be to save the current contents of your MySql database in a file. So - if you've done so - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "O melhor que se tem a fazer antes de realizar esta ação é salvar os dados do seu banco de dados MySQL em um arquivo. Então, se pronto, pressione 'Deletar' para continuar ou 'Cancelar' para abortar."
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr "Referência"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "Escolha"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr "Lista de tipos de cartuchos disponÃveis para este tipo de impressora"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid "This dialog allows you to create new types of cartridges, and select one or more types for your printer. Cartridge types depends on the printer type you have selected. For each selected cartridge type there will be a new cartridge created, this allows you to select the same cartridge type for more then one printer."
-msgstr "Este diálogo permite que você crie novos tipos de cartuchos e selecione um ou mais modelo para sua impressora. Tipos de cartuchos dependem do modelo da impressora que você selecionar. Para cada tipo de cartucho selecionado aqui, um novo cartucho será criado, isto permite que você selecione o mesmo tipo de cartucho para mais de uma impressora."
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "Filtros"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr "Mostrar tipos de cartuchos correspondente"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr "Expressões regulares para tipos de cartuchos correspondentes"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr "Lista de anexos"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid "This dialog allow you to attach additional objects (like manuals, guides, etc.) to your currently edited computer."
-msgstr "Este diálogo permite que você anexe objetos adicionais (ex. manuais, guias, etc.) para o computador atual."
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr "Exibir anexos correspondentes"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr "Expressões regulares para correspondência nomes de anexo"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr "Lista de dispositivos"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid "This dialog allows you to attach a device to your currently edited computer."
-msgstr "Este diálogo permite que você adicione um dispositivo para seu computador atual."
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr "Exibir dispositivos correspondente"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr "Expressões regulares para nomes de dispositivos correspondentes"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr "Não há nenhum servidor válido com o serviço de banco de dados do glpi."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr "Não é possÃvel conectar ao banco de dados do glpi, a extensão php-mysql esta faltando."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr "Não é possÃvel conectar ao banco de dados do GLPI, verifique configuração novamente."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr "Falha ao baixar o anexo. O anexo não foi encontrado no servidor."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr "Falha ao baixar o anexo. O anexo não tem um id válido."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr "Este recurso não esta implementada ainda."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr "Falha ao adicionar novo tipo de sistema, o tipo de sistema já esta em uso."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid "You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr "Você não pode excluir este tipo de sistema, ele ainda esta em uso por este(s) sistema(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr "Falha ao renomear, este nome do tipo de sistema já esta sendo usado."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr "Falha ao adicionar novo sistema operacionas, o nome informado já esta em uso."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid "You can't delete this operating system, it is still in use by these system(s) '%s'"
-msgstr "Você não pode excluir este sistema operacional, ele ainda esta em uso por este(s) sistema(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr "Falha ao atualizar o sistema operacional, o nome informado já esta em uso."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid "Could not add the given user, the users dn is too long, only 100 characters are allowed here."
-msgstr "Não foi possÃvel adicionar o usuário, o DN de usuário é muito grande, apenas 100 caracteres são permitidos aqui."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr "Remover inventário"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid "This device has inventory informations enabled. You can disable them by clicking below."
-msgstr "Este dispositivo tem a informação de inventário habilitado. Você pode desativá-los clicando abaixo."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr "Adicionar inventário"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid "This device has inventory informations disabled. You can enable them by clicking below."
-msgstr "Este dispositivo tem a informação de inventário desabilitado. Você pode ativá-los clicando abaixo."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr "Não é possÃvel remover a conta GLPI, enquanto extensão do MySQL estiver faltando."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr "Glpi"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-msgid "Inventory extension"
-msgstr "Extensão inventário"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr "Sistema operacional"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "Localização"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "Modelo"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-msgid "Peripheral devices"
-msgstr "Dispositivos periféricos"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr "Tipo de sistema"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr "Dispositivos instalados"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-msgid "Trading"
-msgstr "Negócio"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr "Software"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr "Contratos"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-msgid "attachment"
-msgstr "anexo"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid "You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr "Você não pode excluir este anexo, ele ainda esta em uso por este(s) sistema(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr "Não há nenhum arquivo enviado válido."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr "Não é possÃvel carregar o arquivo!"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr "O diretório '%s/glpi/' não existe."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr "Já existe um arquivo com o mesmo nome que carregou."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr "Não foi possÃvel criar arquivo '%s'."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr "Arquivo disponÃvel."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr "Arquivo não é legÃvel, possivelmente o arquivo está faltando."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr "Nenhum arquivo carregado."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr "Mime"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr "Esta tabela mostra todos os anexos disponÃveis."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr "vazio"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr "Criar novo anexo"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr "Novo anexo"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr "Este nome já está em uso."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr "Por favor informe um nome válido para este anexo"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid "This server has inventory features enabled. You can disable them by clicking below."
-msgstr "Este servidor possui extensão de inventário habilitada. Você pode desabilita-la clicando abaixo."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid "This server has inventory features disabled. You can enable them by clicking below."
-msgstr "Esta conta possui extensão de inventário desabilitada. Você pode habilita-la clicando abaixo."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid "Can't rename given printer type to '%s', because this type name already exists."
-msgstr "Não é possÃvel mudar o nome de determinado tipo de impressora '%s', porque este tipo de nome já existe."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr "Não é possÃvel excluir o tipo de impressora, ele ainda esta em uso por '%s'."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr "desde"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-msgid "Printer inventory extension"
-msgstr "Extensão de inventário de impressora"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-msgid "Supports serial interface"
-msgstr "Suporte para interface serial"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-msgid "Supports parallel interface"
-msgstr "Suporte para interface paralela"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-msgid "Supports usb interface"
-msgstr "Suporte para interface usb"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-msgid "Cartridge settings"
-msgstr "Configurações de cartuchos"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "Lista de usuários"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid "This dialog allows you to select a user as technical responsible person."
-msgstr "Este diálogo permite que você selecione um técnico responsável."
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "Exibir usuários correspondente"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "Expressões regulares para correspondência nomes de usuário"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr "Gerenciar tipo de SO"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid "You can't delete this manufacturer, it is still in use by these system(s) '%s'"
-msgstr "Você não pode excluir este fabricante, ele ainda esta em uso por este(s) sistema(s) '%s'."
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr "Por favor, especifique um nome."
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr "O nome informado já esta em uso, por favor escolha um outro."
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr "Gerenciar tipo de sistema"
-
diff --git a/gosa-plugins/glpi/locale/ru/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/ru/LC_MESSAGES/messages.po
deleted file mode 100644
index 9633bcd4c..000000000
--- a/gosa-plugins/glpi/locale/ru/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1316 +0,0 @@
-# Translation of messages.po to Russian
-# Valia V. Vaneeva , 2004.
-# $Id: messages.po,v 1.61 2005/04/18 10:37:13 migor-guest Exp $
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2005-04-18 14:35+0300\n"
-"Last-Translator: Igor Muratov \n"
-"Language-Team: ALT Linux Team\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: poEdit 1.3.1\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "ÐолÑзоваÑели"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "ÐодÑазделениÑ"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-#, fuzzy
-msgid "Use"
-msgstr "ÐолÑзоваÑелÑ"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#, fuzzy
-msgid "use"
-msgstr "ÐÑÑÑ"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-#, fuzzy
-msgid "Go to root department"
-msgstr "СпиÑок подÑазделений"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-#, fuzzy
-msgid "Root"
-msgstr "ÐеÑезагÑÑзиÑÑ"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-#, fuzzy
-msgid "Go up one department"
-msgstr "ÐодÑазделение"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-#, fuzzy
-msgid "Go to users department"
-msgstr "ÐÑбеÑиÑе подÑазделение"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-#, fuzzy
-msgid "Home"
-msgstr "ÐÐ¼Ñ ÑиÑÑемÑ"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "ÐеÑка"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-#, fuzzy
-msgid "Submit department"
-msgstr "ÐоказаÑÑ Ð¿Ð¾Ð´ÑазделениÑ"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-#, fuzzy
-msgid "GLPI database information"
-msgstr "ÐбÑÐ°Ñ Ð¸Ð½ÑоÑмаÑÐ¸Ñ Ð¾ полÑзоваÑеле"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-#, fuzzy
-msgid "Logging DB user"
-msgstr "СлÑжба пеÑаÑи"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "ÐаÑолÑ"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-#, fuzzy
-msgid "Database"
-msgstr "ÐÐ°Ð·Ñ Ð´Ð°Ð½Ð½ÑÑ
"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-#, fuzzy
-msgid "Rename"
-msgstr "ÐÐ¼Ñ ÑеÑвеÑа"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-#, fuzzy
-msgid "Close"
-msgstr "ÐÑбÑаÑÑ"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-#, fuzzy
-msgid "Please enter a new name"
-msgstr "ÐведиÑе адÑÐµÑ ÑеÑвеÑа"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-#, fuzzy
-msgid "Attachment"
-msgstr "подÑазделениÑ"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "ФамилиÑ"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-#, fuzzy
-msgid "Comment"
-msgstr "ÐонÑакÑ"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-#, fuzzy
-msgid "File"
-msgstr "ФайлÑ"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-#, fuzzy
-msgid "Upload"
-msgstr "ÐагÑÑзка пÑоÑеÑÑоÑа"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "СоÑÑоÑние"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-#, fuzzy
-msgid "Filename"
-msgstr "ÐÐ¼Ñ ÑеÑвеÑа"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-#, fuzzy
-msgid "Mime-type"
-msgstr "Тип"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-#, fuzzy
-msgid "Can't delete this entry, it is still in use."
-msgstr "ÐпиÑание гÑÑппÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-#, fuzzy
-msgid "The selected name is already in use."
-msgstr "Указанное Ð¸Ð¼Ñ Ñже иÑполÑзÑеÑÑÑ."
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-#, fuzzy
-msgid "cartridge"
-msgstr "ÐлиенÑÑкие ÑÑÑÑойÑÑва"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "ÐейÑÑвие"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "ÐзмениÑÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "УдалиÑÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-#, fuzzy
-msgid "New monitor"
-msgstr "ÐовÑй паÑолÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-#, fuzzy
-msgid "M"
-msgstr "Ðб"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-#, fuzzy
-msgid "Add/Edit manufacturer"
-msgstr "РедакÑиоваÑÑ Ð¾Ð±ÑекÑ"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-#, fuzzy
-msgid "Website"
-msgstr "запиÑÑ"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "ÐдÑеÑ"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-#, fuzzy
-msgid "Phone number"
-msgstr "ТелеÑоннÑе номеÑа"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "ФакÑ"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "Email"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-#, fuzzy
-msgid "Comments"
-msgstr "ÐонÑакÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-#, fuzzy
-msgid "glpi device"
-msgstr "УÑÑÑойÑÑва"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-#, fuzzy
-msgid "devices"
-msgstr "УÑÑÑойÑÑва"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "ÐейÑÑвиÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-#, fuzzy
-msgid "New mainbord"
-msgstr "ÐовÑй паÑолÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "Ðб"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-#, fuzzy
-msgid "New processor"
-msgstr "ÐовÑй паÑолÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-#, fuzzy
-msgid "New case"
-msgstr "полÑзоваÑели"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-#, fuzzy
-msgid "New network interface"
-msgstr "СеÑевой пÑинÑеÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-#, fuzzy
-msgid "NI"
-msgstr "Unix"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-#, fuzzy
-msgid "New ram"
-msgstr "полÑзоваÑели"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-#, fuzzy
-msgid "New hard disk"
-msgstr "СеÑвеÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-#, fuzzy
-msgid "New drive"
-msgstr "СеÑвеÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-#, fuzzy
-msgid "D"
-msgstr "UID"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-#, fuzzy
-msgid "New controller"
-msgstr "ÐÐ¾Ð¼ÐµÑ ÑелеÑона"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-#, fuzzy
-msgid "New sound card"
-msgstr "ÐовÑй паÑолÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-#, fuzzy
-msgid "New misc device"
-msgstr "СеÑевÑе ÑÑÑÑойÑÑва"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-#, fuzzy
-msgid "You have to specify a valid name for this device."
-msgstr "УкажиÑе коÑÑекÑнÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-#, fuzzy
-msgid "This device name is already in use."
-msgstr "Указанное Ð¸Ð¼Ñ Ñже иÑполÑзÑеÑÑÑ."
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "неÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-#, fuzzy
-msgid "None"
-msgstr "неÑ"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-#, fuzzy
-msgid "Other"
-msgstr "ФилÑÑÑÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "ÐбÑее"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-#, fuzzy
-msgid "Printer type"
-msgstr "ÐÐ¼Ñ Ð¿ÑинÑеÑа"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-#, fuzzy
-msgid "edit"
-msgstr "ÐзмениÑÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-#, fuzzy
-msgid "Supported interfaces"
-msgstr "СеÑевой пÑинÑеÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-#, fuzzy
-msgid "Serial"
-msgstr "ÑеÑминалÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-#, fuzzy
-msgid "Parallel"
-msgstr "ÐеÑеменнаÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-#, fuzzy
-msgid "Contacts"
-msgstr "ÐонÑакÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-#, fuzzy
-msgid "Contact person"
-msgstr "ÐонÑакÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-#, fuzzy
-msgid "Attachments"
-msgstr "подÑазделениÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "ÐнÑоÑмаÑиÑ"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-#, fuzzy
-msgid "Installed cartridges"
-msgstr "ÐлиенÑÑкие ÑÑÑÑойÑÑва"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "УдалиÑÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-#, fuzzy
-msgid "Add/Edit monitor"
-msgstr "РедакÑиоваÑÑ Ð¾Ð±ÑекÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-#, fuzzy
-msgid "Monitor size"
-msgstr "ÐониÑоÑинг"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-#, fuzzy
-msgid "Inch"
-msgstr "ФÑанÑÑзÑкий"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-#, fuzzy
-msgid "Yes"
-msgstr "СиÑÑемÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-#, fuzzy
-msgid "No"
-msgstr "неÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-#, fuzzy
-msgid "Serial number"
-msgstr "ТеÑминал"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-#, fuzzy
-msgid "Additional serial number"
-msgstr "СеÑийнÑй Ð½Ð¾Ð¼ÐµÑ ÑеÑÑиÑикаÑа"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-#, fuzzy
-msgid "Add/Edit other device"
-msgstr "ÐвÑÐºÐ¾Ð²Ð°Ñ ÐºÐ°ÑÑа"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-#, fuzzy
-msgid "Power"
-msgstr "ÐоÑÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-#, fuzzy
-msgid "Interface"
-msgstr "ТеÑминал-ÑеÑвеÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-#, fuzzy
-msgid "Ram"
-msgstr "ÐÐ¼Ñ ÑеÑвеÑа"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-#, fuzzy
-msgid "Add/Edit controller"
-msgstr "ÐÐ¾Ð¼ÐµÑ ÑелеÑона"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "РазмеÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-#, fuzzy
-msgid "Speed"
-msgstr "Ðол"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-#, fuzzy
-msgid "Writeable"
-msgstr "запиÑÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-#, fuzzy
-msgid "Add/Edit harddisk"
-msgstr "СеÑвеÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr ""
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-#, fuzzy
-msgid "Cache"
-msgstr "ÐÑмена"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "Тип"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-#, fuzzy
-msgid "Add/Edit memory"
-msgstr "РедакÑиоваÑÑ Ð¾Ð±ÑекÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-#, fuzzy
-msgid "Frequenz"
-msgstr "ÐÐ¾Ð¼ÐµÑ ÑелеÑона"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-#, fuzzy
-msgid "Add/Edit sound card"
-msgstr "ÐовÑй паÑолÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-#, fuzzy
-msgid "Add/Edit network interface"
-msgstr "СеÑевой пÑинÑеÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-#, fuzzy
-msgid "MAC address"
-msgstr "MAC-адÑеÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "ÐÑопÑÑÐºÐ½Ð°Ñ ÑпоÑобноÑÑÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-#, fuzzy
-msgid "Add/Edit processor"
-msgstr "ÐовÑй паÑолÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-#, fuzzy
-msgid "Frequence"
-msgstr "ÐÐ¾Ð¼ÐµÑ ÑелеÑона"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-#, fuzzy
-msgid "Default frequence"
-msgstr "Ðо ÑмолÑаниÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-#, fuzzy
-msgid "Add/Edit motherboard"
-msgstr "ÐлавиаÑÑÑа"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-#, fuzzy
-msgid "Chipset"
-msgstr "ÑбÑоÑ"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-#, fuzzy
-msgid "Add/Edit computer case"
-msgstr "не полнÑй"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-#, fuzzy
-msgid "format"
-msgstr "ÐоÑÑ"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-#, fuzzy
-msgid "Inventory database"
-msgstr "ÐÐ°Ð·Ñ Ð´Ð°Ð½Ð½ÑÑ
"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-#, fuzzy
-msgid "Inventory database service"
-msgstr "ÐÐ°Ð·Ñ Ð´Ð°Ð½Ð½ÑÑ
"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-#, fuzzy
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "ÐепÑавилÑное Ñказание ÑаймаÑÑа '%s'"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-#, fuzzy
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "ÐепÑавилÑное Ñказание ÑаймаÑÑа '%s'"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "СеÑвиÑÑ"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-#, fuzzy
-msgid "Start"
-msgstr "ÐапÑÑк"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-#, fuzzy
-msgid "Stop"
-msgstr "ÐÑноÑение"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-#, fuzzy
-msgid "Restart"
-msgstr "ÐовÑоÑиÑÑ"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-#, fuzzy
-msgid "Admin"
-msgstr "DN админиÑÑÑаÑоÑа"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-#, fuzzy
-msgid "Manage manufacturers"
-msgstr "РедакÑиоваÑÑ Ð¾Ð±ÑекÑ"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "ÐÑедÑпÑеждение"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr ""
-"ÐодÑмайÑе еÑе Ñаз, дейÑÑвиÑелÑно ли вам нÑжно Ñдаление, Ñак как GOsa не "
-"ÑÐ¼Ð¾Ð¶ÐµÑ Ð¾ÑмениÑÑ ÑезÑлÑÑаÑÑ ÑÑой опеÑаÑии."
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-#, fuzzy
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"ÐÑÑÑе вÑего пеÑед Ñдалением ÑоÑ
ÑаниÑÑ ÑезеÑвнÑÑ ÐºÐ¾Ð¿Ð¸Ñ ÑекÑÑего деÑева LDAP в "
-"Ñайл. ÐÑли Ð²Ñ Ñделали ÑÑо и дейÑÑвиÑелÑно Ñ
оÑиÑе вÑполниÑÑ Ñдаление, нажмиÑе "
-"УдалиÑÑ , инаÑе нажмиÑе ÐÑмена ."
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-#, fuzzy
-msgid "Reference"
-msgstr "СÑÑлки"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "ÐÑбÑаÑÑ"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "ФилÑÑÑÑ"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-#, fuzzy
-msgid "Display cartridge types matching"
-msgstr "ÐоказаÑÑ ÑÐ¾Ð²Ð¿Ð°Ð´ÐµÐ½Ð¸Ñ Ð½Ð¾Ð¼ÐµÑов"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-#, fuzzy
-msgid "Regular expression for matching cartridge types"
-msgstr "РегÑлÑÑное вÑÑажение Ð´Ð»Ñ Ð¿Ð¾Ð¸Ñка адÑеÑа"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-#, fuzzy
-msgid "List of attachments"
-msgstr "СпиÑок подÑазделений"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-#, fuzzy
-msgid "Display attachments matching"
-msgstr "Шаблон Ð´Ð»Ñ Ð¿Ð¾Ð´Ñазделений"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-#, fuzzy
-msgid "Regular expression for matching attachment names"
-msgstr "РегÑлÑÑное вÑÑажение, ÑооÑвеÑÑÑвÑÑÑее именам подÑазделений"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-#, fuzzy
-msgid "List of devices"
-msgstr "СпиÑок полÑзоваÑелей"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-#, fuzzy
-msgid "Display devices matching"
-msgstr "ÐоказаÑÑ Ð¿Ð¾Ð´Ñ
одÑÑие адÑеÑа"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-#, fuzzy
-msgid "Regular expression for matching device names"
-msgstr "РегÑлÑÑное вÑÑажение, ÑооÑвеÑÑÑвÑÑÑее именам полÑзоваÑелей"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-#, fuzzy
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr "Ðе ÑдаеÑÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑÑиÑÑÑÑ Ðº базе жÑÑналов, оÑÑеÑÑ Ð¿Ð¾ÐºÐ°Ð·Ð°Ð½Ñ Ð½Ðµ бÑдÑÑ!"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-#, fuzzy
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr "Ðе ÑдаеÑÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑÑиÑÑÑÑ Ðº базе жÑÑналов, оÑÑеÑÑ Ð¿Ð¾ÐºÐ°Ð·Ð°Ð½Ñ Ð½Ðµ бÑдÑÑ!"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-#, fuzzy
-msgid "Rename failed, this system type name is already used."
-msgstr "Указанное Ð¸Ð¼Ñ Ñже иÑполÑзÑеÑÑÑ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-#, fuzzy
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr "ÐÑÑппа Ñ Ñаким именем Ñже ÑÑÑеÑÑвÑеÑ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-#, fuzzy
-msgid "Updating operating system failed, specifed name is already used."
-msgstr "ÐÑÑппа Ñ Ñаким именем Ñже ÑÑÑеÑÑвÑеÑ."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-#, fuzzy
-msgid "Remove inventory"
-msgstr "УдалиÑÑ Ð¾Ð±ÑекÑ"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-#, fuzzy
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr ""
-"Ð ÑÑой ÑÑеÑной запиÑи еÑÑÑ Ð½Ð°ÑÑÑойки ÑакÑа. ÐÑ Ð¼Ð¾Ð¶ÐµÑе ÑдалиÑÑ Ð¸Ñ
, ÑелкнÑв "
-"ниже."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-#, fuzzy
-msgid "Add inventory"
-msgstr "ÐобавиÑÑ Ð¾Ð±ÑекÑ"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-#, fuzzy
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr ""
-"Ð ÑÑой ÑÑеÑной запиÑи Ð½ÐµÑ Ð½Ð°ÑÑÑоек ÑакÑа. ÐÑ Ð¼Ð¾Ð¶ÐµÑе добавиÑÑ Ð¸Ñ
, ÑелкнÑв "
-"ниже."
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-#, fuzzy
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr "Ðе ÑдаеÑÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑÑиÑÑÑÑ Ðº базе жÑÑналов, оÑÑеÑÑ Ð¿Ð¾ÐºÐ°Ð·Ð°Ð½Ñ Ð½Ðµ бÑдÑÑ!"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-#, fuzzy
-msgid "Inventory extension"
-msgstr "УдалиÑÑ Ð¿Ð°ÑамеÑÑÑ"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-#, fuzzy
-msgid "Operating system"
-msgstr "УдалиÑÑ"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "ÐеÑÑоположение"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "ÐоделÑ"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-#, fuzzy
-msgid "Peripheral devices"
-msgstr "СеÑевÑе ÑÑÑÑойÑÑва"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-#, fuzzy
-msgid "System type"
-msgstr "СиÑÑемÑ"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-#, fuzzy
-msgid "Installed devices"
-msgstr "ÐлиенÑÑкие ÑÑÑÑойÑÑва"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-#, fuzzy
-msgid "Trading"
-msgstr "ÐаÑенение"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-#, fuzzy
-msgid "Software"
-msgstr "Ðдм. единиÑа"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-#, fuzzy
-msgid "Contracts"
-msgstr "ÐонÑакÑ"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-#, fuzzy
-msgid "attachment"
-msgstr "подÑазделениÑ"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-#, fuzzy
-msgid "There is no valid file uploaded."
-msgstr "Файл небÑл загÑÑжен"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-#, fuzzy
-msgid "Upload wasn't successfull."
-msgstr "ÐкÑпоÑÑ ÑÑпеÑен."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-#, fuzzy
-msgid "There is already a file with the same name uploaded."
-msgstr ""
-"ÐолÑзоваÑÐµÐ»Ñ Ñ Ñаким ÑегиÑÑÑаÑионнÑм именем в базе даннÑÑ
Ñже ÑÑÑеÑÑвÑеÑ."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, fuzzy, php-format
-msgid "Can't create file '%s'."
-msgstr "УдалиÑÑ"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-#, fuzzy
-msgid "Currently no file uploaded."
-msgstr "Файл небÑл загÑÑжен"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-#, fuzzy
-msgid "Mime"
-msgstr "ÐобилÑнÑй"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-#, fuzzy
-msgid "empty"
-msgstr "Шаблон"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-#, fuzzy
-msgid "Create new attachment"
-msgstr "ÐодÑазделение"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-#, fuzzy
-msgid "New Attachment"
-msgstr "подÑазделениÑ"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-#, fuzzy
-msgid "This name is already in use."
-msgstr "Указанное Ð¸Ð¼Ñ Ñже иÑполÑзÑеÑÑÑ."
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-#, fuzzy
-msgid "Please specify a valid name for this attachment."
-msgstr "УкажиÑе коÑÑекÑнÑй Ð½Ð¾Ð¼ÐµÑ ÑелеÑона."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-#, fuzzy
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr ""
-"Ð ÑÑой ÑÑеÑной запиÑи еÑÑÑ Ð½Ð°ÑÑÑойки ÑакÑа. ÐÑ Ð¼Ð¾Ð¶ÐµÑе ÑдалиÑÑ Ð¸Ñ
, ÑелкнÑв "
-"ниже."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-#, fuzzy
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr ""
-"Ð ÑÑой ÑÑеÑной запиÑи Ð½ÐµÑ Ð½Ð°ÑÑÑоек ÑакÑа. ÐÑ Ð¼Ð¾Ð¶ÐµÑе добавиÑÑ Ð¸Ñ
, ÑелкнÑв "
-"ниже."
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-#, fuzzy
-msgid "since"
-msgstr "РабоÑÐ°ÐµÑ Ñ"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-#, fuzzy
-msgid "Printer inventory extension"
-msgstr "УдалиÑÑ Ð¿Ð°ÑамеÑÑÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-#, fuzzy
-msgid "Supports serial interface"
-msgstr "СеÑевой пÑинÑеÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-#, fuzzy
-msgid "Supports parallel interface"
-msgstr "СеÑевой пÑинÑеÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-#, fuzzy
-msgid "Supports usb interface"
-msgstr "СеÑевой пÑинÑеÑ"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-#, fuzzy
-msgid "Cartridge settings"
-msgstr "ÐоÑÑовÑе наÑÑÑойки полÑзоваÑелÑ"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "СпиÑок полÑзоваÑелей"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr ""
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "ФилÑÑÑ"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "РегÑлÑÑное вÑÑажение, ÑооÑвеÑÑÑвÑÑÑее именам полÑзоваÑелей"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-#, fuzzy
-msgid "Manage OS-types"
-msgstr "ÐолÑзоваÑели домена"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-#, fuzzy
-msgid "Please specify a name."
-msgstr "ÐведиÑе коÑÑекÑное Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑзоваÑелÑ!"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-#, fuzzy
-msgid "Specified name is already in use, please choose another one."
-msgstr "ÐÑÑппа Ñ Ñаким именем Ñже ÑÑÑеÑÑвÑеÑ."
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-#, fuzzy
-msgid "Manage System-types"
-msgstr "СиÑÑемÑ"
-
-#, fuzzy
-#~ msgid "You're about to delete the glpi attachment component '%s'."
-#~ msgstr "ÐÑ ÑобиÑаеÑеÑÑ ÑдалиÑÑ Ð¿Ñиложение \"%s\"."
-
-#~ msgid "Add"
-#~ msgstr "ÐобавиÑÑ"
-
-#~ msgid "Cancel"
-#~ msgstr "ÐÑмена"
-
-#~ msgid "Save"
-#~ msgstr "СоÑ
ÑаниÑÑ"
-
-#, fuzzy
-#~ msgid "You're about to delete the glpi device '%s'."
-#~ msgstr "ÐÑ ÑобиÑаеÑеÑÑ ÑдалиÑÑ Ð³ÑÑÐ¿Ð¿Ñ \"%s\"."
-
-#, fuzzy
-#~ msgid "You're about to delete the glpi cartridge type '%s'."
-#~ msgstr "ÐÑ ÑобиÑаеÑеÑÑ ÑдалиÑÑ Ð¿Ñиложение \"%s\"."
diff --git a/gosa-plugins/glpi/locale/zh/LC_MESSAGES/messages.po b/gosa-plugins/glpi/locale/zh/LC_MESSAGES/messages.po
deleted file mode 100644
index 1e271facf..000000000
--- a/gosa-plugins/glpi/locale/zh/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,1181 +0,0 @@
-# translation of messages.po to Chinese Simplified
-# Copyright (C) 2003 GONICUS GmbH, Germany
-# This file is distributed under the same license as the GOsa2 package.
-#
-# Jiang Xin , 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: messages\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-01-28 22:29+0100\n"
-"PO-Revision-Date: 2007-06-03 12:27+0800\n"
-"Last-Translator: Jiang Xin \n"
-"Language-Team: Chinese Simplified \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Users"
-msgstr "ç¨æ·"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:108
-msgid "Departments"
-msgstr "é¨é¨"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:109
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:51
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:51
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:51
-msgid "Use"
-msgstr "使ç¨"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:136
-msgid "use"
-msgstr "使ç¨"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Go to root department"
-msgstr "转å°æ ¹é¨é¨"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:172
-msgid "Root"
-msgstr "æ ¹"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Go up one department"
-msgstr "åä¸è·³è½¬ä¸ä¸ªé¨é¨"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:174
-msgid "Up"
-msgstr "ä¸"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Go to users department"
-msgstr "转å°ç¨æ·é¨é¨"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:176
-msgid "Home"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-msgid "Reload list"
-msgstr "éæ°å è½½å表"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:177
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit"
-msgstr "æ交"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:178
-msgid "Base"
-msgstr "ä½ç½®"
-
-#: admin/systems/services/glpi/class_glpiSelectUser.inc:181
-msgid "Submit department"
-msgstr "æ交é¨é¨"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:1
-#, fuzzy
-msgid "GLPI database information"
-msgstr "ç¨æ·ä¸è¬ä¿¡æ¯"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:4
-msgid "Logging DB user"
-msgstr "Logging DB ç¨æ·"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:12
-#: admin/systems/services/glpi/class_goGlpiServer.inc:102
-msgid "Password"
-msgstr "å£ä»¤"
-
-#: admin/systems/services/glpi/goGlpiServer.tpl:20
-#: admin/systems/services/glpi/class_goGlpiServer.inc:101
-msgid "Database"
-msgstr "æ°æ®åº"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:8
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:29
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:7
-#: admin/systems/services/glpi/glpi_edit_os.tpl:9
-#: admin/systems/services/glpi/glpi_edit_os.tpl:28
-#: admin/systems/services/glpi/glpi_edit_type.tpl:9
-#: admin/systems/services/glpi/glpi_edit_type.tpl:28
-msgid "Rename"
-msgstr "éå½å"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:14
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:81
-#: admin/systems/services/glpi/glpiManufacturer.tpl:13
-#: admin/systems/services/glpi/glpi_edit_cartridge_type.tpl:13
-#: admin/systems/services/glpi/glpi_edit_os.tpl:15
-#: admin/systems/services/glpi/glpi_edit_type.tpl:15
-msgid "Close"
-msgstr "å
³é"
-
-#: admin/systems/services/glpi/glpi_edit_printer_type.tpl:25
-#: admin/systems/services/glpi/glpi_edit_os.tpl:24
-#: admin/systems/services/glpi/glpi_edit_type.tpl:24
-msgid "Please enter a new name"
-msgstr "请è¾å
¥ä¸ä¸ªæ°å称"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:2
-msgid "Attachment"
-msgstr "é件"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:10
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:7
-#: admin/systems/services/glpi/glpi_devices.tpl:10
-#: admin/systems/services/glpi/glpi_devices.tpl:105
-#: admin/systems/services/glpi/glpi_devices.tpl:146
-#: admin/systems/services/glpi/glpi_devices.tpl:201
-#: admin/systems/services/glpi/glpi_devices.tpl:257
-#: admin/systems/services/glpi/glpi_devices.tpl:315
-#: admin/systems/services/glpi/glpi_devices.tpl:379
-#: admin/systems/services/glpi/glpi_devices.tpl:451
-#: admin/systems/services/glpi/glpi_devices.tpl:515
-#: admin/systems/services/glpi/glpi_devices.tpl:562
-#: admin/systems/services/glpi/glpi_devices.tpl:615
-#: admin/systems/services/glpi/glpi_devices.tpl:669
-#: admin/systems/services/glpi/glpi_devices.tpl:715
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:7
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:197
-msgid "Name"
-msgstr "å称"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:18
-#: admin/systems/services/glpi/glpi_devices.tpl:112
-#: admin/systems/services/glpi/glpi_devices.tpl:153
-#: admin/systems/services/glpi/glpi_devices.tpl:208
-#: admin/systems/services/glpi/glpi_devices.tpl:264
-#: admin/systems/services/glpi/glpi_devices.tpl:322
-#: admin/systems/services/glpi/glpi_devices.tpl:386
-#: admin/systems/services/glpi/glpi_devices.tpl:458
-#: admin/systems/services/glpi/glpi_devices.tpl:522
-#: admin/systems/services/glpi/glpi_devices.tpl:569
-#: admin/systems/services/glpi/glpi_devices.tpl:622
-#: admin/systems/services/glpi/glpi_devices.tpl:676
-#: admin/systems/services/glpi/glpi_devices.tpl:722
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:25
-#: admin/systems/services/glpi/class_glpiAccount.inc:803
-#: admin/systems/services/glpi/glpi.tpl:79
-msgid "Comment"
-msgstr "注é"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:30
-msgid "File"
-msgstr "æ件"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:33
-msgid "Upload"
-msgstr "ä¸ä¼ "
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:38
-msgid "Status"
-msgstr "ç¶æ"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:46
-msgid "Filename"
-msgstr "æ件å"
-
-#: admin/systems/services/glpi/glpiAttachmentEdit.tpl:54
-msgid "Mime-type"
-msgstr "Mime-type"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:104
-msgid "Can't delete this entry, it is still in use."
-msgstr "æ æ³å é¤æ¡ç®ï¼ä»å¨ä½¿ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:268
-#: admin/systems/services/glpi/class_glpiAccount.inc:656
-#: admin/systems/services/glpi/class_glpiAccount.inc:671
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:633
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:648
-msgid "N/A"
-msgstr "N/A"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridgesEdit.inc:286
-msgid "The selected name is already in use."
-msgstr "éæ©çå称已ç»è¢«ä½¿ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:92
-#, fuzzy
-msgid "cartridge"
-msgstr "ç¡é¼"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:111
-#, php-format
-msgid ""
-"You can't delete this cartridge type, it is still in use by this printer(s) "
-"'%s'."
-msgstr "æ¨ä¸è½å é¤è¿ä¸ªç¡é¼ç±»åï¼å®ä»ç¶å¨è¢«è¿ä¸ªæå°æº '%s' 使ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:158
-msgid "Cartridges"
-msgstr "ç¡é¼"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:159
-msgid "Action"
-msgstr "è¡å¨"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:163
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:187
-#: admin/systems/services/glpi/glpiPrinter.tpl:88
-#: admin/systems/services/glpi/glpiPrinter.tpl:99
-#: admin/systems/services/glpi/glpiManufacturer.tpl:7
-#: admin/systems/services/glpi/glpi.tpl:61
-#: admin/systems/services/glpi/glpi.tpl:71
-#: admin/systems/services/glpi/glpi.tpl:106
-msgid "Edit"
-msgstr "ç¼è¾"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:164
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:188
-msgid "Delete"
-msgstr "å é¤"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "New monitor"
-msgstr "æ°çè§å¨"
-
-#: admin/systems/services/glpi/class_glpiPrinterCartridges.inc:206
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:221
-msgid "M"
-msgstr "M"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:1
-msgid "Add/Edit manufacturer"
-msgstr "æ·»å /ä¿®æ¹ ç产å"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:14
-msgid "Website"
-msgstr "ç½ç«"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:21
-msgid "Address"
-msgstr "ä½å"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:32
-msgid "Phone number"
-msgstr "çµè¯å·ç "
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:39
-msgid "Fax"
-msgstr "ä¼ ç"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:46
-msgid "Email"
-msgstr "é®ä»¶"
-
-#: admin/systems/services/glpi/glpiManufacturerAdd.tpl:53
-#: admin/systems/services/glpi/glpi_devices.tpl:17
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:22
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:808
-msgid "Comments"
-msgstr "注é"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:88
-#, php-format
-msgid "Internal Error can't create device of type '%s'"
-msgstr "å
é¨é误ï¼æ æ³å建类å为 '%s' ç设å¤"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:108
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:110
-#, fuzzy
-msgid "glpi device"
-msgstr "设å¤"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:112
-msgid "Can't detect object name."
-msgstr "æ æ³æ£æµå¯¹è±¡å称ã"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:133
-#, php-format
-msgid ""
-"You can't delete this device, it is still in use by these system(s) '%s'"
-msgstr "æ¨ä¸è½å é¤è¿ä¸ªè®¾å¤ï¼å®ä»ç¶è¢«è¿äºç³»ç»ä½¿ç¨ '%s'"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:183
-msgid "devices"
-msgstr "设å¤"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:184
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:199
-msgid "Actions"
-msgstr "å¨ä½"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "New mainbord"
-msgstr "æ°ä¸»æ¿"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:223
-msgid "MB"
-msgstr "MB"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "New processor"
-msgstr "æ°å¤çå¨"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:225
-msgid "P"
-msgstr "P"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "New case"
-msgstr "æ°æºç®±"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:227
-msgid "C"
-msgstr "C"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "New network interface"
-msgstr "æ°å»ºç½ç»æ¥å£"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:229
-msgid "NI"
-msgstr "NI"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "New ram"
-msgstr "æ°å
å"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:231
-msgid "R"
-msgstr "R"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "New hard disk"
-msgstr "æ°ç¡¬ç"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:233
-msgid "HDD"
-msgstr "HDD"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "New drive"
-msgstr "æ°é©±å¨å¨"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:235
-msgid "D"
-msgstr "D"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "New controller"
-msgstr "æ°æ§å¶å¨"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:237
-msgid "CS"
-msgstr "CS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "New graphics card"
-msgstr "æ°æ¾å¡"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:239
-msgid "GC"
-msgstr "GC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "New sound card"
-msgstr "æ°å£°å¡"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:241
-msgid "SC"
-msgstr "SC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "New power supply"
-msgstr "æ°çµæº"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:243
-msgid "PS"
-msgstr "PS"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "New misc device"
-msgstr "æ°å»ºå
¶ä»è®¾å¤"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:245
-msgid "OC"
-msgstr "OC"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:346
-msgid "You have to specify a valid name for this device."
-msgstr "æ¨å¿
须为è¿ä¸ªè®¾å¤æä¾ä¸ä¸ªææçå称ã"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:366
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:369
-msgid "This device name is already in use."
-msgstr "è¿ä¸ªè®¾å¤åå·²ç»è¢«ä½¿ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:392
-msgid "none"
-msgstr "æ "
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "None"
-msgstr "æ "
-
-#: admin/systems/services/glpi/class_glpiDeviceManagement.inc:405
-msgid "Other"
-msgstr "å
¶ä»"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:6
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:4
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:34
-#: admin/systems/services/glpi/glpi.tpl:6
-msgid "Generic"
-msgstr "éç¨é
ç½®"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:9
-msgid "Printer type"
-msgstr "æå°æºç±»å"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:18
-#: admin/systems/services/glpi/glpiPrinter.tpl:32
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:43
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:53
-#: admin/systems/services/glpi/glpi.tpl:18
-#: admin/systems/services/glpi/glpi.tpl:32
-#: admin/systems/services/glpi/glpi.tpl:46
-msgid "edit"
-msgstr "ç¼è¾"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:23
-#: admin/systems/services/glpi/glpi_devices.tpl:24
-#: admin/systems/services/glpi/glpi_devices.tpl:123
-#: admin/systems/services/glpi/glpi_devices.tpl:164
-#: admin/systems/services/glpi/glpi_devices.tpl:219
-#: admin/systems/services/glpi/glpi_devices.tpl:275
-#: admin/systems/services/glpi/glpi_devices.tpl:333
-#: admin/systems/services/glpi/glpi_devices.tpl:397
-#: admin/systems/services/glpi/glpi_devices.tpl:469
-#: admin/systems/services/glpi/glpi_devices.tpl:533
-#: admin/systems/services/glpi/glpi_devices.tpl:580
-#: admin/systems/services/glpi/glpi_devices.tpl:633
-#: admin/systems/services/glpi/glpi_devices.tpl:687
-#: admin/systems/services/glpi/glpi_devices.tpl:733
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:47
-#: admin/systems/services/glpi/class_glpiAccount.inc:809
-#: admin/systems/services/glpi/glpi.tpl:37
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:812
-msgid "Manufacturer"
-msgstr "ç产å"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:39
-msgid "Supported interfaces"
-msgstr "æ¯æççé¢"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:48
-msgid "Serial"
-msgstr "串è¡"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:58
-msgid "Parallel"
-msgstr "并è¡"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:68
-msgid "USB"
-msgstr "USB"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:80
-#: admin/systems/services/glpi/glpi.tpl:52
-msgid "Contacts"
-msgstr "èç³»"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:83
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:57
-#: admin/systems/services/glpi/class_glpiAccount.inc:802
-#: admin/systems/services/glpi/glpi.tpl:66
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:807
-msgid "Technical responsible"
-msgstr "ææ¯è系人"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:94
-#: admin/systems/services/glpi/class_glpiAccount.inc:806
-#: admin/systems/services/glpi/glpi.tpl:56
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:810
-msgid "Contact person"
-msgstr "è系人"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:107
-#: admin/systems/services/glpi/class_glpiAccount.inc:810
-#: admin/systems/services/glpi/glpi.tpl:117
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:814
-msgid "Attachments"
-msgstr "éå "
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:127
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:20
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:20
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:20
-#: admin/systems/services/glpi/glpiSelectUser.tpl:20
-msgid "Information"
-msgstr "æ示信æ¯"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:139
-msgid "Installed cartridges"
-msgstr "å®è£
çç¡é¼"
-
-#: admin/systems/services/glpi/glpiPrinter.tpl:152
-#: admin/systems/services/glpi/glpiManufacturer.tpl:8
-msgid "Remove"
-msgstr "å é¤"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:2
-msgid "Add/Edit monitor"
-msgstr "æ·»å /ä¿®æ¹ æ¾ç¤ºå¨"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:33
-msgid "Monitor size"
-msgstr "æ¾ç¤ºå¨å¤§å°"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:36
-msgid "Inch"
-msgstr "è±å¯¸"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:44
-msgid "Integrated microphone"
-msgstr "æ´å麦å
é£"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:47
-#: admin/systems/services/glpi/glpi_devices.tpl:55
-#: admin/systems/services/glpi/glpi_devices.tpl:63
-#: admin/systems/services/glpi/glpi_devices.tpl:71
-#: admin/systems/services/glpi/glpi_devices.tpl:176
-#: admin/systems/services/glpi/glpi_devices.tpl:296
-#: admin/systems/services/glpi/glpi_devices.tpl:361
-msgid "Yes"
-msgstr "æ¯"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:48
-#: admin/systems/services/glpi/glpi_devices.tpl:56
-#: admin/systems/services/glpi/glpi_devices.tpl:64
-#: admin/systems/services/glpi/glpi_devices.tpl:72
-#: admin/systems/services/glpi/glpi_devices.tpl:177
-#: admin/systems/services/glpi/glpi_devices.tpl:297
-#: admin/systems/services/glpi/glpi_devices.tpl:362
-msgid "No"
-msgstr "å¦"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:52
-msgid "Integrated speakers"
-msgstr "æ´åé³ç®±"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:60
-msgid "Sub-D"
-msgstr "Sub-D"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:68
-msgid "BNC"
-msgstr "BNC"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:76
-msgid "Serial number"
-msgstr "ç³»åå·"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:83
-msgid "Additional serial number"
-msgstr "éå ç³»åå·"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:97
-msgid "Add/Edit other device"
-msgstr "æ·»å /ä¿®æ¹ å
¶ä»è®¾å¤"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:138
-msgid "Add/Edit power supply"
-msgstr "æ·»å /ä¿®æ¹ çµæº"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:173
-msgid "Atx"
-msgstr "Atx"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:181
-msgid "Power"
-msgstr "çµæº"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:193
-msgid "Add/Edit graphic card"
-msgstr "æ·»å /ä¿®æ¹ æ¾å¡"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:228
-#: admin/systems/services/glpi/glpi_devices.tpl:284
-#: admin/systems/services/glpi/glpi_devices.tpl:349
-msgid "Interface"
-msgstr "çé¢"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:237
-msgid "Ram"
-msgstr "Ram"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:249
-msgid "Add/Edit controller"
-msgstr "æ·»å /ä¿®æ¹ æ§å¶å¨"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:293
-#: admin/systems/services/glpi/glpi_devices.tpl:420
-#: admin/systems/services/glpi/glpi_devices.tpl:485
-msgid "Size"
-msgstr "大å°"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:307
-msgid "Add/Edit drive"
-msgstr "æ·»å /ä¿®æ¹ é©±å¨"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:342
-msgid "Speed"
-msgstr "é度"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:358
-msgid "Writeable"
-msgstr "å¯å"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:371
-msgid "Add/Edit harddisk"
-msgstr "æ·»å /ä¿®æ¹ ç¡¬ç"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:406
-msgid "Rpm"
-msgstr "Rpm"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:413
-msgid "Cache"
-msgstr "ç¼å"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:427
-#: admin/systems/services/glpi/glpi_devices.tpl:492
-#: admin/systems/services/glpi/glpi_devices.tpl:542
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:37
-#: admin/systems/services/glpi/class_glpiAccount.inc:808
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:811
-msgid "Type"
-msgstr "ç±»å"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:443
-msgid "Add/Edit memory"
-msgstr "æ·»å /ä¿®æ¹ å
å"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:478
-msgid "Frequenz"
-msgstr "é¢ç"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:507
-msgid "Add/Edit sound card"
-msgstr "æ·»å /ä¿®æ¹ å£°å¡"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:553
-msgid "Add/Edit network interface"
-msgstr "æ·»å /ä¿®æ¹ ç½å¡"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:589
-msgid "MAC address"
-msgstr "MAC å°å"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:596
-msgid "Bandwidth"
-msgstr "带宽"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:607
-msgid "Add/Edit processor"
-msgstr "æ·»å /ä¿®æ¹ å¤çå¨"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:642
-msgid "Frequence"
-msgstr "é¢ç"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:649
-msgid "Default frequence"
-msgstr "缺çé¢ç"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:661
-msgid "Add/Edit motherboard"
-msgstr "æ·»å /ä¿®æ¹ ä¸»æ¿"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:696
-msgid "Chipset"
-msgstr "è¯çç»"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:707
-msgid "Add/Edit computer case"
-msgstr "æ·»å /ä¿®æ¹ æºç®±"
-
-#: admin/systems/services/glpi/glpi_devices.tpl:742
-msgid "format"
-msgstr "æ ¼å¼"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:32
-#: admin/systems/services/glpi/class_goGlpiServer.inc:87
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-#, fuzzy
-msgid "Inventory database"
-msgstr "ç¨æ·æ°æ®åº"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:58
-#, fuzzy
-msgid "Inventory database service"
-msgstr "åè´§ç¼å·"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:67
-#, fuzzy
-msgid "The attribute user is empty or contains invalid characters."
-msgstr "å±æ§ '%s' 为空æè
å
å«æ æå符ã"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:70
-#, fuzzy
-msgid "The attribute database is empty or contains invalid characters."
-msgstr "å±æ§ '%s' 为空æè
å
å«æ æå符ã"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:88
-msgid "Services"
-msgstr "æå¡"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:96
-#, fuzzy
-msgid "Start"
-msgstr "å¯å¨"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:97
-msgid "Stop"
-msgstr "åæ¢"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:98
-#, fuzzy
-msgid "Restart"
-msgstr "éè¯"
-
-#: admin/systems/services/glpi/class_goGlpiServer.inc:100
-#, fuzzy
-msgid "Admin"
-msgstr "管çå"
-
-#: admin/systems/services/glpi/glpiManufacturer.tpl:1
-msgid "Manage manufacturers"
-msgstr "管çç产å"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:2
-msgid "Warning"
-msgstr "è¦å"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:6
-msgid ""
-"Please double check if your really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr "请å次æ£æ¥æ¨æ¯å¦è¦è¿ä¹åï¼å 为 GOsa å°æ²¡æåæ³å°æ¨çæ°æ®æ¾åã"
-
-#: admin/systems/services/glpi/remove_glpi.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your MySql database in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"æ好å¨æ§è¡è¿ä¸ªæä½ä¹åï¼ä¿åå½å MySQL æ°æ®åºä¸çå
容å°ä¸ä¸ªæ件ãæ以ï¼å¦ææ¨"
-"å·²ç»è¿ä¹åäºï¼æâå é¤â继ç»æè
æâåæ¶âéåºã"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:14
-msgid "Reference"
-msgstr "åè"
-
-#: admin/systems/services/glpi/glpiPrinterCartridgesEdit.tpl:61
-msgid "Choose"
-msgstr "éæ©"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:6
-msgid "List of available cartridge type for this type of printer"
-msgstr "è¿ç§æå°æºçå¯ç¨ç¡é¼å表"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:23
-msgid ""
-"This dialog allows you to create new types of cartridges, and select one or "
-"more types for your printer. Cartridge types depends on the printer type you "
-"have selected. For each selected cartridge type there will be a new "
-"cartridge created, this allows you to select the same cartridge type for "
-"more then one printer."
-msgstr ""
-"è¿ä¸ªå¯¹è¯æ¡ç¨äºå建æ°çç¡é¼ç±»åï¼ä»¥åéæ©ä¸å°å¤ä¸ªæå°æºç±»åãç¡é¼ç±»ååæéç"
-"æå°æºç±»åç¸å
³ãæ¯ä¸ä¸ªéæ©çç¡é¼ç±»åå°æä¸ä¸ªæ°çç¡é¼è¢«å建ï¼è¿å
许æ¨ä¸ºä¸ä¸ªä»¥"
-"ä¸çæå°æºéæ©åä¸ç§ç¡é¼ã"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:27
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:27
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:27
-#: admin/systems/services/glpi/glpiSelectUser.tpl:27
-msgid "Filters"
-msgstr "è¿æ»¤å¨"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:35
-msgid "Display cartridge types matching"
-msgstr "æ¾ç¤ºå¹é
çç¡é¼ç±»å"
-
-#: admin/systems/services/glpi/glpiPrinterCartridges.tpl:37
-msgid "Regular expression for matching cartridge types"
-msgstr "å¹é
ç¡é¼ç±»åçæ£å表达å¼"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:6
-msgid "List of attachments"
-msgstr "é件å表"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:23
-msgid ""
-"This dialog allow you to attach additional objects (like manuals, guides, "
-"etc.) to your currently edited computer."
-msgstr "æ¤å¯¹è¯æ¡å
许æ¨éå é¢å¤ç对象ï¼å¦æåï¼è¯´æ书çï¼å°æ¨æ£ç¼è¾ç计ç®æºã"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:35
-msgid "Display attachments matching"
-msgstr "æ¾ç¤ºå¹é
çé件"
-
-#: admin/systems/services/glpi/glpiAttachmentPool.tpl:37
-msgid "Regular expression for matching attachment names"
-msgstr "å¹é
é件å称çæ£å表达å¼"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:6
-msgid "List of devices"
-msgstr "设å¤å表"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:23
-msgid ""
-"This dialog allows you to attach a device to your currently edited computer."
-msgstr "è¿ä¸ªå¯¹è¯æ¡å
许æ¨ä¸ºæ¨å½åç¼è¾ç计ç®æºæ·»å ä¸ä¸ªè®¾å¤ã"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:35
-msgid "Display devices matching"
-msgstr "æ¾ç¤ºå¹é
ç设å¤"
-
-#: admin/systems/services/glpi/glpiDeviceManagement.tpl:37
-msgid "Regular expression for matching device names"
-msgstr "å¹é
设å¤åçæ£å表达å¼"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:146
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:163
-msgid "There is no server with valid glpi database service."
-msgstr "没æä¸ä¸ªå
·æææ glpi æ°æ®åºæå¡çæå¡å¨ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:156
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:173
-msgid "Can't connect to glpi database, the php-mysql extension is missing."
-msgstr "æ æ³è¿æ¥å° glpi æ°æ®åºï¼æ²¡æå®è£
php-mysql æ©å±ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:166
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:183
-msgid "Can't connect to glpi database, check configuration twice."
-msgstr "æ æ³è¿æ¥å° glpi æ°æ®åºï¼å次æ£æ¥é
ç½®æ件ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:181
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:198
-msgid "Download of attachment failed. Attachment was not found on server."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:184
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:201
-msgid "Download of attachment failed. Not a valid attachment id."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:198
-#: admin/systems/services/glpi/class_glpiAccount.inc:204
-#: admin/systems/services/glpi/class_glpiAccount.inc:210
-msgid "This feature is not implemented yet."
-msgstr "è¿ä¸ªåè½å°æªå®ç°ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:312
-msgid "Adding new sytem type failed, this system type name is already used."
-msgstr "æ·»å æ°ç³»ç»ç±»å失败ï¼è¿ä¸ªç³»ç»ç±»åå称已被使ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:332
-#, php-format
-msgid ""
-"You can't delete this system type, it is still in use by these system(s) '%s'"
-msgstr "æ¨ä¸è½å é¤è¿ä¸ªç³»ç»ç±»åï¼å®ä»ç¶è¢«è¿äºç³»ç»ä½¿ç¨ '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:343
-msgid "Rename failed, this system type name is already used."
-msgstr "éå½å失败ï¼ç³»ç»ç±»åå称已ç»è¢«ä½¿ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:399
-msgid "Adding new operating system failed, specifed name is already used."
-msgstr "æ·»å æ°æä½ç³»ç»å¤±è´¥ï¼å称已ç»è¢«ä½¿ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:421
-#, php-format
-msgid ""
-"You can't delete this operating system, it is still in use by these system"
-"(s) '%s'"
-msgstr "æ¨ä¸è½å é¤è¿ä¸ªæä½ç³»ç»ï¼å®ä»ç¶è¢«è¿äºç³»ç»ä½¿ç¨ '%s'"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:433
-msgid "Updating operating system failed, specifed name is already used."
-msgstr "æ´æ°æä½ç³»ç»å¤±è´¥ï¼å称已ç»è¢«ä½¿ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:512
-#, php-format
-msgid ""
-"Could not add the given user, the users dn is too long, only 100 characters "
-"are allowed here."
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:593
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:229
-msgid "Remove inventory"
-msgstr "å é¤ inventory"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:594
-msgid ""
-"This device has inventory informations enabled. You can disable them by "
-"clicking below."
-msgstr "è¿ä¸ªè®¾å¤å¯ç¨äº inventory ä¿¡æ¯ãæ¨å¯ä»¥ç¹å»ä¸é¢æé®ç¦ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:596
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:232
-msgid "Add inventory"
-msgstr "æ·»å æ¸
å(inventory)"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:597
-msgid ""
-"This device has inventory informations disabled. You can enable them by "
-"clicking below."
-msgstr "è¿ä¸ªè®¾å¤ç¦ç¨äº inventory ä¿¡æ¯ãæ¨å¯ä»¥ç¹å»ä¸é¢æé®å¯ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:692
-#: admin/systems/services/glpi/class_glpiAccount.inc:693
-msgid "Can't remove glpi account, while mysql extension is missing."
-msgstr "æ æ³å é¤ glpi è´¦å·ï¼å 为没ææ¾å° mysql æ©å±ã"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:793
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:795
-msgid "Glpi"
-msgstr ""
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:794
-#, fuzzy
-msgid "Inventory extension"
-msgstr "å é¤æå°æºæ©å±"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:804
-#: admin/systems/services/glpi/glpi.tpl:23
-msgid "Operating system"
-msgstr "æä½ç³»ç»"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:805
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:809
-msgid "Location"
-msgstr "ä½ç½®"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:807
-msgid "Model"
-msgstr "模å"
-
-#: admin/systems/services/glpi/class_glpiAccount.inc:811
-#, fuzzy
-msgid "Peripheral devices"
-msgstr "æå°è®¾å¤"
-
-#: admin/systems/services/glpi/glpi.tpl:9
-msgid "System type"
-msgstr "ç³»ç»ç±»å"
-
-#: admin/systems/services/glpi/glpi.tpl:96
-msgid "Installed devices"
-msgstr "å®è£
设å¤"
-
-#: admin/systems/services/glpi/glpi.tpl:112
-#, fuzzy
-msgid "Trading"
-msgstr "è¦å"
-
-#: admin/systems/services/glpi/glpi.tpl:113
-msgid "Software"
-msgstr "软件"
-
-#: admin/systems/services/glpi/glpi.tpl:114
-msgid "Contracts"
-msgstr "èç³»"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:68
-#, fuzzy
-msgid "attachment"
-msgstr "é件"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:107
-#, php-format
-msgid ""
-"You can't delete this attachment, it is still in use by these system(s) '%s'"
-msgstr "æ¨ä¸è½å é¤è¿ä¸ªé件ï¼å®ä»ç¶è¢«è¿äºç³»ç»ä½¿ç¨ '%s'"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:119
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:123
-msgid "There is no valid file uploaded."
-msgstr "没æä¸ä¼ æææ件ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:126
-msgid "Upload wasn't successfull."
-msgstr "ä¸ä¼ 没ææåã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:129
-#, php-format
-msgid "Missing directory '%s/glpi/' to store glpi uploads."
-msgstr "缺å°ç®å½ '%s/glpi/' æ¥ä¿å glpi ä¸ä¼ ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:133
-msgid "There is already a file with the same name uploaded."
-msgstr "å·²ç»ç±ååæ件ä¸ä¼ ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:137
-#, php-format
-msgid "Can't create file '%s'."
-msgstr "æ æ³å建æ件 '%s'ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:181
-msgid "File is available."
-msgstr "æ件å¯ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:183
-msgid "File is not readable, possibly the file is missing."
-msgstr "æ件æ æ³è¯»åï¼å¯è½æ¯æ件缺失ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:186
-msgid "Currently no file uploaded."
-msgstr "ç®å没ææ件ä¸ä¼ ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:198
-msgid "Mime"
-msgstr "Mime"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:201
-msgid "This table displays all available attachments."
-msgstr "è¿ä¸ªè¡¨æ¾ç¤ºææå¯ç¨çé件ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:218
-msgid "empty"
-msgstr "空"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:255
-msgid "Create new attachment"
-msgstr "å建æ°é件"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:256
-msgid "New Attachment"
-msgstr "æ°é件"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:349
-msgid "This name is already in use."
-msgstr "该å称已ç»è¢«ä½¿ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiAttachmentPool.inc:352
-msgid "Please specify a valid name for this attachment."
-msgstr "请为è¿ä¸ªé件æå®ä¸ä¸ªææå称ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:230
-msgid ""
-"This server has inventory features enabled. You can disable them by clicking "
-"below."
-msgstr "该æå¡å¨å·²ç»å¯ç¨ inventory åè½ãæ¨å¯ä»¥ç¹å»ä¸é¢æé®ç¦ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:233
-msgid ""
-"This server has inventory features disabled. You can enable them by clicking "
-"below."
-msgstr "该æå¡å¨å·²ç»ç¦ç¨ inventory åè½ãæ¨å¯ä»¥ç¹å»ä¸é¢æé®å¯ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:256
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:294
-#, php-format
-msgid ""
-"Can't rename given printer type to '%s', because this type name already "
-"exists."
-msgstr "æ æ³å°ç»åºçæå°æºç±»åéå½å为 '%s'ï¼å 为è¿ä¸ªç±»åå称已ç»åå¨ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:308
-#, php-format
-msgid "Can't delete printer type, it is still in use by '%s'."
-msgstr "æ¨ä¸è½å é¤è¿ä¸ªæå°æºç±»åï¼å®ä»ç¶å¨è¢« '%s' 使ç¨ã"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:785
-msgid "since"
-msgstr "èªä»"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:796
-#, fuzzy
-msgid "Printer inventory extension"
-msgstr "æ·»å æå°æºæ©å±"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:804
-#, fuzzy
-msgid "Supports serial interface"
-msgstr "æ¯æççé¢"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:805
-#, fuzzy
-msgid "Supports parallel interface"
-msgstr "æ¯æççé¢"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:806
-#, fuzzy
-msgid "Supports usb interface"
-msgstr "æ¯æççé¢"
-
-#: admin/systems/services/glpi/class_glpiPrinterAccount.inc:816
-#, fuzzy
-msgid "Cartridge settings"
-msgstr "ç¡é¼"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:6
-msgid "List of users"
-msgstr "ç¨æ·å表"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:23
-msgid ""
-"This dialog allows you to select a user as technical responsible person."
-msgstr "è¿ä¸ªå¯¹è¯æ¡å
许æ¨éæ©ä¸ä¸ªç¨æ·ä½ä¸ºææ¯è´è´£äººã"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:35
-msgid "Display users matching"
-msgstr "æ¾ç¤ºå¹é
çç¨æ·"
-
-#: admin/systems/services/glpi/glpiSelectUser.tpl:37
-msgid "Regular expression for matching user names"
-msgstr "å¹é
ç¨æ·åçæ£å表达å¼"
-
-#: admin/systems/services/glpi/glpi_edit_os.tpl:1
-msgid "Manage OS-types"
-msgstr "管çæä½ç³»ç»ç±»å"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:53
-#, php-format
-msgid ""
-"You can't delete this manufacturer, it is still in use by these system(s) '%"
-"s'"
-msgstr "æ¨ä¸è½å é¤è¿ä¸ªå¶é åï¼å®ä»ç¶è¢«è¿äºç³»ç»ä½¿ç¨ '%s'"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:99
-msgid "Please specify a name."
-msgstr "请è¾å
¥ä¸ä¸ªååã"
-
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:108
-#: admin/systems/services/glpi/class_glpiManufacturer.inc:114
-msgid "Specified name is already in use, please choose another one."
-msgstr "æä¾çå称已ç»è¢«ä½¿ç¨ï¼è¯·éæ©å¦å¤ä¸ä¸ªã"
-
-#: admin/systems/services/glpi/glpi_edit_type.tpl:1
-msgid "Manage System-types"
-msgstr "管çç³»ç»ç±»å"
-
-#~ msgid "You're about to delete the glpi attachment component '%s'."
-#~ msgstr "æ¨å°è¦å é¤ glpi é件ç»ä»¶ '%s'ã"
-
-#~ msgid "Add"
-#~ msgstr "æ·»å "
-
-#~ msgid "Cancel"
-#~ msgstr "åæ¶"
-
-#~ msgid "Save"
-#~ msgstr "ä¿å"
-
-#~ msgid "You're about to delete the glpi device '%s'."
-#~ msgstr "æ¨å°è¦å é¤ glpi è®¾å¤ '%s'ã"
-
-#~ msgid "You're about to delete the glpi cartridge type '%s'."
-#~ msgstr "æ¨å°è¦å é¤ glpi ç¡é¼ç±»å '%s'ã"
diff --git a/gosa-plugins/glpi/plugin.dsc b/gosa-plugins/glpi/plugin.dsc
deleted file mode 100644
index 1b874e34e..000000000
--- a/gosa-plugins/glpi/plugin.dsc
+++ /dev/null
@@ -1,7 +0,0 @@
-[gosa-plugin]
-name = glpi
-description = "GLPI system inventorization plugin"
-version = 2.6.8
-author = "Cajus Pollmeier "
-maintainer = "GOsa packages maintainers group "
-homepage = https://oss.gonicus.de/labs/gosa/