Changeset 10342 for extensions
- Timestamp:
- Apr 12, 2011, 10:39:42 PM (14 years ago)
- Location:
- extensions/UserAdvManager/trunk
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/UserAdvManager/trunk/admin/UAM_admin.php
r9908 r10342 34 34 $UAM_Exclusionlist_Error = false; 35 35 36 $dump_download = ''; 36 37 37 38 // +-----------------------------------------------------------------------+ … … 223 224 } 224 225 226 // Saving UAM tables and configuration settings 227 if (isset($_POST['save'])) 228 { 229 $dump_download = (isset($_POST['dump_download'])) ? 'true' : 'false'; 230 231 if(uam_dump($dump_download) and $dump_download == 'false') 232 { 233 array_push($page['infos'], l10n('UAM_Dump_OK')); 234 } 235 else 236 { 237 array_push($page['errors'], l10n('UAM_Dump_NOK')); 238 } 239 } 225 240 226 241 //Testing password enforcement … … 372 387 'UAM_VERSION' => $version, 373 388 'UAM_PATH' => UAM_PATH, 389 'UAM_DUMP_DOWNLOAD' => $dump_download, 374 390 'UAM_MAIL_INFO_TRUE' => $conf_UAM[0]=='true' ? 'checked="checked"' : '' , 375 391 'UAM_MAIL_INFO_FALSE' => $conf_UAM[0]=='false' ? 'checked="checked"' : '' , -
extensions/UserAdvManager/trunk/admin/template/global.tpl
r10144 r10342 703 703 </form> 704 704 705 706 <div id="instructionTips" class="instructionBlock" > 707 <div id="Backup_header" class="instructionBlockHeaderCollapsed" onclick="uam_blockToggleDisplay('Backup_header', 'Backup')"> 708 <span class="cluetip" title="{'UAM_DumpTitle'|translate}|{'UAM_DumpTitle_d'|translate}">{'UAM_DumpTxt'|@translate}</span> 709 </div> 710 711 <div id="Backup" class="instructionBlockContent" style="display:none"> 712 <fieldset> 713 <form method="post" action="" class="general"> 714 <p> 715 {'UAM_Dump_Download'|@translate} 716 <input type="checkbox" name="dump_download" value="true" {$UAM_DUMP_DOWNLOAD}> 717 <br><br> 718 <input class="submit" type="submit" value="{'UAM_Save'|@translate}" name="save" {$TAG_INPUT_ENABLED}> 719 </p> 720 </form> 721 </fieldset> 722 </div> 723 724 </div> 725 726 705 727 <div id="instructionTips" class="instructionBlock" > 706 728 <div id="Tips_header" class="instructionBlockHeaderCollapsed" onclick="uam_blockToggleDisplay('Tips_header', 'Tips')"> … … 734 756 </div> 735 757 758 736 759 <fieldset> 737 760 {'UAM_Support_txt'|@translate} -
extensions/UserAdvManager/trunk/changelog.txt.php
r10168 r10342 239 239 -- 2.20.2 : Bug 2256 fixed - Error on upgrade from version 2.20.0 to 2.20.1 240 240 241 -- 2.20.3 : Bug 2257 242 Bug 2258 fixed - New feature to backup UAM configuration and personnal settings 243 241 244 */ 242 245 ?> -
extensions/UserAdvManager/trunk/include/functions.inc.php
r10144 r10342 2403 2403 2404 2404 /** 2405 * UAM specific database dump (only for MySql !) 2406 * Creates an SQL dump of UAM specific tables and configuration settings 2407 * 2408 * @returns : Boolean to manage appropriate message display 2409 * 2410 */ 2411 function uam_dump($download) 2412 { 2413 global $conf; 2414 2415 // Initial backup folder creation and file initialisation 2416 if (!is_dir(UAM_PATH.'/include/backup')) 2417 mkdir(UAM_PATH.'/include/backup'); 2418 2419 $Backup_File = UAM_PATH.'/include/backup/UAM_dbbackup.sql'; 2420 2421 $fp = fopen($Backup_File, 'w'); 2422 2423 2424 // Saving UAM specific tables 2425 $ListTables = array(USER_CONFIRM_MAIL_TABLE, USER_LASTVISIT_TABLE); 2426 $j=0; 2427 2428 while($j < count($ListTables)) 2429 { 2430 $sql = 'SHOW CREATE TABLE '.$ListTables[$j]; 2431 $res = pwg_query($sql); 2432 2433 if ($res) 2434 { 2435 $insertions = "-- -------------------------------------------------------\n"; 2436 $insertions .= "-- Create ".$ListTables[$j]." table\n"; 2437 $insertions .= "-- ------------------------------------------------------\n\n"; 2438 2439 $insertions .= "DROP TABLE IF EXISTS ".$ListTables[$j].";\n\n"; 2440 2441 $array = mysql_fetch_array($res); 2442 $array[1] .= ";\n\n"; 2443 $insertions .= $array[1]; 2444 2445 $req_table = pwg_query('SELECT * FROM '.$ListTables[$j]) or die(mysql_error()); 2446 $nb_fields = mysql_num_fields($req_table); 2447 while ($line = mysql_fetch_array($req_table)) 2448 { 2449 $insertions .= 'INSERT INTO '.$ListTables[$j].' VALUES ('; 2450 for ($i=0; $i<$nb_fields; $i++) 2451 { 2452 $insertions .= '\'' . mysql_real_escape_string($line[$i]) . '\', '; 2453 } 2454 $insertions = substr($insertions, 0, -2); 2455 $insertions .= ");\n"; 2456 } 2457 $insertions .= "\n\n"; 2458 } 2459 2460 fwrite($fp, $insertions); 2461 $j++; 2462 } 2463 2464 // Saving UAM configuration 2465 $insertions = "-- -------------------------------------------------------\n"; 2466 $insertions .= "-- Insert UAM configuration in ".CONFIG_TABLE."\n"; 2467 $insertions .= "-- ------------------------------------------------------\n\n"; 2468 2469 fwrite($fp, $insertions); 2470 2471 $pattern = "UserAdvManager%"; 2472 $req_table = pwg_query('SELECT * FROM '.CONFIG_TABLE.' WHERE param LIKE "'.$pattern.'";') or die(mysql_error()); 2473 $nb_fields = mysql_num_fields($req_table); 2474 2475 while ($line = mysql_fetch_array($req_table)) 2476 { 2477 $insertions = 'INSERT INTO '.CONFIG_TABLE.' VALUES ('; 2478 for ($i=0; $i<$nb_fields; $i++) 2479 { 2480 $insertions .= '\'' . mysql_real_escape_string($line[$i]) . '\', '; 2481 } 2482 $insertions = substr($insertions, 0, -2); 2483 $insertions .= ");\n"; 2484 2485 fwrite($fp, $insertions); 2486 } 2487 2488 fclose($fp); 2489 2490 // Download generated dump file 2491 if ($download == 'true') 2492 { 2493 if (@filesize($Backup_File)) 2494 { 2495 $http_headers = array( 2496 'Content-Length: '.@filesize($Backup_File), 2497 'Content-Type: text/x-sql', 2498 'Content-Disposition: attachment; filename="UAM_dbbackup.sql";', 2499 'Content-Transfer-Encoding: binary', 2500 ); 2501 2502 foreach ($http_headers as $header) 2503 { 2504 header($header); 2505 } 2506 2507 @readfile($Backup_File); 2508 exit(); 2509 } 2510 } 2511 2512 return true; 2513 } 2514 2515 2516 /** 2405 2517 * Useful for debugging - 4 vars can be set 2406 2518 * Output result to log.txt file -
extensions/UserAdvManager/trunk/language/de_DE/help/plugin.lang.php
r9908 r10342 267 267 Please refer to the <b>Tipps und Beispiele</b> at the bottom of this page for details.'; 268 268 // --------- End: New or revised $lang ---- from version 2.20.0 269 270 271 // --------- Starting below: New or revised $lang ---- from version 2.20.3 272 $lang['UAM_DumpTitle'] = 'Sichern Sie Ihre Konfiguration'; 273 $lang['UAM_DumpTitle_d'] = 'Dies ermöglicht Ihnen die gesamte Konfiguration des Plugins in eine Datei zu speichern damit Sie sie wiederherstellen können wenn etwas schief geht (falsche Manipulation oder vor einem Update, zum Beispiel). Standardmäßig wird die Datei in diesem Ordner gespeichert ../plugins/UserAdvManager/include/backup/ und heißt "UAM_dbbackup.sql". 274 <br><br> 275 <b style="color: red;">Achtung: Die Datei wird überschrieben jedem Backup Aktion!</b> 276 <br><br> 277 Es kann manchmal nützlich sein, um die Backup-Datei auf Ihrem Computer abrufen. Zum Beispiel: Um zu einer anderen Datenbank auslagern wiederherzustellen oder zu halten mehrere Dateien speichern. Dazu markieren Sie das Kontrollkästchen, um die Datei herunterzuladen. 278 <br><br> 279 Die Erholung von dieser Schnittstelle wird nicht unterstützt. Verwenden Sie Tools wie phpMyAdmin.'; 280 // --------- End: New or revised $lang ---- from version 2.20.3 269 281 ?> -
extensions/UserAdvManager/trunk/language/de_DE/plugin.lang.php
r9908 r10342 190 190 // --------- Starting below: New or revised $lang ---- from version 2.15.1 191 191 $lang['UAM_Support_txt'] = 'Die offizielle Unterstützung für dieses Plugin ist nur auf diesem Diskussionsforum von Piwigo:<br> 192 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Französisch-Forum - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>193 <br>oder<br>194 192 <a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Englisch-Forum - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br> 195 193 Ebenfalls erhältlich, das Projekt Bugtracker: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; … … 318 316 $lang['UAM_Stuffs'] = 'PWG Stuffs Modul'; 319 317 // --------- End: New or revised $lang ---- from version 2.20.0 318 319 320 // --------- Starting below: New or revised $lang ---- from version 2.20.3 321 $lang['UAM_DumpTxt'] = 'Sichern Sie Ihre Konfiguration'; 322 $lang['UAM_Dump_Download'] = 'Zum Download der Backup-Datei, überprüfen Sie bitte dieses Feld:'; 323 $lang['UAM_Save'] = 'Starten der Backup'; 324 $lang['UAM_Dump_OK'] = 'Backup-Datei erfolgreich erstellt'; 325 $lang['UAM_Dump_NOK'] = 'Fehler: Backup-Datei kann nicht erstellt werden !'; 326 // --------- End: New or revised $lang ---- from version 2.20.3 320 327 ?> -
extensions/UserAdvManager/trunk/language/en_UK/help/plugin.lang.php
r9908 r10342 267 267 Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.'; 268 268 // --------- End: New or revised $lang ---- from version 2.20.0 269 270 271 // --------- Starting below: New or revised $lang ---- from version 2.20.3 272 $lang['UAM_DumpTitle'] = 'Backup your configuration'; 273 $lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called "UAM_dbbackup.sql". 274 <br><br> 275 <b style="color: red;">Warning: The file is overwritten each backup action!</b> 276 <br><br> 277 It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file. 278 <br><br> 279 The recovery from this interface is not supported. Use tools like phpMyAdmin.'; 280 // --------- End: New or revised $lang ---- from version 2.20.3 269 281 ?> -
extensions/UserAdvManager/trunk/language/en_UK/plugin.lang.php
r9908 r10342 188 188 // --------- Starting below: New or revised $lang ---- from version 2.15.1 189 189 $lang['UAM_Support_txt'] = 'The official support on this plugin is only on these Piwigo forum topic:<br> 190 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">French forum - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>191 <br>or<br>192 190 <a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">English forum - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br> 193 191 Also available, the project\'s bugtracker: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; … … 320 318 $lang['UAM_Stuffs'] = 'PWG Stuffs block'; 321 319 // --------- End: New or revised $lang ---- from version 2.20.0 320 321 322 // --------- Starting below: New or revised $lang ---- from version 2.20.3 323 $lang['UAM_DumpTxt'] = 'Backup your configuration'; 324 $lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:'; 325 $lang['UAM_Save'] = 'Run backup'; 326 $lang['UAM_Dump_OK'] = 'Backup file created successfully'; 327 $lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !'; 328 // --------- End: New or revised $lang ---- from version 2.20.3 322 329 ?> -
extensions/UserAdvManager/trunk/language/es_ES/help/plugin.lang.php
r9908 r10342 263 263 Please refer to the <b>Consejos y ejemplos</b> at the bottom of this page for details.'; 264 264 // --------- End: New or revised $lang ---- from version 2.20.0 265 266 267 // --------- Starting below: New or revised $lang ---- from version 2.20.3 268 /*TODO*/$lang['UAM_DumpTitle'] = 'Backup your configuration'; 269 /*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called "UAM_dbbackup.sql". 270 <br><br> 271 <b style="color: red;">Warning: The file is overwritten each backup action!</b> 272 <br><br> 273 It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file. 274 <br><br> 275 The recovery from this interface is not supported. Use tools like phpMyAdmin.'; 276 // --------- End: New or revised $lang ---- from version 2.20.3 265 277 ?> -
extensions/UserAdvManager/trunk/language/es_ES/plugin.lang.php
r9908 r10342 229 229 // --------- Starting below: New or revised $lang ---- from version 2.15.1 230 230 $lang['UAM_Support_txt'] = 'El apoyo oficial sobre este plugin se encuentra solo en el foro de Piwigo:<br> 231 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Foro Francés - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>232 <br>o<br>233 231 <a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Foro Inglés - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br> 234 232 También está disponible, el bugtracker del proyecto: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; … … 358 356 $lang['UAM_Stuffs'] = 'PWG Stuffs módulo'; 359 357 // --------- End: New or revised $lang ---- from version 2.20.0 358 359 360 // --------- Starting below: New or revised $lang ---- from version 2.20.3 361 /*TODO*/$lang['UAM_DumpTxt'] = 'Backup your configuration'; 362 /*TODO*/$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:'; 363 /*TODO*/$lang['UAM_Save'] = 'Run backup'; 364 /*TODO*/$lang['UAM_Dump_OK'] = 'Backup file created successfully'; 365 /*TODO*/$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !'; 366 // --------- End: New or revised $lang ---- from version 2.20.3 360 367 ?> -
extensions/UserAdvManager/trunk/language/fr_FR/help/plugin.lang.php
r9908 r10342 263 263 Veuillez vous reporter à la section <b>Astuces et exemples d\'utilisation</b> en bas de cette page pour les détails.'; 264 264 // --------- End: New or revised $lang ---- from version 2.20.0 265 266 267 // --------- Starting below: New or revised $lang ---- from version 2.20.3 268 $lang['UAM_DumpTitle'] = 'Sauvegarde de votre configuration'; 269 $lang['UAM_DumpTitle_d'] = 'Ceci vous permet de sauvegarder la configuration complète du plugin dans un fichier afin de pouvoir la restaurer en cas de problème (fausse manipulation ou avant une mise à jour, par exemple). Par défaut, le fichier est stocké dans le dossier ../plugins/UserAdvManager/include/backup/ et se nomme "UAM_dbbackup.sql". 270 <br><br> 271 <b style="color: red;">Attention : Le fichier est écrasé à chaque action de sauvegarde !</b> 272 <br><br> 273 Il peut être parfois utile de récupérer le fichier de sauvegarde sur votre ordinateur. Par exemple : Pour une restauration sur une autre base de données, pour externaliser la sauvegarder ou pour conserver plusieurs fichiers. Pour cela, il suffit de cocher la case correspondante au téléchargement du fichier. 274 <br><br> 275 La restauration à partir de cette interface n\'est pas prise en charge. Utilisez des outils comme PhpMyAdmin.'; 276 // --------- End: New or revised $lang ---- from version 2.20.3 265 277 ?> -
extensions/UserAdvManager/trunk/language/fr_FR/plugin.lang.php
r9908 r10342 186 186 187 187 // --------- Starting below: New or revised $lang ---- from version 2.15.1 188 $lang['UAM_Support_txt'] = 'Le support officiel sur ce plugin se fait exclusivement sur ce s fils du forumPiwigo:<br>188 $lang['UAM_Support_txt'] = 'Le support officiel sur ce plugin se fait exclusivement sur ce fil du forum FR de Piwigo:<br> 189 189 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Forum français - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a> 190 <br>ou<br> 191 <a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Forum anglais - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br> 190 <br><br> 192 191 Egalement disponible, le bugtracker du projet: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; 193 192 // --------- End: New or revised $lang ---- from version 2.15.1 … … 318 317 $lang['UAM_Stuffs'] = 'Module PWG Stuffs'; 319 318 // --------- End: New or revised $lang ---- from version 2.20.0 319 320 321 // --------- Starting below: New or revised $lang ---- from version 2.20.3 322 $lang['UAM_DumpTxt'] = 'Sauvegarde de votre configuration'; 323 $lang['UAM_Dump_Download'] = 'Pour télécharger le fichier de sauvegarde, cochez cette case:'; 324 $lang['UAM_Save'] = 'Exécuter la sauvegarde'; 325 $lang['UAM_Dump_OK'] = 'Fichier de sauvegarde créé avec succès'; 326 $lang['UAM_Dump_NOK'] = 'Erreur : Impossible de créer le fichier de sauvegarde !'; 327 // --------- End: New or revised $lang ---- from version 2.20.3 320 328 ?> -
extensions/UserAdvManager/trunk/language/it_IT/help/plugin.lang.php
r9908 r10342 254 254 Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.'; 255 255 // --------- End: New or revised $lang ---- from version 2.20.0 256 257 258 // --------- Starting below: New or revised $lang ---- from version 2.20.3 259 /*TODO*/$lang['UAM_DumpTitle'] = 'Backup your configuration'; 260 /*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called "UAM_dbbackup.sql". 261 <br><br> 262 <b style="color: red;">Warning: The file is overwritten each backup action!</b> 263 <br><br> 264 It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file. 265 <br><br> 266 The recovery from this interface is not supported. Use tools like phpMyAdmin.'; 267 // --------- End: New or revised $lang ---- from version 2.20.3 256 268 ?> -
extensions/UserAdvManager/trunk/language/it_IT/plugin.lang.php
r9908 r10342 188 188 // --------- Starting below: New or revised $lang ---- from version 2.15.1 189 189 $lang['UAM_Support_txt'] = 'Il supporto ufficiale a questo plugin è solo su questi argomento del forum Piwigo:<br> 190 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Forum francese - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>191 <br>o<br>192 190 <a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Forum inglese - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br> 193 191 Disponibile anche, il bugtracker del progetto: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; … … 317 315 $lang['UAM_Stuffs'] = 'modulo PWG Stuffs'; 318 316 // --------- End: New or revised $lang ---- from version 2.20.0 317 318 319 // --------- Starting below: New or revised $lang ---- from version 2.20.3 320 /*TODO*/$lang['UAM_DumpTxt'] = 'Backup your configuration'; 321 /*TODO*/$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:'; 322 /*TODO*/$lang['UAM_Save'] = 'Run backup'; 323 /*TODO*/$lang['UAM_Dump_OK'] = 'Backup file created successfully'; 324 /*TODO*/$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !'; 325 // --------- End: New or revised $lang ---- from version 2.20.3 319 326 ?> -
extensions/UserAdvManager/trunk/language/lv_LV/help/plugin.lang.php
r9908 r10342 289 289 Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.'; 290 290 // --------- End: New or revised $lang ---- from version 2.20.0 291 292 293 // --------- Starting below: New or revised $lang ---- from version 2.20.3 294 /*TODO*/$lang['UAM_DumpTitle'] = 'Backup your configuration'; 295 /*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called "UAM_dbbackup.sql". 296 <br><br> 297 <b style="color: red;">Warning: The file is overwritten each backup action!</b> 298 <br><br> 299 It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file. 300 <br><br> 301 The recovery from this interface is not supported. Use tools like phpMyAdmin.'; 302 // --------- End: New or revised $lang ---- from version 2.20.3 291 303 ?> -
extensions/UserAdvManager/trunk/language/lv_LV/plugin.lang.php
r9908 r10342 226 226 // --------- Starting below: New or revised $lang ---- from version 2.15.1 227 227 $lang['UAM_Support_txt'] = 'Oficiāls šī spraudņa atbalsts ir pieejams tikai Piwigo forumā:<br> 228 <a href="http://fr.piwigo.org/forum/viewtopic.php?id=12775" onclick="window.open(this.href);return false;">Forums fraņču valodā - http://fr.piwigo.org/forum/viewtopic.php?id=12775</a>229 <br>or<br>230 228 <a href="http://piwigo.org/forum/viewtopic.php?id=15015" onclick="window.open(this.href);return false;">Forums angļu valodā - http://piwigo.org/forum/viewtopic.php?id=15015</a><br><br> 231 229 Vēl pieejasms projekta bugtracker: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; … … 355 353 /*TODO*/$lang['UAM_Stuffs'] = 'PWG Stuffs block'; 356 354 // --------- End: New or revised $lang ---- from version 2.20.0 355 356 357 // --------- Starting below: New or revised $lang ---- from version 2.20.3 358 /*TODO*/$lang['UAM_DumpTxt'] = 'Backup your configuration'; 359 /*TODO*/$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:'; 360 /*TODO*/$lang['UAM_Save'] = 'Run backup'; 361 /*TODO*/$lang['UAM_Dump_OK'] = 'Backup file created successfully'; 362 /*TODO*/$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !'; 363 // --------- End: New or revised $lang ---- from version 2.20.3 357 364 ?> -
extensions/UserAdvManager/trunk/main.inc.php
r10168 r10342 2 2 /* 3 3 Plugin Name: UserAdvManager 4 Version: 2.20. 24 Version: 2.20.3 5 5 Description: Renforcer la gestion des utilisateurs - Enforce users management 6 6 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=216
Note: See TracChangeset
for help on using the changeset viewer.