gosa-plugin-pptp-2.7.4/0000755000175000017500000000000011752422554013735 5ustar cajuscajusgosa-plugin-pptp-2.7.4/contrib/0000755000175000017500000000000011752422554015375 5ustar cajuscajusgosa-plugin-pptp-2.7.4/contrib/pptp.ldif0000644000175000017500000000202311043607556017215 0ustar cajuscajusdn: cn=pptp,cn=schema,cn=config objectClass: olcSchemaConfig cn: pptp olcAttributeTypes: ( 1.3.6.1.4.1.22262.1.1.1.2.1 NAME 'pptpAccount' DESC 'PPTP Server Account' EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) olcAttributeTypes: ( 1.3.6.1.4.1.22262.1.1.1.2.2 NAME 'pptpAccountLogin' DESC 'PPTP Server Account Login' EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) olcAttributeTypes: ( 1.3.6.1.4.1.22262.1.1.1.2.3 NAME 'pptpAccountPassword' DESC 'PPTP Server Account Password' EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) olcAttributeTypes: ( 1.3.6.1.4.1.22262.1.1.1.2.4 NAME 'pptpAccountServerIP' DESC 'PPTP Server Account Server IP' 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.2.1 NAME 'pptpServerAccount' SUP top AUXILIARY DESC 'PPTP Server Account' MAY ( pptpAccount )) gosa-plugin-pptp-2.7.4/contrib/README.pptp0000644000175000017500000000035510776431643017246 0ustar cajuscajusTo use the pptp connectivity extension 1) Add the pptp.schema to your schema directory 2) Remove the comment in front of pptpAccount in gosa.conf Guillaume Delecourt OpenSides November 2005 gosa-plugin-pptp-2.7.4/contrib/pptp.schema0000644000175000017500000000252710776436520017553 0ustar cajuscajus# ## schema file for OpenLDAP 2.x ## Schema for storing PPTP User Configuration in LDAP ## OIDs are owned by OpenSides ## ## number from 1 to 50 are for objectclasses ## attributeype start at 50 # # $Id: pptp.schema,v 1.5 2005/11/02 16:47:22 guiguidoc Exp $ # attributetype ( 1.3.6.1.4.1.22262.1.1.1.2.1 NAME 'pptpAccount' DESC 'PPTP Server Account' EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) attributetype ( 1.3.6.1.4.1.22262.1.1.1.2.2 NAME 'pptpAccountLogin' DESC 'PPTP Server Account Login' EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) attributetype ( 1.3.6.1.4.1.22262.1.1.1.2.3 NAME 'pptpAccountPassword' DESC 'PPTP Server Account Password' EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) attributetype ( 1.3.6.1.4.1.22262.1.1.1.2.4 NAME 'pptpAccountServerIP' DESC 'PPTP Server Account Server IP' 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.2.1 NAME 'pptpServerAccount' SUP top AUXILIARY DESC 'PPTP Server Account' MAY ( pptpAccount )) gosa-plugin-pptp-2.7.4/plugin.dsc0000644000175000017500000000042211336200072015707 0ustar cajuscajus[gosa-plugin] name = pptp description = "PPTP 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-pptp-2.7.4/personal/0000755000175000017500000000000011752422554015560 5ustar cajuscajusgosa-plugin-pptp-2.7.4/personal/connectivity/0000755000175000017500000000000011752422554020276 5ustar cajuscajusgosa-plugin-pptp-2.7.4/personal/connectivity/pptp/0000755000175000017500000000000011752422554021261 5ustar cajuscajusgosa-plugin-pptp-2.7.4/personal/connectivity/pptp/pptp.tpl0000644000175000017500000000015311343461355022762 0ustar cajuscajus

{t}PPTP account{/t}

gosa-plugin-pptp-2.7.4/personal/connectivity/pptp/class_pptpAccount.inc0000644000175000017500000001312211475417356025446 0ustar cajuscajusattrs['uid'][0])){ $this->uid = $this->attrs['uid'][0]; } } function execute() { /* Call parent execute */ // plugin::execute(); /* Log view */ if($this->is_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("pptpState", "checked"); } else { $smarty->assign("pptpState", ""); $smarty->assign("wstate", "disabled"); } if((!$this->ReadOnly) && (($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable()))) { $smarty->assign('gosapptpACL', ""); }else{ $smarty->assign('gosapptpACL', " disabled "); } $display.= $smarty->fetch (get_template_path('pptp.tpl', TRUE, dirname(__FILE__))); return ($display); } function remove_from_parent() { if($this->acl_is_removeable()){ /* Cancel if there's nothing to do here */ if (!$this->initially_was_account){ return; } 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); /* Log last action */ new log("remove","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, LDAP_MOD, get_class())); } /* 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['pptp'])){ if (!$this->is_account && $_POST['pptp'] == "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["pptpStatus"])){ $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); /* Log last action */ 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 */ static function plInfo() { return (array( "plShortName" => _("PPTP"), "plDescription" => _("PPTP account")." ("._("Connectivity add-on").")", "plSelfModify" => TRUE, "plDepends" => array("user"), "plPriority" => 28, // Position in tabs "plSection" => array("personal" => _("My account")), "plCategory" => array("users"), "plRequirements"=> array( 'ldapSchema' => array('pptpServerAccount' => ''), 'onFailureDisablePlugin' => array(get_class()) ), "plOptions" => array(), "plProvidedAcls" => array() )); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-pptp-2.7.4/locale/0000755000175000017500000000000011752422554015174 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/ru/0000755000175000017500000000000011752422554015622 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/ru/LC_MESSAGES/0000755000175000017500000000000011752422554017407 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/ru/LC_MESSAGES/messages.po0000644000175000017500000000330411475426262021560 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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "Общая информация о пользователе" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 #, fuzzy msgid "LDAP error" msgstr "Ошибка LDAP:" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 #, fuzzy msgid "PPTP account" msgstr "Аккаунт FTP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #, fuzzy msgid "Connectivity add-on" msgstr "Подключение" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Моя учетная запись" #~ msgid "This does something" #~ msgstr "Что-то будет" #, fuzzy #~ msgid "Removing of user/PPTP account with dn '%s' failed." #~ msgstr "Удалить настройки эл. почты" #, fuzzy #~ msgid "Saving of user/PPTP account with dn '%s' failed." #~ msgstr "Аккаунт FTP" gosa-plugin-pptp-2.7.4/locale/pl/0000755000175000017500000000000011752422554015607 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/pl/LC_MESSAGES/0000755000175000017500000000000011752422554017374 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/pl/LC_MESSAGES/messages.po0000644000175000017500000000311711475426262021547 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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "Ogólne ustawienia użytkownika" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 #, fuzzy msgid "LDAP error" msgstr "błąd LDAP:" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "Konto PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #, fuzzy msgid "Connectivity add-on" msgstr "Konto połączeń" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Moje konto " #~ msgid "This does something" #~ msgstr "To robi coś" #~ msgid "Removing of user/PPTP account with dn '%s' failed." #~ msgstr "Usuwanie konta PPTP z dn '%s' nieudane." #~ msgid "Saving of user/PPTP account with dn '%s' failed." #~ msgstr "Zapisywanie konta PPTP z dn '%s' nieudane." gosa-plugin-pptp-2.7.4/locale/it/0000755000175000017500000000000011752422554015610 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/it/LC_MESSAGES/0000755000175000017500000000000011752422554017375 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/it/LC_MESSAGES/messages.po0000644000175000017500000000322311475426262021546 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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "Impostazioni generali delle code" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 #, fuzzy msgid "LDAP error" msgstr "Errore LDAP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 #, fuzzy msgid "PPTP account" msgstr "Estenzioni FTP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #, fuzzy msgid "Connectivity add-on" msgstr "Connettività" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Identità" #~ msgid "This does something" #~ msgstr "Questo fa qualcosa" #, fuzzy #~ msgid "Removing of user/PPTP account with dn '%s' failed." #~ msgstr "Rimuovi le estensioni di posta" #, fuzzy #~ msgid "Saving of user/PPTP account with dn '%s' failed." #~ msgstr "Estenzioni FTP" gosa-plugin-pptp-2.7.4/locale/pt_BR/0000755000175000017500000000000011752422554016202 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/pt_BR/LC_MESSAGES/0000755000175000017500000000000011752422554017767 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/pt_BR/LC_MESSAGES/messages.po0000644000175000017500000000303711475426262022143 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 - pptp\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:24+0100\n" "PO-Revision-Date: 2010-03-11 21:08-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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "Configurações gerais do usuário" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 msgid "LDAP error" msgstr "Erro LDAP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "Conta PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #, fuzzy msgid "Connectivity add-on" msgstr "Addon Conectividade" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Minha conta" #~ msgid "This does something" #~ msgstr "Isto faz algo" gosa-plugin-pptp-2.7.4/locale/es/0000755000175000017500000000000011752422554015603 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/es/LC_MESSAGES/0000755000175000017500000000000011752422554017370 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/es/LC_MESSAGES/messages.po0000644000175000017500000000332511475426262021544 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:51+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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "Parámetros genéricos del usuario" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 msgid "LDAP error" msgstr "Error LDAP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "Cuenta PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #, fuzzy msgid "Connectivity add-on" msgstr "Conectividad adicional" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Mi cuenta" #~ msgid "This does something" #~ msgstr "Esto hace algo" #~ msgid "Removing of user/PPTP account with dn '%s' failed." #~ msgstr "Ha fallado la eliminación de la cuenta de usuario/PPTP con dn '%s'." #~ msgid "Saving of user/PPTP account with dn '%s' failed." #~ msgstr "Ha fallado la grabación de la cuenta de usuario/PPTP con dn '%s'." gosa-plugin-pptp-2.7.4/locale/de/0000755000175000017500000000000011752422554015564 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/de/LC_MESSAGES/0000755000175000017500000000000011752422554017351 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/de/LC_MESSAGES/messages.po0000644000175000017500000000320011475450310021504 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:35+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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:27 msgid "Manage PPTP user settings" msgstr "Persönliche PPTP-Einstellungen verwalten" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 msgid "LDAP error" msgstr "LDAP-Fehler" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "PPTP-Konto" #: personal/connectivity/pptp/class_pptpAccount.inc:176 msgid "Connectivity add-on" msgstr "Konnektivitäts-Erweiterung" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Mein Konto" #~ msgid "This does something" #~ msgstr "Dies tut etwas" gosa-plugin-pptp-2.7.4/locale/fr/0000755000175000017500000000000011752422554015603 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/fr/LC_MESSAGES/0000755000175000017500000000000011752422554017370 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/fr/LC_MESSAGES/messages.po0000644000175000017500000000262711475426262021550 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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "Compte PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "Paramètres par défaut des utilisateurs" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 msgid "LDAP error" msgstr "Erreur LDAP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "Compte PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:176 msgid "Connectivity add-on" msgstr "Connectivité" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Mon Compte" #~ msgid "This does something" #~ msgstr "Ceci fait quelque chose" gosa-plugin-pptp-2.7.4/locale/en/0000755000175000017500000000000011752422554015576 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/en/LC_MESSAGES/0000755000175000017500000000000011752422554017363 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/messages.po0000644000175000017500000000236511475426262017353 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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "" #: personal/connectivity/pptp/class_pptpAccount.inc:27 msgid "Manage PPTP user settings" msgstr "" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 msgid "LDAP error" msgstr "" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "" #: personal/connectivity/pptp/class_pptpAccount.inc:176 msgid "Connectivity add-on" msgstr "" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "" gosa-plugin-pptp-2.7.4/locale/zh/0000755000175000017500000000000011752422554015615 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/zh/LC_MESSAGES/0000755000175000017500000000000011752422554017402 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/zh/LC_MESSAGES/messages.po0000644000175000017500000000331511475426262021555 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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "通用队列设置" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 #, fuzzy msgid "LDAP error" msgstr "LDAP 错误:" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "PPTP 账号" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #, fuzzy msgid "Connectivity add-on" msgstr "互联" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "我的账号" #, fuzzy #~ msgid "This does something" #~ msgstr "******" #, fuzzy #~ msgid "Removing of user/PPTP account with dn '%s' failed." #~ msgstr "删除 dn 为 '%s' 的 user/kolab 账号失败。" #, fuzzy #~ msgid "Saving of user/PPTP account with dn '%s' failed." #~ msgstr "保存 dn 为 '%s' 的 user/kolab 账号为空。" gosa-plugin-pptp-2.7.4/locale/nl/0000755000175000017500000000000011752422554015605 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/nl/LC_MESSAGES/0000755000175000017500000000000011752422554017372 5ustar cajuscajusgosa-plugin-pptp-2.7.4/locale/nl/LC_MESSAGES/messages.po0000644000175000017500000000353411475426262021550 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/pptp/class_pptpAccount.inc:26 #: personal/connectivity/pptp/class_pptpAccount.inc:175 msgid "PPTP" msgstr "PPTP" #: personal/connectivity/pptp/class_pptpAccount.inc:27 #, fuzzy msgid "Manage PPTP user settings" msgstr "Algemene wachtrij instellingen" #: personal/connectivity/pptp/class_pptpAccount.inc:102 #: personal/connectivity/pptp/class_pptpAccount.inc:157 #, fuzzy msgid "LDAP error" msgstr "LDAP fout:" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #: personal/connectivity/pptp/pptp.tpl:3 msgid "PPTP account" msgstr "PPTP account" #: personal/connectivity/pptp/class_pptpAccount.inc:176 #, fuzzy msgid "Connectivity add-on" msgstr "Verbindingen" #: personal/connectivity/pptp/class_pptpAccount.inc:180 msgid "My account" msgstr "Mijn account" #~ msgid "This does something" #~ msgstr "Dit doet iets" #, fuzzy #~ msgid "Removing of user/PPTP account with dn '%s' failed." #~ msgstr "Het verwijderen van het PPTP account is mislukt" #, fuzzy #~ msgid "Saving of user/PPTP account with dn '%s' failed." #~ msgstr "Het opslaan van het PPTP account is mislukt"