gosa-plugin-phpscheduleit-2.7.4/0000755000175000017500000000000011752422560015610 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/contrib/0000755000175000017500000000000011752422560017250 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/contrib/phpscheduleit.ldif0000644000175000017500000000072111043607556022754 0ustar cajuscajusdn: cn=phpscheduleit,cn=schema,cn=config objectClass: olcSchemaConfig cn: phpscheduleit olcAttributeTypes: ( 1.3.6.1.4.1.22262.1.1.1.3.1 NAME 'phpscheduleitAccountLogin' DESC 'PHPscheduleit 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.3.1 NAME 'phpscheduleitAccount' SUP top AUXILIARY DESC 'PHPscheduleit Account' MAY ( phpscheduleitAccountLogin )) gosa-plugin-phpscheduleit-2.7.4/contrib/phpscheduleit.schema0000644000175000017500000000127710776436520023310 0ustar cajuscajus# ## schema file for OpenLDAP 2.x ## Schema for storing PHPscheduleit User Configuration in LDAP ## OIDs are owned by OpenSides ## ## number from 1 to 50 are for objectclasses ## attributeype start at 50 # # $Id: phpscheduleit.schema,v 1.1 2005/11/02 16:48:16 guiguidoc Exp $ # attributetype ( 1.3.6.1.4.1.22262.1.1.1.3.1 NAME 'phpscheduleitAccountLogin' DESC 'PHPscheduleit 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.3.1 NAME 'phpscheduleitAccount' SUP top AUXILIARY DESC 'PHPscheduleit Account' MAY ( phpscheduleitAccountLogin ))gosa-plugin-phpscheduleit-2.7.4/README.phpscheduleit0000644000175000017500000000042510776432012021327 0ustar cajuscajusTo use the phpscheduleit connectivity extension 1) Add the schema phpscheduleit.schema in your schema directory 2) Remove the comment in front of phpscheduleitAccount in gosa.conf Guillaume Delecourt OpenSides November 2005 gosa-plugin-phpscheduleit-2.7.4/plugin.dsc0000644000175000017500000000044511336200072017572 0ustar cajuscajus[gosa-plugin] name = phpscheduleit description = "PHP scheduleit connectivity plugin" version = 2.6.8 author = "Cajus Pollmeier " maintainer = "GOsa packages maintainers group " homepage = https://oss.gonicus.de/labs/gosa/ depends = connectivity gosa-plugin-phpscheduleit-2.7.4/personal/0000755000175000017500000000000011752422560017433 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/personal/connectivity/0000755000175000017500000000000011752422560022151 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/personal/connectivity/phpscheduleit/0000755000175000017500000000000011752422560025012 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/personal/connectivity/phpscheduleit/phpscheduleit.tpl0000644000175000017500000000021711425571157030400 0ustar cajuscajus

{t}phpScheduleIt account{/t}

gosa-plugin-phpscheduleit-2.7.4/personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc0000644000175000017500000001300411475417334033053 0ustar cajuscajusis_account && !$this->view_logged){ $this->view_logged = TRUE; new log("view","users/".get_class($this),$this->dn); } /* Show tab dialog headers */ $display= ""; /* Show main page */ $smarty= get_smarty(); if ($this->is_account){ $smarty->assign("phpscheduleitState", "checked"); } else { $smarty->assign("phpscheduleitState", ""); $smarty->assign("wstate", "disabled"); } if((!$this->ReadOnly) && (($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable()))) { $smarty->assign('gosaphpscheduleitACL', ""); }else{ $smarty->assign('gosaphpscheduleitACL', " disabled "); } $display.= $smarty->fetch (get_template_path('phpscheduleit.tpl', TRUE, dirname(__FILE__))); return ($display); } function remove_from_parent() { /* Cancel if there's nothing to do here */ if ($this->acl_is_removeable()){ plugin::remove_from_parent(); $ldap= $this->config->get_ldap_link(); $ldap->cd($this->dn); @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $this->attributes, "Save"); $this->cleanup(); $ldap->modify ($this->attrs); if (!$ldap->success()){ msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class())); } if($this->is_account){ new log("remove","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); } /* Optionally execute a command after we're done */ $this->handle_post_events('remove',array("uid" => $this->uid)); } } /* Save data to object */ function save_object() { /* Do we need to flip is_account state? */ if (isset($_POST['connectivityTab'])){ if (isset($_POST['phpscheduleit'])){ if (!$this->is_account && $_POST['phpscheduleit'] == "B"){ if($this->acl_is_createable()) { $this->is_account= TRUE; } } } else { if($this->acl_is_removeable()){ $this->is_account= FALSE; } } } plugin::save_object(); if (isset($_POST["phpscheduleitStatus"])){ $this->pptpStatus = "disabled"; } else { $this->pptpStatus = "enabled"; } } /* Save to LDAP */ function save() { plugin::save(); /* Write back to ldap */ $ldap= $this->config->get_ldap_link(); $ldap->cd($this->dn); $this->cleanup(); $ldap->modify ($this->attrs); if($this->initially_was_account){ new log("modify","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); }else{ new log("create","users/".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, 0, get_class())); } /* Optionally execute a command after we're done */ if ($this->initially_was_account == $this->is_account){ if ($this->is_modified){ $this->handle_post_events("modify",array("uid" => $this->uid)); } } else { $this->handle_post_events("add",array("uid" => $this->uid)); } } /* Return plugin informations for acl handling #FIXME This is only an enable/disable checkbox for this account, there is possibly a better solution available later */ static function plInfo() { return (array( "plShortName" => _("phpScheduleIt"), "plDescription" => _("phpScheduleIt settings")." ("._("Connectivity add-on").")", "plSelfModify" => TRUE, "plDepends" => array("user"), "plPriority" => 29, // Position in tabs "plSection" => array("personal" => _("My account")), "plCategory" => array("users"), "plRequirements"=> array( 'ldapSchema' => array('phpscheduleitAccount' => ''), 'onFailureDisablePlugin' => array(get_class()) ), "plOptions" => array(), "plProvidedAcls" => array() )); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-phpscheduleit-2.7.4/locale/0000755000175000017500000000000011752422560017047 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/ru/0000755000175000017500000000000011752422560017475 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/ru/LC_MESSAGES/0000755000175000017500000000000011752422560021262 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/ru/LC_MESSAGES/messages.po0000644000175000017500000000430711475426262023442 0ustar cajuscajus# 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-11-04 15:24+0100\n" "PO-Revision-Date: 2005-04-18 14:35+0300\n" "Last-Translator: Igor Muratov \n" "Language-Team: ALT Linux Team\n" "Language: \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" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 #, fuzzy msgid "phpScheduleIt account" msgstr "Учетная запись Groupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 #, fuzzy msgid "phpScheduleIt" msgstr "Учетная запись Groupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "Учетная запись Groupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 #, fuzzy msgid "LDAP error" msgstr "Ошибка LDAP:" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "phpScheduleIt settings" msgstr "Учетная запись Groupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "Connectivity add-on" msgstr "Подключение" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Моя учетная запись" #~ msgid "This does something" #~ msgstr "Что-то будет" #, fuzzy #~ msgid "PHPscheduleit" #~ msgstr "Учетная запись Groupware" #, fuzzy #~ msgid "PHP Schedule it" #~ msgstr "Учетная запись Groupware" #, fuzzy #~ msgid "Removing of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Учетная запись Groupware" #, fuzzy #~ msgid "Saving of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Учетная запись Groupware" gosa-plugin-phpscheduleit-2.7.4/locale/pl/0000755000175000017500000000000011752422560017462 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/pl/LC_MESSAGES/0000755000175000017500000000000011752422560021247 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/pl/LC_MESSAGES/messages.po0000644000175000017500000000401111475426262023417 0ustar cajuscajusmsgid "" msgstr "" "Project-Id-Version: polski\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:24+0100\n" "PO-Revision-Date: 2007-07-14 21:45+0100\n" "Last-Translator: Piotr Rybicki \n" "Language-Team: Piotr Rybicki \n" "Language: \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" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 #, fuzzy msgid "phpScheduleIt account" msgstr "konto PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 #, fuzzy msgid "phpScheduleIt" msgstr "PHP schedule it" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "Ustawienia PHP schedule it" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 #, fuzzy msgid "LDAP error" msgstr "błąd LDAP:" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "phpScheduleIt settings" msgstr "Ustawienia PHP schedule it" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "Connectivity add-on" msgstr "Konto połączeń" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Moje konto " #~ msgid "This does something" #~ msgstr "To robi coś" #~ msgid "PHPscheduleit" #~ msgstr "PHPscheduleit" #~ msgid "PHP Schedule it" #~ msgstr "PHP schedule it" #~ msgid "Removing of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Usuwanie konta PHPscheduleit z dn '%s' nieudane." #~ msgid "Saving of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Zapisywanie konta PHPscheduleit z dn '%s' nieudane." gosa-plugin-phpscheduleit-2.7.4/locale/it/0000755000175000017500000000000011752422560017463 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/it/LC_MESSAGES/0000755000175000017500000000000011752422560021250 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/it/LC_MESSAGES/messages.po0000644000175000017500000000413511475426262023427 0ustar cajuscajus# 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-11-04 15:24+0100\n" "PO-Revision-Date: 2005-11-18 15:26+0100\n" "Last-Translator: Alessandro Amici \n" "Language-Team: Italian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 #, fuzzy msgid "phpScheduleIt account" msgstr "Estenzioni PHPGroupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 #, fuzzy msgid "phpScheduleIt" msgstr "Estenzioni PHPGroupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "Estenzioni PHPGroupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 #, fuzzy msgid "LDAP error" msgstr "Errore LDAP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "phpScheduleIt settings" msgstr "Estenzioni PHPGroupware" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "Connectivity add-on" msgstr "Connettività" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Identità" #~ msgid "This does something" #~ msgstr "Questo fa qualcosa" #, fuzzy #~ msgid "PHPscheduleit" #~ msgstr "Estenzioni PHPGroupware" #, fuzzy #~ msgid "PHP Schedule it" #~ msgstr "Estenzioni PHPGroupware" #, fuzzy #~ msgid "Removing of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Estenzioni PHPGroupware" #, fuzzy #~ msgid "Saving of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Estenzioni PHPGroupware" gosa-plugin-phpscheduleit-2.7.4/locale/pt_BR/0000755000175000017500000000000011752422560020055 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/pt_BR/LC_MESSAGES/0000755000175000017500000000000011752422560021642 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/pt_BR/LC_MESSAGES/messages.po0000644000175000017500000000363211475426262024022 0ustar cajuscajus# 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 - phpscheduleit\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:24+0100\n" "PO-Revision-Date: 2010-03-25 10:12-0300\n" "Last-Translator: Marcos Amorim \n" "Language-Team: Marcos Amorim Clever de Oliveira " "\n" "Language: \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" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 #, fuzzy msgid "phpScheduleIt account" msgstr "Conta de Agendamento PHP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 #, fuzzy msgid "phpScheduleIt" msgstr "Agendamento PHP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "Configurações de Agendamento PHP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 msgid "LDAP error" msgstr "Erro LDAP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "phpScheduleIt settings" msgstr "Configurações de Agendamento PHP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "Connectivity add-on" msgstr "Addon conectividade" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Minha conta" #~ msgid "This does something" #~ msgstr "Isto faz algo" #~ msgid "PHPscheduleit" #~ msgstr "Agendamento PHP" gosa-plugin-phpscheduleit-2.7.4/locale/es/0000755000175000017500000000000011752422560017456 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/es/LC_MESSAGES/0000755000175000017500000000000011752422560021243 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/es/LC_MESSAGES/messages.po0000644000175000017500000000423511475426262023423 0ustar cajuscajus# 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-11-04 15:24+0100\n" "PO-Revision-Date: 2010-01-20 00:54+0100\n" "Last-Translator: \n" "Language-Team: Spanish <>\n" "Language: es\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" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 #, fuzzy msgid "phpScheduleIt account" msgstr "Cuenta PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 #, fuzzy msgid "phpScheduleIt" msgstr "PHP Schedule it" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "Configuración PHP Schedule it" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 msgid "LDAP error" msgstr "Error LDAP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "phpScheduleIt settings" msgstr "Configuración PHP Schedule it" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "Connectivity add-on" msgstr "Conectividad adicional" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Mi cuenta" #~ msgid "This does something" #~ msgstr "Esto hace algo" #~ msgid "PHPscheduleit" #~ msgstr "PHPscheduleit" #~ msgid "PHP Schedule it" #~ msgstr "PHP Schedule it" #~ msgid "Removing of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "" #~ "Ha fallado la eliminación de la cuenta usuario/PHPscheduleit con dn '%s'." #~ msgid "Saving of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "" #~ "Ha fallado la grabación de la cuenta de usuario/PHPscheduleit con dn '%s'." gosa-plugin-phpscheduleit-2.7.4/locale/de/0000755000175000017500000000000011752422560017437 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/de/LC_MESSAGES/0000755000175000017500000000000011752422560021224 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/de/LC_MESSAGES/messages.po0000644000175000017500000000354111475450310023372 0ustar cajuscajus# 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-11-04 15:24+0100\n" "PO-Revision-Date: 2010-09-17 10:34+0100\n" "Last-Translator: Fabian Hickert \n" "Language-Team: Deutsch \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 msgid "phpScheduleIt account" msgstr "phpScheduleIt-Konto" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 msgid "phpScheduleIt" msgstr "phpScheduleIt" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 msgid "Manage phpScheduleIt user settings" msgstr "Persönliche phpScheduleIt Einstellungen verwalten" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 msgid "LDAP error" msgstr "LDAP-Fehler" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 msgid "phpScheduleIt settings" msgstr "phpScheduleIt Einstellungen" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 msgid "Connectivity add-on" msgstr "Konnektivitäts-Erweiterung" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Mein Konto" gosa-plugin-phpscheduleit-2.7.4/locale/fr/0000755000175000017500000000000011752422560017456 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/fr/LC_MESSAGES/0000755000175000017500000000000011752422560021243 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/fr/LC_MESSAGES/messages.po0000644000175000017500000000323711475426262023424 0ustar cajuscajus# translation of messages.po to # Benoit Mortier , 2005, 2006, 2007, 2008, 2010. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:24+0100\n" "PO-Revision-Date: 2010-11-26 23:32+0100\n" "Last-Translator: Benoit Mortier \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 msgid "phpScheduleIt account" msgstr "Compte PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 msgid "phpScheduleIt" msgstr "Compte PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "Paramètres de PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 msgid "LDAP error" msgstr "Erreur LDAP" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 msgid "phpScheduleIt settings" msgstr "Paramètres de PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 msgid "Connectivity add-on" msgstr "Connectivité" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Mon Compte" #~ msgid "This does something" #~ msgstr "Ceci fait quelque chose" gosa-plugin-phpscheduleit-2.7.4/locale/en/0000755000175000017500000000000011752422560017451 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/en/LC_MESSAGES/0000755000175000017500000000000011752422560021236 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/messages.po0000644000175000017500000000273311475426262021230 0ustar cajuscajus# 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-11-04 15:24+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 msgid "phpScheduleIt account" msgstr "" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 msgid "phpScheduleIt" msgstr "" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 msgid "Manage phpScheduleIt user settings" msgstr "" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 msgid "LDAP error" msgstr "" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 msgid "phpScheduleIt settings" msgstr "" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 msgid "Connectivity add-on" msgstr "" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "" gosa-plugin-phpscheduleit-2.7.4/locale/zh/0000755000175000017500000000000011752422560017470 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/zh/LC_MESSAGES/0000755000175000017500000000000011752422560021255 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/zh/LC_MESSAGES/messages.po0000644000175000017500000000415511475426262023436 0ustar cajuscajus# 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-11-04 15:24+0100\n" "PO-Revision-Date: 2007-06-03 12:27+0800\n" "Last-Translator: Jiang Xin \n" "Language-Team: Chinese Simplified \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 #, fuzzy msgid "phpScheduleIt account" msgstr "PHPscheduleit 账号" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 #, fuzzy msgid "phpScheduleIt" msgstr "PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 #, fuzzy msgid "LDAP error" msgstr "LDAP 错误:" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "phpScheduleIt settings" msgstr "PHPscheduleit" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "Connectivity add-on" msgstr "互联" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "我的账号" #, fuzzy #~ msgid "This does something" #~ msgstr "******" #~ msgid "PHPscheduleit" #~ msgstr "PHPscheduleit" #, fuzzy #~ msgid "PHP Schedule it" #~ msgstr "PHPscheduleit" #, fuzzy #~ msgid "Removing of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "删除 dn 为 '%s' 的 user/kolab 账号失败。" #, fuzzy #~ msgid "Saving of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "保存 dn 为 '%s' 的 user/kolab 账号为空。" gosa-plugin-phpscheduleit-2.7.4/locale/nl/0000755000175000017500000000000011752422560017460 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/nl/LC_MESSAGES/0000755000175000017500000000000011752422560021245 5ustar cajuscajusgosa-plugin-phpscheduleit-2.7.4/locale/nl/LC_MESSAGES/messages.po0000644000175000017500000000440211475426262023421 0ustar cajuscajus# 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-11-04 15:24+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" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: personal/connectivity/phpscheduleit/phpscheduleit.tpl:3 #, fuzzy msgid "phpScheduleIt account" msgstr "PHPScheduleIt account" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:27 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:165 #, fuzzy msgid "phpScheduleIt" msgstr "PHPScheduleIt" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:28 #, fuzzy msgid "Manage phpScheduleIt user settings" msgstr "PHPScheduleIt" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:88 #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:145 #, fuzzy msgid "LDAP error" msgstr "LDAP fout:" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "phpScheduleIt settings" msgstr "PHPScheduleIt" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:166 #, fuzzy msgid "Connectivity add-on" msgstr "Verbindingen" #: personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc:170 msgid "My account" msgstr "Mijn account" #~ msgid "This does something" #~ msgstr "Dit doet iets" #~ msgid "PHPscheduleit" #~ msgstr "PHPScheduleIt" #, fuzzy #~ msgid "PHP Schedule it" #~ msgstr "PHPScheduleIt" #, fuzzy #~ msgid "Removing of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Het verwijderen van het PHPScheduleIt account is mislukt" #, fuzzy #~ msgid "Saving of user/PHPscheduleit account with dn '%s' failed." #~ msgstr "Het opslaan van het PHPScheduleIt account is mislukt"