Changeset 2561 for alternc-mailman/trunk
- Timestamp:
- 09/08/09 07:33:40 (4 years ago)
- Location:
- alternc-mailman/trunk
- Files:
-
- 20 edited
- 9 copied
-
. (modified) (2 props)
-
.svnignore (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/.svnignore)
-
bureau/admin/images (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/bureau/admin/images)
-
bureau/admin/images/mailman.png (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/bureau/admin/images/mailman.png)
-
bureau/admin/menu_mailman.php (modified) (1 diff)
-
bureau/admin/mman_add.php (modified) (2 diffs)
-
bureau/admin/mman_del.php (modified) (3 diffs)
-
bureau/admin/mman_dopasswd.php (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/bureau/admin/mman_dopasswd.php)
-
bureau/admin/mman_list.php (modified) (6 diffs)
-
bureau/admin/mman_passwd.php (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/bureau/admin/mman_passwd.php)
-
bureau/class/m_mailman.php (modified) (16 diffs)
-
bureau/locales/Makefile (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/bureau/locales/Makefile)
-
bureau/locales/en_US/LC_MESSAGES/mailman.po (modified) (4 diffs)
-
bureau/locales/en_US/LC_MESSAGES/mailman_manual.po (modified) (2 diffs)
-
bureau/locales/es_ES/LC_MESSAGES/mailman.po (modified) (4 diffs)
-
bureau/locales/es_ES/LC_MESSAGES/mailman_manual.po (modified) (3 diffs)
-
bureau/locales/fr_FR/LC_MESSAGES/mailman.po (modified) (4 diffs)
-
bureau/locales/fr_FR/LC_MESSAGES/mailman_manual.po (modified) (2 diffs)
-
bureau/locales/mailman.pot (modified) (5 diffs)
-
bureau/locales/mailman_manual.pot (modified) (2 diffs)
-
bureau/locales/pt_BR/LC_MESSAGES/mailman.po (modified) (2 diffs)
-
bureau/locales/pt_BR/LC_MESSAGES/mailman_manual.po (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/bureau/locales/pt_BR/LC_MESSAGES/mailman_manual.po)
-
debian (modified) (1 prop)
-
debian/.svnignore (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/debian/.svnignore)
-
debian/NEWS (modified) (1 diff)
-
debian/changelog (modified) (1 diff)
-
debian/postinst (modified) (1 diff)
-
debian/rules (modified) (1 diff)
-
src/mailman.passwd (copied) (copied from alternc-mailman/branches/benjamin-bureaubleu/src/mailman.passwd)
Legend:
- Unmodified
- Added
- Removed
-
alternc-mailman/trunk
-
Property
svn:ignore
set to
build-stamp
-
Property
svn:mergeinfo
set to
/alternc-mailman/branches/benjamin-bureaubleu merged eligible
-
Property
svn:ignore
set to
-
alternc-mailman/trunk/bureau/admin/menu_mailman.php
r2135 r2561 30 30 31 31 /* ############# ML ############# */ 32 $q=$quota->getquota("mailman"); 33 if ($q["t"]>0) { 32 $q = $quota->getquota("mailman"); 33 34 if (isset($q["t"]) && $q["t"] > 0) { 34 35 ?> 35 <dt><?php __("Mailing lists"); ?></dt> 36 <dd><a href="mman_list.php"><?php __("Mailing lists"); ?></a></dd> 37 <?php 38 } 39 ?> 36 <div class="menu-box"> 37 <div class="menu-title"><img src="images/mailman.png" alt="<?php __("Mailing lists"); ?>" /> <a href="mman_list.php"><?php __("Mailing lists"); ?></a> (<?= $q["u"]; ?>/<?= $q["t"]; ?>)<br /><small><?php __("(with mailman)"); ?></small></div> 38 </div> 39 <?php } ?> -
alternc-mailman/trunk/bureau/admin/mman_add.php
r1151 r2561 29 29 */ 30 30 require_once("../class/config.php"); 31 include_once("head.php"); 31 32 32 33 if (!$quota->cancreate("mailman")) { 33 34 $error=$err->errstr(); 34 35 } 35 include("head.php"); 36 36 37 ?> 37 </head>38 <body>39 38 <h3><?php __("Mailing lists"); ?></h3> 40 39 <?php 41 40 if ($error) { 42 echo "<p class=\"error\">$error</p></body></html>"; 41 echo "<p class=\"error\">$error</p>"; 42 include_once("foot.php"); 43 exit(); 43 44 } 44 45 ?> … … 60 61 </table> 61 62 </form> 62 63 </body> 64 </html> 63 <?php include_once("foot.php"); ?> -
alternc-mailman/trunk/bureau/admin/mman_del.php
r1810 r2561 30 30 require_once("../class/config.php"); 31 31 32 $fields = array ( 33 "d" => array ("request", "array", ""), 34 ); 35 getFields($fields); 36 if (!is_array($d)) { 37 $d[]=$d; 38 } 39 reset($d); 40 41 32 42 $stchange=(!$quota->cancreate("mailman")); 33 43 … … 39 49 exit(); 40 50 } 41 42 if (!is_array($d))43 {44 $tmp = array($d);45 $d = $tmp;46 }47 reset($d);48 51 49 52 include("head.php"); … … 67 70 </p> 68 71 </form> 72 73 <p> 74 <?php __("Warning: Deleting a mailman list will destroy all the subscribed users, preferences and archives it contains! You will <b>NOT</b> be able to get your data back!"); ?> 75 </p> 76 77 69 78 </body> 70 79 </html> -
alternc-mailman/trunk/bureau/admin/mman_list.php
r2274 r2561 29 29 */ 30 30 require_once("../class/config.php"); 31 include_once("head.php"); 31 32 32 include("head.php");33 33 // If there is no installed domain, let's failed definitely ! 34 34 if (count($dom->enum_domains())==0) { 35 35 $error=_("No domain is installed on your account, you cannot create any mailing list!"); 36 36 ?> 37 </head>38 <body>39 37 <h3><?php __("Mailing lists"); ?></h3> 40 38 <?php echo "<p class=\"error\">$error</p>"; ?> 41 </body> 42 </html> 39 <?php include_once("foot.php"); 43 40 44 <?php 45 exit(); 41 exit(); 46 42 } 47 43 … … 49 45 $error.=$err->errstr(); 50 46 ?> 51 </head>52 <body>53 47 <h3><?php __("Mailing lists"); ?></h3> 54 48 <?php echo "<p class=\"error\">$error</p>"; ?> 55 </body>56 </html>57 49 58 50 <?php … … 60 52 else { 61 53 ?> 62 </head>63 <body>64 54 <h3><?php __("Mailing lists"); ?></h3> 65 55 … … 76 66 ?> 77 67 <tr class="lst<?php echo $col; ?>"> 78 <td align="center"><input type="checkbox" class="inc" name="d[]" value="<?php echo $val["id"]; ?>"></td> 79 <td><?php echo $val["list"]."@".$val["domain"] ?></td> 80 <?php // Use the URL of the webmail in case of IP redirection on the domain. There is probably a best way to fix this 81 $mailman_url = variable_get('mailman_url'); 82 if (!empty($mailman_url)) $domaine = $mailman_url; else $domaine = $val["domain"]; 83 ?> 84 <td> <a href="https://<?php echo $domaine; ?>/cgi-bin/mailman/listinfo/<?php echo $val["name"] ?>"><?php __("Public page"); ?></a> </td> 85 <td> <a href="https://<?php echo $domaine; ?>/cgi-bin/mailman/admin/<?php echo $val["name"] ?>"><?php __("List admin"); ?></a> </td> 86 <td> <a href="https://<?php echo $domaine; ?>/cgi-bin/mailman/admindb/<?php echo $val["name"] ?>"><?php __("Pending messages"); ?></a> </td> 68 <td align="center"><input type="checkbox" class="inc" name="d[]" value="<?php echo $val["id"]; ?>" id="d_<?php echo $val["id"]; ?>" /></td> 69 <td><label for="d_<?php echo $val["id"]; ?>"><?php echo $val["list"]."@".$val["domain"] ?></label></td> 70 <td> <a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/listinfo/<?php echo $val["name"] ?>"><?php __("Public page"); ?></a> </td> 71 <td> <a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/admin/<?php echo $val["name"] ?>"><?php __("List admin"); ?></a> </td> 72 <td> <a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/admindb/<?php echo $val["name"] ?>"><?php __("Pending messages"); ?></a> </td> 73 <td> <a href="mman_passwd.php?id=<?php echo $val["id"] ?>"><?php __("Change password"); ?></a> </td> 87 74 <td> <a href="mman_members.php?id=<?php echo $val["id"] ?>"><?php __("List Members"); ?></a> </td> 88 75 </tr> … … 90 77 } 91 78 ?> 92 <tr><td colspan="6" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Delete the checked lists"); ?>" ></td></tr>79 <tr><td colspan="6" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Delete the checked lists"); ?>" /></td></tr> 93 80 </table> 94 81 </form> … … 99 86 if ($quota->cancreate("mailman")) { 100 87 ?> 101 <a href="mman_add.php"><?php __("Create a list"); ?></a><br >88 <a href="mman_add.php"><?php __("Create a list"); ?></a><br /> 102 89 <?php 103 90 } 104 91 ?> 105 <p>106 <?php __("man_mailman_1"); ?>107 </p>108 92 109 </body> 110 </html> 93 <ul> 94 <li>Mailman est un gestionnaire de liste de discussion/diffusion très puissant. Il possède une interface web complète de gestion de liste, accessible par les différents liens ci-dessus.</li> 95 <li>Mailman permet de modérer une liste : pour modérer les futurs abonnés, aller dans "Options de confidentialité"->"Filtres expéditeur" puis choisissez "Oui" dans "Les envois des nouveaux abonnés doivent être modérés par défaut?". En effet, mailman peut modérer CHAQUE abonné d'une liste. </li> 96 <li>Pour modérer les NON-abonnés d'une liste, aller dans "Options de confidentialité"->"Filtres expéditeur" puis choisissez parmi "Accepter En attente Rejeter Ignorer" pour "Action à entreprendre pour les envois des non-abonnés"</li> 97 <li>De nombreuses autres options peuvent être modifiées dans mailman. Pour toute information, cliquez sur le lien "Détails de ..." en dessous de chaque élément configurable, ou contactez-nous.</li> 98 </ul> 99 <?php include_once("foot.php"); ?> -
alternc-mailman/trunk/bureau/class/m_mailman.php
r2254 r2561 31 31 class m_mailman { 32 32 33 /* ----------------------------------------------------------------- */34 function m_mailman() {35 }36 33 37 34 /* ----------------------------------------------------------------- */ … … 43 40 } 44 41 45 /*****************************************************************************/ 46 /** Return the mailing-lists managed by this member : */ 42 43 /* ----------------------------------------------------------------- */ 44 /** 45 * Return the mailing-lists managed by this member : 46 * @param $domain string The domain's list we want (or null to prevent filtering on a specific domain) 47 * @param $order_by array how do we sort the lists (default is domain then listname) 48 * @return array an ordered array of associative arrays with all the members lists 49 */ 47 50 function enum_ml($domain = null, $order_by = array('domain', 'list')) { 48 51 global $err,$db,$cuid; … … 50 53 $order_by = array_map("addslashes", $order_by); 51 54 $order = 'ORDER BY `' . join('`,`', $order_by) . '`'; 52 $query = "SELECT * FROM mailman WHERE uid=$cuid".53 (is_null($domain) ? "" : " AND domain='" . addslashes($domain) ."'" ) .54 " $order;";55 $query = "SELECT * FROM mailman WHERE uid=$cuid". 56 (is_null($domain) ? "" : " AND domain='" . addslashes($domain) ."'" ) . 57 " $order;"; 55 58 $db->query($query); 56 59 if (!$db->num_rows()) { … … 64 67 return $mls; 65 68 } 66 67 /*****************************************************************************/ 69 70 71 /* ----------------------------------------------------------------- */ 72 /** 73 * Return the list of domains that may be used by mailman for the current account 74 * @return array an array of domain names 75 */ 68 76 function prefix_list() { 69 77 global $db,$err,$cuid; … … 75 83 return $r; 76 84 } 77 /*****************************************************************************/ 85 86 87 /* ----------------------------------------------------------------- */ 88 /** 89 * Echoes a select list options of the list of domains that may be used 90 * by mailman for the current account. 91 * @param $current string the item that will be selected in the list 92 * @return array an array of domain names 93 */ 78 94 function select_prefix_list($current) { 79 95 global $db,$err; … … 87 103 } 88 104 89 /*****************************************************************************/ 90 /** Get list informations */ 91 function get_lst($id) 92 { 93 global $db, $err, $cuid; 94 $err->log("mailman","get_list", $cuid); 95 96 $q = "SELECT * FROM mailman WHERE uid = '" . $cuid . "' && id = '" . $id . "'"; 97 $db->query($q); 98 $db->next_record(); 99 if (!$db->f("id")) 100 { 101 $err->raise("mailman",9); 102 return false; 103 } 104 $login = $db->f("list"); 105 $domain = $db->f("domain"); 106 return $login . "@" . $domain; 107 } 108 109 /*****************************************************************************/ 110 /** Create a new list for this member : */ 105 106 /* ----------------------------------------------------------------- */ 107 /** 108 * Get all th informations for a list 109 * @param $id integer is the list id in alternc's database. 110 * @return array an associative array with all the list informations 111 * or false if an error occured. 112 */ 113 function get_lst($id) 114 { 115 global $db, $err, $cuid; 116 $err->log("mailman","get_list", $cuid); 117 118 $q = "SELECT * FROM mailman WHERE uid = '" . $cuid . "' && id = '" . $id . "'"; 119 $db->query($q); 120 $db->next_record(); 121 if (!$db->f("id")) { 122 $err->raise("mailman",9); 123 return false; 124 } 125 $login = $db->f("list"); 126 $domain = $db->f("domain"); 127 return $login . "@" . $domain; 128 } 129 130 131 132 /* ----------------------------------------------------------------- */ 133 /** 134 * Create a new list for this member : 135 * @param $domain string the domain name on which the list will be attached 136 * @param $login string the left part of the @ for the list email 137 * @param $owner the email address of the list administrator (required) 138 * @param $password the initial list password (required) 139 * @return boolean TRUE if the list has been created, or FALSE if an error occured 140 */ 111 141 function add_lst($domain,$login,$owner,$password) { 112 142 global $db,$err,$quota,$mail,$cuid; … … 143 173 return false; 144 174 } 145 // Prefix e OK, on verifie la non-existence des mails que l'on va créer...175 // Prefix OK, let's check that all emails wrapper we will create are unused 146 176 if (!$mail->available($login."@".$domain) || 147 177 !$mail->available($login."-request@".$domain) || … … 158 188 return false; 159 189 } 160 // Le compte n'existe pas, on vérifie le quota et on le créé.190 // Check the quota 161 191 if ($quota->cancreate("mailman")) { 162 // Creation de la liste : 1. recherche du nom de la liste 163 // CA NE MARCHE PAS ! 192 // List creation : 1. insert into the DB 164 193 $db->query("INSERT INTO mailman (uid,list,domain,name) VALUES ('$cuid','$login','$domain','$name');"); 165 194 if (!$mail->add_wrapper($login,$domain,"/var/lib/mailman/mail/mailman post $name","mailman") || … … 174 203 !$mail->add_wrapper($login."-unsubscribe",$domain,"/var/lib/mailman/mail/mailman unsubscribe $name","mailman") 175 204 ) { 205 // didn't work : rollback 176 206 $mail->del_wrapper($login,$domain); $mail->del_wrapper($login."-request",$domain); 177 207 $mail->del_wrapper($login."-owner",$domain); $mail->del_wrapper($login."-admin",$domain); … … 194 224 } 195 225 196 /*****************************************************************************/ 226 227 /* ----------------------------------------------------------------- */ 228 /** 229 * Delete a mailing-list 230 * @param $id integer the id number of the mailing list in alternc's database 231 * @return boolean TRUE if the list has been deleted or FALSE if an error occured 232 */ 197 233 function delete_lst($id) { 198 234 global $db,$err,$mail,$cuid; 199 235 $err->log("mailman","delete_lst",$id); 200 236 // We delete lists only in the current member's account. 201 237 $db->query("SELECT * FROM mailman WHERE id=$id and uid='$cuid';"); 202 238 $db->next_record(); … … 213 249 exec("/usr/lib/alternc/mailman.delete ".escapeshellarg($login), &$output, &$return); 214 250 } 215 216 251 217 252 if ($return) { … … 228 263 } 229 264 230 /* ----------------------------------------------------------------- */ 231 /** Returns the list's members as a text file, one subscriber per 232 * line. 265 266 /* ----------------------------------------------------------------- */ 267 /** Echoes the list's members as a text file, one subscriber per 268 * line. 269 * @param $id integer The list whose members we want to dump 270 * @return void : this function ECHOES the result ! 233 271 */ 234 272 function members($id) { … … 246 284 247 285 /* ----------------------------------------------------------------- */ 248 /** Fonction appellée par domaines lorsqu'un domaine est effacé. 249 * Cette fonction efface tous les comptes mails du domaine concerné. 250 * @param string $dom Domaine à effacer 251 * @return boolean TRUE si le domaine a bien été effacé, FALSE si une erreur s'est produite. 286 /** Change the mailman administrator password of a list 287 * @param $id integer The list number in alternc's database 288 * @param $pass string The new password 289 * @param $pass2 string The new password (confirmation) 290 * @return boolean TRUE if the password has been changed or FALSE if an error occured. 291 */ 292 function passwd($id,$pass,$pass2) { 293 global $db,$err,$mail,$cuid; 294 $err->log("mailman","passwd",$id); 295 296 $db->query("SELECT * FROM mailman WHERE id=$id and uid='$cuid';"); 297 $db->next_record(); 298 if (!$db->f("id")) { 299 $err->raise("mailman",9); 300 return false; 301 } 302 if ($pass!=$pass2) { 303 $err->raise("mailman",11); 304 return false; 305 } 306 $login=$db->f("list"); 307 $domain=$db->f("domain"); 308 309 if (file_exists("/usr/share/alternc-mailman/patches/mailman-true-virtual.applied")) { 310 exec("/usr/lib/alternc/mailman.passwd ".escapeshellarg($login.'@'.$domain)." ".escapeshellarg($pass), &$output, &$return); 311 } else { 312 exec("/usr/lib/alternc/mailman.passwd ".escapeshellarg($login)." ".escapeshellarg($pass), &$output, &$return); 313 } 314 return true; 315 } 316 317 318 /* ----------------------------------------------------------------- */ 319 /** This function is a hook who is called each time a domain is uninstalled 320 * in an account (or when we select "gesmx = no" in the domain panel.) 321 * @param string $dom Domaine to delete 322 * @return boolean TRUE if the domain has been deleted from mailman 252 323 * @access private 253 324 */ … … 256 327 $err->log("mailman","del_dom",$dom); 257 328 258 // Suppression des listes du domaine259 329 $listes=$this->enum_ml($dom); 260 330 while (list($key,$val)=each($listes)) { … … 264 334 } 265 335 266 /* ----------------------------------------------------------------- */ 336 337 /* ----------------------------------------------------------------- */ 338 /** Returns the quota for the current account as an array 339 * @param $name string The quota name we get (should always be "mailman" for this class 340 * @return array an array with used (key 'u') and totally available (key 't') quota for the current account. 341 * or FALSE if an error occured 342 * @access private 343 */ 267 344 function alternc_get_quota($name) { 268 345 global $err,$cuid,$db; … … 274 351 } 275 352 353 354 276 355 } /* Class m_mailman */ 277 356 -
alternc-mailman/trunk/bureau/locales/en_US/LC_MESSAGES/mailman.po
r1603 r2561 7 7 "Project-Id-Version: $Id$\n" 8 8 "Report-Msgid-Bugs-To: i18n@alternc.org\n" 9 "POT-Creation-Date: 200 6-05-09 18:10+0200\n"9 "POT-Creation-Date: 2009-06-14 10:30+0200\n" 10 10 "PO-Revision-Date: 2003-02-03 08:16 +0000\n" 11 11 "Last-Translator: Benjamin Sonntag <benjamin@octopuce.com>\n" … … 15 15 "Content-Transfer-Encoding: 8bit\n" 16 16 17 #: admin/menu_mailman.php:3 6 admin/mman_add.php:39 admin/mman_list.php:3918 #: admin/mman_list.php: 53 admin/mman_list.php:6417 #: admin/menu_mailman.php:37 admin/mman_add.php:38 admin/mman_list.php:37 18 #: admin/mman_list.php:47 admin/mman_list.php:54 admin/mman_passwd.php:40 19 19 msgid "Mailing lists" 20 20 msgstr "Mailing lists" … … 24 24 msgstr "(with mailman)" 25 25 26 #: admin/mman_add.php:4 826 #: admin/mman_add.php:49 27 27 msgid "Email address" 28 28 msgstr "Email address" 29 29 30 #: admin/mman_add.php:5 130 #: admin/mman_add.php:52 31 31 msgid "Owner" 32 32 msgstr "Owner" 33 33 34 #: admin/mman_add.php:5 434 #: admin/mman_add.php:55 35 35 msgid "Initial list password" 36 36 msgstr "Initial list password" 37 37 38 #: admin/mman_add.php:5 838 #: admin/mman_add.php:59 39 39 msgid "Create the list." 40 40 msgstr "Create the list." 41 41 42 #: admin/mman_del.php:44 43 #, php-format 44 msgid "The list %s has been successfully deleted." 45 msgstr "The list %s has been successfully deleted." 42 #: admin/mman_del.php:57 43 msgid "Deleting mailman lists" 44 msgstr "Deleting mailman lists" 45 46 #: admin/mman_del.php:58 47 msgid "Please confirm the deletion of the following mailman lists:" 48 msgstr "Please confirm the deletion of the following mailman lists:" 49 50 #: admin/mman_del.php:69 51 msgid "Delete the selected mailman lists" 52 msgstr "Delete the selected mailman lists" 53 54 #: admin/mman_del.php:69 55 msgid "Don't delete lists and go back to the mailman list" 56 msgstr "Don't delete lists and go back to the mailman list" 57 58 #: admin/mman_del.php:74 59 msgid "" 60 "Warning: Deleting a mailman list will destroy all the subscribed users, " 61 "preferences and archives it contains! You will <b>NOT</b> be able to get " 62 "your data back!" 63 msgstr "" 64 "Warning: Deleting a mailman list will destroy all the subscribed users, " 65 "preferences and archives it contains! You will <b>NOT</b> be able to get " 66 "your data back!" 46 67 47 68 #: admin/mman_doadd.php:38 … … 49 70 msgstr "The mailing list has been successfully created." 50 71 72 #: admin/mman_dodel.php:58 73 #, php-format 74 msgid "The list %s has been successfully deleted." 75 msgstr "The list %s has been successfully deleted." 76 77 #: admin/mman_dopasswd.php:38 78 msgid "The mailing list password has been successfully changed." 79 msgstr "The mailing list password has been successfully changed." 80 51 81 #: admin/mman_list.php:35 52 82 msgid "" 53 83 "No domain is installed on your account, you cannot create any mailing list!" 54 84 msgstr "" 85 "No domain is installed on your account, you cannot create any mailing list!" 55 86 56 #: admin/mman_list.php: 7087 #: admin/mman_list.php:60 57 88 msgid "Delete" 58 89 msgstr "Delete" 59 90 60 #: admin/mman_list.php: 7091 #: admin/mman_list.php:60 61 92 msgid "List name" 62 93 msgstr "List name" 63 94 64 #: admin/mman_list.php: 8095 #: admin/mman_list.php:70 65 96 msgid "Public page" 66 97 msgstr "Public page" 67 98 68 #: admin/mman_list.php: 8199 #: admin/mman_list.php:71 69 100 msgid "List admin" 70 101 msgstr "List admin" 71 102 72 #: admin/mman_list.php: 82103 #: admin/mman_list.php:72 73 104 msgid "Pending messages" 74 105 msgstr "Pending messages" 75 106 76 #: admin/mman_list.php:83 77 #, fuzzy 107 #: admin/mman_list.php:73 108 msgid "Change password" 109 msgstr "Change password" 110 111 #: admin/mman_list.php:74 78 112 msgid "List Members" 79 msgstr "List name"113 msgstr "List Members" 80 114 81 #: admin/mman_list.php: 88115 #: admin/mman_list.php:79 82 116 msgid "Delete the checked lists" 83 117 msgstr "Delete the checked lists" 84 118 85 #: admin/mman_list.php: 97119 #: admin/mman_list.php:88 86 120 msgid "Create a list" 87 121 msgstr "Create a list" 88 122 89 #~ msgid "quota_mailman" 90 #~ msgstr "Mailing lists (mailman)" 123 #: admin/mman_passwd.php:50 124 #, php-format 125 msgid "Changing password of list %s" 126 msgstr "Changing password of list %s" 127 128 #: admin/mman_passwd.php:52 129 msgid "New list password" 130 msgstr "New list password" 131 132 #: admin/mman_passwd.php:55 133 msgid "Password confirmation" 134 msgstr "Password confirmation" 135 136 #: admin/mman_passwd.php:59 137 msgid "Change the password." 138 msgstr "Change the password." 139 -
alternc-mailman/trunk/bureau/locales/en_US/LC_MESSAGES/mailman_manual.po
r1603 r2561 29 29 30 30 msgid "err_mailman_6" 31 msgstr "This email address (or one of the list-subscribe, list-unsubscribe etc.) are already used." 31 msgstr "" 32 "This email address (or one of the list-subscribe, list-unsubscribe etc.) are " 33 "already used." 32 34 33 35 msgid "err_mailman_7" 34 36 msgstr "Your mailing-list quota is over, you cannot create more mailing-lists." 37 38 msgid "err_mailman_8" 39 msgstr "The part before @ cannot contain a _" 35 40 36 41 msgid "err_mailman_9" … … 38 43 39 44 msgid "err_mailman_10" 40 msgstr "A list with the same name already exist on the server. Please choose another name." 45 msgstr "" 46 "A list with the same name already exist on the server. Please choose another " 47 "name." 41 48 49 msgid "err_mailman_11" 50 msgstr "The passwords are differents, please try again" 42 51 52 #, fuzzy 53 msgid "man_mailman_1" 54 msgstr "No list defined yet" 55 56 msgid "quota_mailman" 57 msgstr "Mailing lists (mailman)" -
alternc-mailman/trunk/bureau/locales/es_ES/LC_MESSAGES/mailman.po
r2274 r2561 8 8 msgid "" 9 9 msgstr "" 10 " $id$\n"10 "Project-Id-Version: mailman\n" 11 11 "Report-Msgid-Bugs-To: i18n@alternc.org\n" 12 "POT-Creation-Date: 200 6-05-09 18:10+0200\n"12 "POT-Creation-Date: 2009-06-14 10:30+0200\n" 13 13 "PO-Revision-Date: 2008-02-17 00:35-0400\n" 14 14 "Last-Translator: Daniel Viñar Ulriksen <dani@belil.net>\n" … … 17 17 "Content-Type: text/plain; charset=ISO-8859-1\n" 18 18 "Content-Transfer-Encoding: 8bit\n" 19 " Project-Id-Version: mailman\n"19 "$id$\n" 20 20 "X-Generator: KBabel 1.11.4\n" 21 21 22 #: admin/menu_mailman.php:3 6 admin/mman_add.php:39 admin/mman_list.php:3923 #: admin/mman_list.php: 53 admin/mman_list.php:6422 #: admin/menu_mailman.php:37 admin/mman_add.php:38 admin/mman_list.php:37 23 #: admin/mman_list.php:47 admin/mman_list.php:54 admin/mman_passwd.php:40 24 24 msgid "Mailing lists" 25 25 msgstr "Listas de correo" … … 29 29 msgstr "(con mailman)" 30 30 31 #: admin/mman_add.php:4 831 #: admin/mman_add.php:49 32 32 msgid "Email address" 33 33 msgstr "dirección email" 34 34 35 #: admin/mman_add.php:5 135 #: admin/mman_add.php:52 36 36 msgid "Owner" 37 37 msgstr "Dueño" 38 38 39 #: admin/mman_add.php:5 439 #: admin/mman_add.php:55 40 40 msgid "Initial list password" 41 41 msgstr "Contraseña inicial de la lista" 42 42 43 #: admin/mman_add.php:5 843 #: admin/mman_add.php:59 44 44 msgid "Create the list." 45 45 msgstr "Crear la lista" 46 46 47 #: admin/mman_del.php:44 48 #, php-format 49 msgid "The list %s has been successfully deleted." 50 msgstr "Se borró correctamente la lista %s." 47 #: admin/mman_del.php:57 48 msgid "Deleting mailman lists" 49 msgstr "" 50 51 #: admin/mman_del.php:58 52 msgid "Please confirm the deletion of the following mailman lists:" 53 msgstr "" 54 55 #: admin/mman_del.php:69 56 #, fuzzy 57 msgid "Delete the selected mailman lists" 58 msgstr "Borrar las listas marcadas" 59 60 #: admin/mman_del.php:69 61 msgid "Don't delete lists and go back to the mailman list" 62 msgstr "" 63 64 #: admin/mman_del.php:74 65 msgid "" 66 "Warning: Deleting a mailman list will destroy all the subscribed users, " 67 "preferences and archives it contains! You will <b>NOT</b> be able to get " 68 "your data back!" 69 msgstr "" 51 70 52 71 #: admin/mman_doadd.php:38 … … 54 73 msgstr "Se creó correctamente la lista de correo." 55 74 75 #: admin/mman_dodel.php:58 76 #, php-format 77 msgid "The list %s has been successfully deleted." 78 msgstr "Se borró correctamente la lista %s." 79 80 #: admin/mman_dopasswd.php:38 81 #, fuzzy 82 msgid "The mailing list password has been successfully changed." 83 msgstr "Se creó correctamente la lista de correo." 84 56 85 #: admin/mman_list.php:35 57 msgid "No domain is installed on your account, you cannot create any mailing list!" 58 msgstr "No hay dominios instalados en tu cuenta, ¡no puedes crear una lista de correo!" 86 msgid "" 87 "No domain is installed on your account, you cannot create any mailing list!" 88 msgstr "" 89 "No hay dominios instalados en tu cuenta, ¡no puedes crear una lista de " 90 "correo!" 59 91 60 #: admin/mman_list.php: 7092 #: admin/mman_list.php:60 61 93 msgid "Delete" 62 94 msgstr "Borrar" 63 95 64 #: admin/mman_list.php: 7096 #: admin/mman_list.php:60 65 97 msgid "List name" 66 98 msgstr "Nombre de la lista" 67 99 68 #: admin/mman_list.php: 80100 #: admin/mman_list.php:70 69 101 msgid "Public page" 70 102 msgstr "Página pública" 71 103 72 #: admin/mman_list.php: 81104 #: admin/mman_list.php:71 73 105 msgid "List admin" 74 106 msgstr "Administración de la lista" 75 107 76 #: admin/mman_list.php: 82108 #: admin/mman_list.php:72 77 109 msgid "Pending messages" 78 110 msgstr "Mensajes pendientes" 79 111 80 #: admin/mman_list.php:83 112 #: admin/mman_list.php:73 113 msgid "Change password" 114 msgstr "" 115 116 #: admin/mman_list.php:74 81 117 msgid "List Members" 82 118 msgstr "Lista de miembros" 83 119 84 #: admin/mman_list.php: 88120 #: admin/mman_list.php:79 85 121 msgid "Delete the checked lists" 86 122 msgstr "Borrar las listas marcadas" 87 123 88 #: admin/mman_list.php: 97124 #: admin/mman_list.php:88 89 125 msgid "Create a list" 90 126 msgstr "Crear una lista" 91 127 128 #: admin/mman_passwd.php:50 129 #, php-format 130 msgid "Changing password of list %s" 131 msgstr "" 132 133 #: admin/mman_passwd.php:52 134 #, fuzzy 135 msgid "New list password" 136 msgstr "Contraseña inicial de la lista" 137 138 #: admin/mman_passwd.php:55 139 msgid "Password confirmation" 140 msgstr "" 141 142 #: admin/mman_passwd.php:59 143 msgid "Change the password." 144 msgstr "" -
alternc-mailman/trunk/bureau/locales/es_ES/LC_MESSAGES/mailman_manual.po
r2274 r2561 23 23 24 24 msgid "err_mailman_3" 25 msgstr "La dirección de correo del dueño y la contraseña de la lista son obligaorios." 25 msgstr "" 26 "La dirección de correo del dueño y la contraseña de la lista son obligaorios." 26 27 27 28 msgid "err_mailman_4" … … 32 33 33 34 msgid "err_mailman_6" 34 msgstr "Esta dirección de correo (o una de las direcciones de servicio lista-subscribe, lista-unsubscribe, etc.) ya está en uso." 35 msgstr "" 36 "Esta dirección de correo (o una de las direcciones de servicio lista-" 37 "subscribe, lista-unsubscribe, etc.) ya está en uso." 35 38 36 39 msgid "err_mailman_7" … … 46 49 msgstr "Una lista con el mismo nombre ya existe. Elije otro nombre." 47 50 51 #, fuzzy 52 msgid "err_mailman_11" 53 msgstr "Ninguna lista de correo encontrada." 54 48 55 msgid "man_mailman_1" 49 56 msgstr "" 50 "<ul> " 51 "<li>Mailman es un manejador de listas de discusión/difusión muy potente. Dispone de una interfaz web de gestión de lista completa, accesible a través de los diferentes enlaces aquí arrba.</li>" 52 "<li>Mailman permite moderar una lista: para moderar los futuros suscriptores ir a \"Opciones de confidencialidad\"->\"Filtros remitente\" y luego elegir \"Sí\" en \"¿Los envíos de nuevos suscriptores deben ser moderados por omisión?\". De hecho, mailman puede moderar CADA suscriptor de una lista.</li>" 53 "<li>Para moderar los NO-suscriptores de una lsita, ir a \"Opciones de confidencialidad\"->\"Filtros remitente\" y luego elegir entre \"Aceptar En espera Rechazar Ignorar\" para \"Acción para los envíos de los no-suscriptores\"</li>" 54 "<li>Varias otras opciones pueden ser modificadas en mailman. Para cualquier información, presiona en el enlace \"Détalles de ...\" abajo de cada elemento configurable, o contacta el hospedaje.</li>" 55 "</ul>" 56 57 "<ul> <li>Mailman es un manejador de listas de discusión/difusión muy " 58 "potente. Dispone de una interfaz web de gestión de lista completa, accesible " 59 "a través de los diferentes enlaces aquí arrba.</li><li>Mailman permite " 60 "moderar una lista: para moderar los futuros suscriptores ir a \"Opciones de " 61 "confidencialidad\"->\"Filtros remitente\" y luego elegir \"Sí\" en \"¿Los " 62 "envíos de nuevos suscriptores deben ser moderados por omisión?\". De hecho, " 63 "mailman puede moderar CADA suscriptor de una lista.</li><li>Para moderar los " 64 "NO-suscriptores de una lsita, ir a \"Opciones de confidencialidad\"->" 65 "\"Filtros remitente\" y luego elegir entre \"Aceptar En espera Rechazar " 66 "Ignorar\" para \"Acción para los envíos de los no-suscriptores\"</" 67 "li><li>Varias otras opciones pueden ser modificadas en mailman. Para " 68 "cualquier información, presiona en el enlace \"Détalles de ...\" abajo de " 69 "cada elemento configurable, o contacta el hospedaje.</li></ul>" -
alternc-mailman/trunk/bureau/locales/fr_FR/LC_MESSAGES/mailman.po
r1603 r2561 7 7 "Project-Id-Version: $Id$\n" 8 8 "Report-Msgid-Bugs-To: i18n@alternc.org\n" 9 "POT-Creation-Date: 200 6-05-09 18:10+0200\n"10 "PO-Revision-Date: 200 3-02-0308:16 +0000\n"9 "POT-Creation-Date: 2009-06-14 10:30+0200\n" 10 "PO-Revision-Date: 2009-05-24 08:16 +0000\n" 11 11 "Last-Translator: Benjamin Sonntag <benjamin@octopuce.com>\n" 12 12 "Language-Team: French <tech@alternc.org>\n" … … 15 15 "Content-Transfer-Encoding: 8bit\n" 16 16 17 #: admin/menu_mailman.php:3 6 admin/mman_add.php:39 admin/mman_list.php:3918 #: admin/mman_list.php: 53 admin/mman_list.php:6417 #: admin/menu_mailman.php:37 admin/mman_add.php:38 admin/mman_list.php:37 18 #: admin/mman_list.php:47 admin/mman_list.php:54 admin/mman_passwd.php:40 19 19 msgid "Mailing lists" 20 20 msgstr "Listes de discussion" … … 24 24 msgstr "(avec mailman)" 25 25 26 #: admin/mman_add.php:4 826 #: admin/mman_add.php:49 27 27 msgid "Email address" 28 28 msgstr "Adresse email" 29 29 30 #: admin/mman_add.php:5 130 #: admin/mman_add.php:52 31 31 msgid "Owner" 32 32 msgstr "Propriétaire" 33 33 34 #: admin/mman_add.php:5 434 #: admin/mman_add.php:55 35 35 msgid "Initial list password" 36 36 msgstr "Mot de passe initial" 37 37 38 #: admin/mman_add.php:5 838 #: admin/mman_add.php:59 39 39 msgid "Create the list." 40 40 msgstr "Créer cette liste." 41 41 42 #: admin/mman_del.php:44 42 #: admin/mman_del.php:57 43 msgid "Deleting mailman lists" 44 msgstr "Effacement de listes mailman" 45 46 #: admin/mman_del.php:58 47 msgid "Please confirm the deletion of the following mailman lists:" 48 msgstr "Merci de confirmer l'effacement des listes mailman ci-dessous : " 49 50 #: admin/mman_del.php:69 51 msgid "Delete the selected mailman lists" 52 msgstr "Effacer les listes mailman cochées" 53 54 #: admin/mman_del.php:69 55 msgid "Don't delete lists and go back to the mailman list" 56 msgstr "Ne pas effacer les listes et retourner à la liste des listes" 57 58 #: admin/mman_del.php:74 59 msgid "" 60 "Warning: Deleting a mailman list will destroy all the subscribed users, " 61 "preferences and archives it contains! You will <b>NOT</b> be able to get " 62 "your data back!" 63 msgstr "Attention : l'effacement d'une liste mailman effacera tous les abonnés, les préférences et archives contenus dans votre liste ! Vous ne pourrez <b>PAS</b> retrouver vos données !" 64 65 #: admin/mman_doadd.php:38 66 msgid "The mailing list has been successfully created." 67 msgstr "La liste a été créée avec succès." 68 69 #: admin/mman_dodel.php:58 43 70 #, php-format 44 71 msgid "The list %s has been successfully deleted." 45 72 msgstr "La liste %s a été effacée avec succès." 46 73 47 #: admin/mman_do add.php:3848 msgid "The mailing list has been successfully created."49 msgstr "L a liste a été crééeavec succès."74 #: admin/mman_dopasswd.php:38 75 msgid "The mailing list password has been successfully changed." 76 msgstr "Le mot de passe de la liste a été changé avec succès." 50 77 51 78 #: admin/mman_list.php:35 … … 56 83 "listes !" 57 84 58 #: admin/mman_list.php: 7085 #: admin/mman_list.php:60 59 86 msgid "Delete" 60 87 msgstr "Effacer" 61 88 62 #: admin/mman_list.php: 7089 #: admin/mman_list.php:60 63 90 msgid "List name" 64 91 msgstr "Nom de la liste" 65 92 66 #: admin/mman_list.php: 8093 #: admin/mman_list.php:70 67 94 msgid "Public page" 68 95 msgstr "Page d'info" 69 96 70 #: admin/mman_list.php: 8197 #: admin/mman_list.php:71 71 98 msgid "List admin" 72 99 msgstr "Administration" 73 100 74 #: admin/mman_list.php: 82101 #: admin/mman_list.php:72 75 102 msgid "Pending messages" 76 103 msgstr "Messages en attente" 77 104 78 #: admin/mman_list.php:83 105 #: admin/mman_list.php:73 106 msgid "Change password" 107 msgstr "Modifier le mot de passe" 108 109 #: admin/mman_list.php:74 79 110 msgid "List Members" 80 111 msgstr "Abonnés" 81 112 82 #: admin/mman_list.php: 88113 #: admin/mman_list.php:79 83 114 msgid "Delete the checked lists" 84 115 msgstr "Effacer les listes cochées" 85 116 86 #: admin/mman_list.php: 97117 #: admin/mman_list.php:88 87 118 msgid "Create a list" 88 119 msgstr "Créer une nouvelle liste" 89 120 90 #~ msgid "quota_mailman" 91 #~ msgstr "Listes de discussions (mailman)" 121 #: admin/mman_passwd.php:50 122 #, php-format 123 msgid "Changing password of list %s" 124 msgstr "Modification du mot de passe de la liste %s" 125 126 #: admin/mman_passwd.php:52 127 msgid "New list password" 128 msgstr "Nouveau mot de passe de la liste" 129 130 #: admin/mman_passwd.php:55 131 msgid "Password confirmation" 132 msgstr "Confirmation du mot de passe" 133 134 #: admin/mman_passwd.php:59 135 msgid "Change the password." 136 msgstr "Modifier le mot de passe." 137 -
alternc-mailman/trunk/bureau/locales/fr_FR/LC_MESSAGES/mailman_manual.po
r2274 r2561 46 46 msgstr "Une liste du même nom existe deja. Choisissez un autre nom." 47 47 48 msgid "err_mailman_11" 49 msgstr "Les deux mots de passes sont différents, réessayez." 50 48 51 msgid "man_mailman_1" 49 52 msgstr "" … … 55 58 "</ul>" 56 59 60 msgid "quota_mailman" 61 msgstr "Listes de discussions (mailman)" -
alternc-mailman/trunk/bureau/locales/mailman.pot
r1609 r2561 1 1 # AlternC's Translation 2 # Copyright (C) 200 6AlternC's translation team <i18n@alternc.org>2 # Copyright (C) 2009 AlternC's translation team <i18n@alternc.org> 3 3 # This file is distributed under the same license as the AlternC's package. 4 4 # AlternC's translation team <i18n@alternc.org> … … 9 9 "$id$\n" 10 10 "Report-Msgid-Bugs-To: i18n@alternc.org\n" 11 "POT-Creation-Date: 200 6-05-09 18:10+0200\n"12 "PO-Revision-Date: 200 6-05-09 18:10 CEST\n"11 "POT-Creation-Date: 2009-06-14 10:30+0200\n" 12 "PO-Revision-Date: 2009-06-14 10:30 CEST\n" 13 13 "Last-Translator: Team AlternC <i18n@alternc.org>\n" 14 14 "Language-Team: Team AlternC <i18n@alternc.org>\n" … … 17 17 "Content-Transfer-Encoding: 8bit\n" 18 18 19 #: admin/menu_mailman.php:3 6 admin/mman_add.php:39 admin/mman_list.php:3920 #: admin/mman_list.php: 53 admin/mman_list.php:6419 #: admin/menu_mailman.php:37 admin/mman_add.php:38 admin/mman_list.php:37 20 #: admin/mman_list.php:47 admin/mman_list.php:54 admin/mman_passwd.php:40 21 21 msgid "Mailing lists" 22 22 msgstr "" … … 26 26 msgstr "" 27 27 28 #: admin/mman_add.php:4 828 #: admin/mman_add.php:49 29 29 msgid "Email address" 30 30 msgstr "" 31 31 32 #: admin/mman_add.php:5 132 #: admin/mman_add.php:52 33 33 msgid "Owner" 34 34 msgstr "" 35 35 36 #: admin/mman_add.php:5 436 #: admin/mman_add.php:55 37 37 msgid "Initial list password" 38 38 msgstr "" 39 39 40 #: admin/mman_add.php:5 840 #: admin/mman_add.php:59 41 41 msgid "Create the list." 42 42 msgstr "" 43 43 44 #: admin/mman_del.php:44 44 #: admin/mman_del.php:57 45 msgid "Deleting mailman lists" 46 msgstr "" 47 48 #: admin/mman_del.php:58 49 msgid "Please confirm the deletion of the following mailman lists:" 50 msgstr "" 51 52 #: admin/mman_del.php:69 53 msgid "Delete the selected mailman lists" 54 msgstr "" 55 56 #: admin/mman_del.php:69 57 msgid "Don't delete lists and go back to the mailman list" 58 msgstr "" 59 60 #: admin/mman_del.php:74 61 msgid "" 62 "Warning: Deleting a mailman list will destroy all the subscribed users, " 63 "preferences and archives it contains! You will <b>NOT</b> be able to get " 64 "your data back!" 65 msgstr "" 66 67 #: admin/mman_doadd.php:38 68 msgid "The mailing list has been successfully created." 69 msgstr "" 70 71 #: admin/mman_dodel.php:58 45 72 #, php-format 46 73 msgid "The list %s has been successfully deleted." 47 74 msgstr "" 48 75 49 #: admin/mman_do add.php:3850 msgid "The mailing list has been successfully created."76 #: admin/mman_dopasswd.php:38 77 msgid "The mailing list password has been successfully changed." 51 78 msgstr "" 52 79 … … 56 83 msgstr "" 57 84 58 #: admin/mman_list.php: 7085 #: admin/mman_list.php:60 59 86 msgid "Delete" 60 87 msgstr "" 61 88 62 #: admin/mman_list.php: 7089 #: admin/mman_list.php:60 63 90 msgid "List name" 64 91 msgstr "" 65 92 66 #: admin/mman_list.php: 8093 #: admin/mman_list.php:70 67 94 msgid "Public page" 68 95 msgstr "" 69 96 70 #: admin/mman_list.php: 8197 #: admin/mman_list.php:71 71 98 msgid "List admin" 72 99 msgstr "" 73 100 74 #: admin/mman_list.php: 82101 #: admin/mman_list.php:72 75 102 msgid "Pending messages" 76 103 msgstr "" 77 104 78 #: admin/mman_list.php:83 105 #: admin/mman_list.php:73 106 msgid "Change password" 107 msgstr "" 108 109 #: admin/mman_list.php:74 79 110 msgid "List Members" 80 111 msgstr "" 81 112 82 #: admin/mman_list.php: 88113 #: admin/mman_list.php:79 83 114 msgid "Delete the checked lists" 84 115 msgstr "" 85 116 86 #: admin/mman_list.php: 97117 #: admin/mman_list.php:88 87 118 msgid "Create a list" 88 119 msgstr "" 120 121 #: admin/mman_passwd.php:50 122 #, php-format 123 msgid "Changing password of list %s" 124 msgstr "" 125 126 #: admin/mman_passwd.php:52 127 msgid "New list password" 128 msgstr "" 129 130 #: admin/mman_passwd.php:55 131 msgid "Password confirmation" 132 msgstr "" 133 134 #: admin/mman_passwd.php:59 135 msgid "Change the password." 136 msgstr "" -
alternc-mailman/trunk/bureau/locales/mailman_manual.pot
r2274 r2561 4 4 # <tech@alternc.org> 5 5 # 6 # Daniel Viñar Ulriksen <dani@belil.net>, 2008.7 #, fuzzy8 6 msgid "" 9 7 msgstr "" … … 47 45 msgstr "" 48 46 47 msgid "err_mailman_11" 48 msgstr "" 49 49 50 msgid "man_mailman_1" 50 51 msgstr "" 51 52 53 msgid "quota_mailman" 54 msgstr "Listes de discussions (mailman)" -
alternc-mailman/trunk/bureau/locales/pt_BR/LC_MESSAGES/mailman.po
r2192 r2561 6 6 msgstr "" 7 7 "Project-Id-Version: $Id: mailman.po,v 1.3 2003/06/15 18:58:03 root Exp $\n" 8 "Report-Msgid-Bugs-To: i18n@alternc.org\n" 9 "POT-Creation-Date: 2009-06-14 10:30+0200\n" 8 10 "PO-Revision-Date: 2003-02-03 08:16 +0000\n" 9 11 "Last-Translator: Benjamin Sonntag <benjamin@octopuce.com>\n" … … 13 15 "Content-Transfer-Encoding: 8bit\n" 14 16 15 msgid "quota_mailman" 16 msgstr "Enviando listas (mailman)" 17 17 #: admin/menu_mailman.php:37 admin/mman_add.php:38 admin/mman_list.php:37 18 #: admin/mman_list.php:47 admin/mman_list.php:54 admin/mman_passwd.php:40 18 19 msgid "Mailing lists" 19 20 msgstr "Enviando listas " 20 21 22 #: admin/menu_mailman.php:37 23 msgid "(with mailman)" 24 msgstr "(com mailman)" 25 26 #: admin/mman_add.php:49 21 27 msgid "Email address" 22 28 msgstr "Endereço de Email" 23 29 30 #: admin/mman_add.php:52 24 31 msgid "Owner" 25 32 msgstr "Dono" 26 33 34 #: admin/mman_add.php:55 27 35 msgid "Initial list password" 28 36 msgstr "Senha inicial da lista" 29 37 38 #: admin/mman_add.php:59 30 39 msgid "Create the list." 31 40 msgstr "Criar a lista." 32 41 42 #: admin/mman_del.php:57 43 msgid "Deleting mailman lists" 44 msgstr "" 45 46 #: admin/mman_del.php:58 47 msgid "Please confirm the deletion of the following mailman lists:" 48 msgstr "" 49 50 #: admin/mman_del.php:69 51 #, fuzzy 52 msgid "Delete the selected mailman lists" 53 msgstr "Remover as listas selecionadas" 54 55 #: admin/mman_del.php:69 56 msgid "Don't delete lists and go back to the mailman list" 57 msgstr "" 58 59 #: admin/mman_del.php:74 60 msgid "" 61 "Warning: Deleting a mailman list will destroy all the subscribed users, " 62 "preferences and archives it contains! You will <b>NOT</b> be able to get " 63 "your data back!" 64 msgstr "" 65 66 #: admin/mman_doadd.php:38 67 msgid "The mailing list has been successfully created." 68 msgstr "A lista de envios foi criada com sucesso." 69 70 #: admin/mman_dodel.php:58 71 #, php-format 33 72 msgid "The list %s has been successfully deleted." 34 73 msgstr "A lista %s foi removida com sucesso." 35 74 36 msgid "The mailing list has been successfully created." 75 #: admin/mman_dopasswd.php:38 76 #, fuzzy 77 msgid "The mailing list password has been successfully changed." 37 78 msgstr "A lista de envios foi criada com sucesso." 38 79 80 #: admin/mman_list.php:35 81 msgid "" 82 "No domain is installed on your account, you cannot create any mailing list!" 83 msgstr "" 84 85 #: admin/mman_list.php:60 39 86 msgid "Delete" 40 87 msgstr "Remover" 41 88 89 #: admin/mman_list.php:60 42 90 msgid "List name" 43 91 msgstr "Nome da lista" 44 92 93 #: admin/mman_list.php:70 45 94 msgid "Public page" 46 95 msgstr "Página publica" 47 96 97 #: admin/mman_list.php:71 48 98 msgid "List admin" 49 99 msgstr "Administrador da lista" 50 100 101 #: admin/mman_list.php:72 51 102 msgid "Pending messages" 52 103 msgstr "Mensagens faltando á enviar" 53 104 105 #: admin/mman_list.php:73 106 msgid "Change password" 107 msgstr "" 108 109 #: admin/mman_list.php:74 110 #, fuzzy 111 msgid "List Members" 112 msgstr "Nome da lista" 113 114 #: admin/mman_list.php:79 54 115 msgid "Delete the checked lists" 55 116 msgstr "Remover as listas selecionadas" 56 117 118 #: admin/mman_list.php:88 57 119 msgid "Create a list" 58 120 msgstr "Criar a lista" 59 121 60 msgid "(with mailman)" 61 msgstr "(com mailman)" 122 #: admin/mman_passwd.php:50 123 #, php-format 124 msgid "Changing password of list %s" 125 msgstr "" 62 126 63 ################################################################## 64 # m_mailman 127 #: admin/mman_passwd.php:52 128 msgid "New list password" 129 msgstr "Senha da lista" 65 130 66 msgid "err_mailman_1" 67 msgstr "A lista não definida ainda" 131 #: admin/mman_passwd.php:55 132 msgid "Password confirmation" 133 msgstr "" 68 134 69 msgid "err_mailman_2" 70 msgstr "O login (parte esquerda do @) é obrigatório" 135 #: admin/mman_passwd.php:59 136 msgid "Change the password." 137 msgstr "" 71 138 72 msgid "err_mailman_3"73 msgstr "O email do dono e a senha são obrigatórios"74 75 msgid "err_mailman_4"76 msgstr "Este email está incorreto"77 78 msgid "err_mailman_5"79 msgstr "Este domínio não existe."80 81 msgid "err_mailman_6"82 msgstr "Este endereço de email (ou um da lista assinadas, lista não assinadas etc.) já foi usado."83 84 msgid "err_mailman_7"85 msgstr "Sua cota de listas de envio acabou, você não pode criar mais listas."86 87 msgid "err_mailman_9"88 msgstr "Esta lista nãoo existe"89 90 msgid "err_mailman_10"91 msgstr "Uma lista com o mesmo nome já existe no servidor. Por favor escolha um outro nome."92 -
alternc-mailman/trunk/debian
-
Property
svn:ignore
set to
alternc-mailman.postrm.debhelper
alternc-mailman.substvars
files
alternc-mailman
alternc-mailman.debhelper.log
postinst
postrm
-
Property
svn:ignore
set to
-
alternc-mailman/trunk/debian/NEWS
r2245 r2561 1 alternc-mailman (1.8) stable; urgency=low 2 3 This version changes the following : 4 * The blue desktop is alternc's default as for 0.9.10. alternc-mailman 1.8 is using 5 this blue desktop as a default too, and the code in the admin/ folder is now compliant 6 with this frameless way of showing the panel pages. 7 * Users are now able to change a list password from AlternC (useful when a user forgot his 8 list's password). A new perl binary has been added to call /var/lib/mailman/bin/change_pw 9 accordingly 10 * The code has been reworked to include only clean, javadoc-compliant, english written comments 11 12 -- Benjamin Sonntag <benjamin@sonntag.fr> Mon, 15 Jun 2009 07:20:00 +0200 13 1 14 alternc-mailman (1.7) stable; urgency=low 2 15 -
alternc-mailman/trunk/debian/changelog
r2245 r2561 1 alternc-mailman (1.8) stable; urgency=low 2 3 * reformatting of the class comments in the code (all comments are in english now) 4 * changing desktop color to blue :) 5 * misc security sanitizing patchs from alternc 0.9.10pre 6 * added the ability to change a list's password from the panel (in case you forgot it) 7 8 -- Benjamin Sonntag <benjamin@sonntag.fr> Sat, 14 Jun 2009 10:43:00 +0200 9 1 10 alternc-mailman (1.7) stable; urgency=low 2 11 -
alternc-mailman/trunk/debian/postinst
r2442 r2561 1 #!/bin/sh 2 3 set -e 1 #!/bin/sh -e 4 2 5 3 . /usr/share/debconf/confmodule -
alternc-mailman/trunk/debian/rules
r2217 r2561 39 39 # Install the binaries : -rwxr-sr-x 40 40 install -m 02755 -o root -g list \ 41 src/mailman.create src/mailman.delete src/mailman.list \41 src/mailman.create src/mailman.delete src/mailman.list src/mailman.passwd \ 42 42 src/mailman.sub src/mailman.unsub \ 43 43 debian/alternc-mailman/usr/lib/alternc/
Note: See TracChangeset
for help on using the changeset viewer.
