]> git.agnieray.net Git - galette.git/commitdiff
Revert "Don't display installer if not necessary"
authorJohan Cwiklinski <johan@x-tnd.be>
Thu, 25 Nov 2021 14:49:49 +0000 (15:49 +0100)
committerJohan Cwiklinski <johan@x-tnd.be>
Fri, 26 Nov 2021 21:35:12 +0000 (22:35 +0100)
This reverts commit 1e91521d94cb506aac9bad4af1578d0d82a4d57f.

closes #1597

21 files changed:
galette/config/behavior.inc.php.dist
galette/includes/galette.inc.php
galette/install/steps/end.php
galette/install/steps/galette.php
galette/lang/galette.pot
galette/lang/galette_ar.utf8.po
galette/lang/galette_br.utf8.po
galette/lang/galette_ca.utf8.po
galette/lang/galette_de_DE.utf8.po
galette/lang/galette_en_US.po
galette/lang/galette_es.utf8.po
galette/lang/galette_fr_FR.utf8.po
galette/lang/galette_it_IT.utf8.po
galette/lang/galette_merged.pot [new file with mode: 0644]
galette/lang/galette_nb_NO.utf8.po
galette/lang/galette_oc.utf8.po
galette/lang/galette_ota.utf8.po
galette/lang/galette_si.utf8.po
galette/lang/galette_tr.utf8.po
galette/lang/galette_uk.utf8.po
galette/webroot/installer.php

index 2c59ae4791a5db47ff0d412f12299883e1e04ced..f05ea19385094f336c10a276a8e5411c6494ff6b 100644 (file)
@@ -7,9 +7,9 @@
  *
  * PHP version 5
  *
- * Copyright © 2017-2021 The Galette Team
+ * Copyright © 2017 The Galette Team
  *
- * This file is part of Galette (https://galette.eu).
+ * This file is part of Galette (http://galette.eu).
  *
  * Galette is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * @package   Galette
  *
  * @author    Johan Cwiklinski <johan@x-tnd.be>
-
- * @copyright 2017-2021 The Galette Team
+ * @copyright 2017 The Galette Team
  * @license   http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
- * @link      https://galette.eu
+ * @link      http://galette.eu
  */
 
 //change this *ONLY* for debug purposes!
@@ -53,9 +52,3 @@
  *  a single reverse proxy
  */
 //define('GALETTE_X_FORWARDED_FOR_INDEX', 1);
-
-/*
- * Uncomment to enable the installer page even if galette is already installed and up to date
- * @see https://bugs.galette.eu/issues/1574
- */
-//define('FORCE_INSTALLER', true);
index 0d5cce8549af07f660814b03e0ca946bdf2da7df..99ba5f206787d75efa72f504475c5dcc3acacae0 100644 (file)
@@ -68,8 +68,6 @@ $installed = file_exists(GALETTE_CONFIG_PATH . 'config.inc.php');
 if (!$installed && !$installer) {
     header('location: ./installer.php');
     die();
-} else if ($installed) {
-    include_once GALETTE_CONFIG_PATH . 'config.inc.php';
 }
 
 if (
@@ -79,6 +77,11 @@ if (
     include_once GALETTE_CONFIG_PATH . 'behavior.inc.php';
 }
 
+if (isset($installer) && $installer !== true) {
+    //If we're not working from installer
+    include_once GALETTE_CONFIG_PATH . 'config.inc.php';
+}
+
 use Analog\Analog;
 use Analog\Handler;
 use Analog\Handler\LevelName;
@@ -181,8 +184,9 @@ Analog::handler($galette_run_log);
 
 require_once GALETTE_ROOT . 'includes/functions.inc.php';
 
-//If we're not working from tests
-if ($installed && !defined('GALETTE_TESTS')) {
+if (!$installer and !defined('GALETTE_TESTS')) {
+    //If we're not working from installer nor from tests
+    include_once GALETTE_CONFIG_PATH . 'config.inc.php';
 
     /**
      * Database instantiation
index 11515bc1debaa48309683d25e4bf3b521dd11714..125edd688245dbec851d3d6202aa4da07641c301 100644 (file)
@@ -48,6 +48,7 @@ if ($install->isUpgrade()) {
     echo _T("Galette has been successfully updated!");
 }
 ?></p>
+                <div id="errorbox"><?php echo _T("To secure the system, please delete the install directory"); ?></div>
                 <form action="<?php echo GALETTE_BASE_PATH; ?>" method="get">
                     <p id="btn_box">
                         <button type="submit"><?php echo _T("Homepage"); ?> <i class="fas fa-home"></i></button>
index e1060a99f0a61ae41f4ad435b6c458aa1fb190a5..8b5c22d42f48e9760ad774d336447a189f47f5b9 100644 (file)
@@ -44,8 +44,6 @@ $errs = array();
 $install->reinitReport();
 
 $config_file_ok = $install->writeConfFile();
-include_once GALETTE_CONFIG_PATH . 'config.inc.php';
-
 $objects_ok = $install->initObjects($i18n, $zdb, new Login($zdb, $i18n));
 ?>
                 <h2><?php echo $install->getStepTitle(); ?></h2>
index 40cc9f9cdd556f1b2e339bd8934f7aec83f5d34a..4e924947dda2e4c5528dc5627f373b723361584c 100644 (file)
@@ -3471,7 +3471,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
index 28e6e386b22f0de9f606ded806bad24c4ad80a82..d75b9f6c74c1b6b41b8b0dc74742f6f075cdb6b2 100644 (file)
@@ -3493,7 +3493,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr "الصفحة الرئيسية"
 
index 0b466822c8e0e27875940eb08a85442a99dbe144..e82c3208ce6b3ffaaae6eb3606155b008aaebf6f 100644 (file)
@@ -3480,7 +3480,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
index 83ba5e32dc41498069ecf59660befb7132c24e01..8543ec6c89c0aa57e2cb612b1ad1543f313308a4 100644 (file)
@@ -4200,7 +4200,13 @@ msgstr "La Galette s'ha instal·lat correctament!"
 msgid "Galette has been successfully updated!"
 msgstr "La Galette s'ha actualitzat correctament!"
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+#, fuzzy
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+"Per assegurar el sistema si us plau esborra el directori d'instal·lació"
+
+#: ../install/steps/end.php:54
 #, fuzzy
 msgid "Homepage"
 msgstr "Pàgina d'inici"
index 9acd239c96f8e4c8a89299267abec0fc56907acd..cd32598233ed5ff1446609e3000b46ac29902543 100644 (file)
@@ -3637,7 +3637,11 @@ msgstr "Galette wurde erfolgreich installiert!"
 msgid "Galette has been successfully updated!"
 msgstr "Galette wurde erfolgreich aktualisiert!"
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr "Um das System zu schützen, löschen Sie bitte das install Verzeichnis"
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr "Homepage"
 
index 48cff6712a75db64bc7f1e28626afaf2dd8d98fd..d54f21b753bb1d72d1d1ea16838d4ce0aec9e3f9 100644 (file)
@@ -3556,7 +3556,11 @@ msgstr "Galette has been successfully installed!"
 msgid "Galette has been successfully updated!"
 msgstr "Galette has been successfully updated!"
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr "To secure the system, please delete the install directory"
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr "Homepage"
 
index 456ef6f44bba32c7d7d2cf0e7dbaf153d5a66651..936961b1a4f25acd0ba468a82aee66b7010b2868 100644 (file)
@@ -3590,7 +3590,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
index 559b66bd3c152d295b9fa378a255d94ee4e1f46a..5358a209641e86f9697e6b6e55bb8fc78ec97eba 100644 (file)
@@ -3638,7 +3638,11 @@ msgstr "Galette a été installé avec succès !"
 msgid "Galette has been successfully updated!"
 msgstr "Galette a été mis à jour avec succès !"
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr "Pour sécuriser le système, veuillez supprimer le dossier « install »"
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr "Page d’accueil"
 
index 0bfa79c5fe3c876894c6ec625b54e6c163a4d3ab..65e1d22d6052f889e43a93e4f54fe561e0550ea0 100644 (file)
@@ -3547,7 +3547,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
diff --git a/galette/lang/galette_merged.pot b/galette/lang/galette_merged.pot
new file mode 100644 (file)
index 0000000..e74c548
--- /dev/null
@@ -0,0 +1,7329 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-07-07 22:49+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../lib/Galette/Handlers/PhpError.php:83 ../lib/Galette/Handlers/Error.php:83
+msgid "Galette error"
+msgstr ""
+
+#: ../lib/Galette/Handlers/NotFound.php:80
+msgid "Page not found"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:131
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:231
+msgid "Transaction ID cannot ben null calling edit route!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:164
+msgid "Transaction"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:166
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1144
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:112
+msgid "modification"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:168
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1146
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:114
+msgid "creation"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:235
+msgid "Transaction ID cannot ben set while adding!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:285
+msgid "An error occurred while storing the transaction."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:313
+msgid "Transaction has been successfully stored"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:362
+msgid "Unable to attach contribution to transaction"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:367
+msgid "Contribution has been successfully attached to current transaction"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:393
+msgid "Unable to detach contribution from transaction"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TransactionsController.php:398
+msgid "Contribution has been successfully detached from current transaction"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/PaymentTypeController.php:118
+msgid "Payment types management"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/PaymentTypeController.php:160
+msgid "Edit payment type"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/PaymentTypeController.php:213
+#, php-format
+msgid "Payment type '%s' has not been added!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/PaymentTypeController.php:222
+#, php-format
+msgid "Payment type '%s' has not been modified!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/PaymentTypeController.php:235
+#, php-format
+msgid "Payment type '%s' has been successfully added."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/PaymentTypeController.php:244
+#, php-format
+msgid "Payment type '%s' has been successfully modified."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/PaymentTypeController.php:307
+#, php-format
+msgid "Remove payment type %1$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/GroupsController.php:123
+msgid "Group name is missing!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/GroupsController.php:186
+msgid "Groups"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/GroupsController.php:370
+msgid "Group `%groupname` has been successfully saved."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/GroupsController.php:377
+msgid "An error occurred while storing the group."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/GroupsController.php:469
+#, php-format
+msgid "Remove group %1$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/GroupsController.php:492
+msgid "Group is not empty, it cannot be deleted. Use cascade delete instead."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:101
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:105
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:260
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:262
+msgid "Trying to load mailing while email is disabled in preferences."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:149
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:285
+msgid "No member selected for mailing!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:204
+msgid "Mailing"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:304
+msgid "Please type an object for the message."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:310
+msgid "Please enter a message."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:404
+msgid "Mailing has been successfully sent!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:427
+msgid "Mailing has been successfully saved."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:516
+msgid "Mailings"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:664
+#, php-format
+msgid "Remove mailing #%1$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MailingsController.php:746
+msgid "Mailing preview"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:82
+msgid "Add field"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:131
+msgid "An error occurred adding dynamic field :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:145
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:364
+msgid "Dynamic field has been successfully stored!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:226
+msgid "Dynamic fields configuration"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:291
+msgid "Unable to retrieve field information."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:300
+msgid "Edit field"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:350
+msgid "An error occurred editing dynamic field :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:446
+msgid "Requested field does not exists!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:454
+#, php-format
+msgid "Remove dynamic field %1$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:495
+msgid "Field has been successfully moved"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/DynamicFieldsController.php:500
+msgid "An error occurred moving field :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:158
+msgid "Subscription"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:242
+#: ../lib/Galette/Controllers/Crud/MembersController.php:447
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1099
+#: ../lib/Galette/Controllers/PdfController.php:123
+#: ../lib/Galette/Controllers/PdfController.php:292
+#: ../lib/Galette/Middleware/Authenticate.php:165
+msgid "You do not have permission for requested URL."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:257
+msgid "No member #%id."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:277
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1142
+msgid "Member Profile"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:362
+msgid "Members list"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:362
+msgid "Trombinoscope"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:492
+msgid "The file does not exists or cannot be read :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:558
+msgid "Members management"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:779
+msgid "Status label"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:819
+msgid "Advanced search"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1040
+#: ../lib/Galette/Controllers/PdfController.php:157
+#: ../lib/Galette/Controllers/PdfController.php:238
+msgid "No member was selected, please check at least one name."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1071
+msgid "Member ID cannot ben null calling edit route!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1262
+#, php-format
+msgid "Mass change %count members"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1293
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1362
+msgid "Mass changes has not been confirmed!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1331
+#, php-format
+msgid "Review mass change %count members"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1391
+msgid "Nothing to do!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1419
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1887
+msgid "An error occurred while storing the member."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1431
+msgid "Something went wront during mass edition!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1438
+#, php-format
+msgid "%count members has been changed successfully!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1513
+msgid "Please repeat in the field the password shown in the image."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1616
+msgid "Your account has been created!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1621
+msgid "An email has been sent to you, check your inbox."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1624
+msgid "New member has been successfully added."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1672
+#, php-format
+msgid "New account email sent to admin for '%s'."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1679
+#, php-format
+msgid "A problem happened while sending email to admin for account '%s'."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1687
+msgid "Member account has been modified."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1694
+msgid ""
+"- You can't send a confirmation by email if the member hasn't got an address!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1724
+#: ../lib/Galette/Controllers/AuthController.php:332
+#: ../lib/Galette/Core/History.php:414 ../lib/Galette/IO/Csv.php:115
+msgid "Y-m-d H:i:s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1729
+#: ../lib/Galette/Controllers/AuthController.php:385
+#, php-format
+msgid ""
+"An error occurred storing temporary password for %s. Please inform an admin."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1770
+#, php-format
+msgid "New account email sent to '%s'."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1770
+#, php-format
+msgid "Account modification email sent to '%s'."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1778
+#, php-format
+msgid "A problem happened while sending account email to '%s'"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1787
+msgid ""
+"You asked Galette to send a confirmation email to the member, but email has "
+"been disabled in the preferences."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1843
+msgid "Account modification email sent to admin."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1847
+msgid "A problem happened while sending account email to admin"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1868
+msgid "An error occurred adding member to its groups."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1883
+msgid "An error occurred adding member to its groups as manager."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:1899
+#: ../lib/Galette/Controllers/GaletteController.php:311
+#: ../lib/Galette/Controllers/GaletteController.php:343
+msgid "Delete failed"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:2071
+#, php-format
+msgid "Remove member %1$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/MembersController.php:2080
+#, php-format
+msgid "You are about to remove %count members."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TitlesController.php:113
+msgid "Titles management"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TitlesController.php:155
+msgid "Edit title"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TitlesController.php:209
+#, php-format
+msgid "Title '%s' has not been added!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TitlesController.php:218
+#, php-format
+msgid "Title '%s' has not been modified!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TitlesController.php:231
+#, php-format
+msgid "Title '%s' has been successfully added."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TitlesController.php:240
+#, php-format
+msgid "Title '%s' has been successfully modified."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/TitlesController.php:291
+#, php-format
+msgid "Remove title %1$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:115
+msgid "User statuses"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:121
+msgid "Contribution types"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:180
+msgid "Edit status"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:186
+msgid "Edit contribution type"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:259
+msgid "%type has not been added :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:259
+msgid "%type #%id has not been updated"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:263
+msgid "%type has been successfully added!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:263
+msgid "%type #%id has been successfully updated!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/EntitledsController.php:343
+msgid "Remove %type '%label'"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:106
+msgid "Membership fee"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:108
+#: ../lib/Galette/Entity/Contribution.php:1077
+msgid "Donation"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:334
+msgid "Contributions management"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:334
+msgid "Transactions management"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:428
+msgid "- Unknown payment type!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:476
+#: ../lib/Galette/Controllers/PdfController.php:454
+#: ../lib/Galette/Controllers/PdfController.php:710
+msgid "Unable to load contribution #%id!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:578
+msgid "Contribution has been successfully stored"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:591
+msgid "Post contribution script failed"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:600
+msgid "The configured post contribution script has failed."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:601
+msgid "You can find contribution information and script output below."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:609
+msgid "Post contribution script has failed."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:632
+msgid "An error occurred while storing the contribution."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:712
+msgid "Email sent to user %name (%email)"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:719
+msgid ""
+"A problem happened while sending contribution receipt to user %name (%email)"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:728
+msgid ""
+"Trying to send an email to a member (%name) with an invalid address: %email"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:761
+msgid "Email sent to admin for user %name (%email)"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:768
+msgid ""
+"A problem happened while sending to admin notification for user %name "
+"(%email) contribution"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:895
+#, php-format
+msgid "Remove %1$s %2$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:897
+msgid "contributions"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:897
+msgid "transactions"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:901
+#, php-format
+msgid "Remove %1$s #%2$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:902
+#: ../lib/Galette/IO/PdfContribution.php:142
+msgid "contribution"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/ContributionsController.php:902
+msgid "transaction"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:125
+msgid "An SQL error has occurred while storing search."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:130
+msgid "This search is already saved."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:136
+msgid "Search has been saved."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:212
+msgid "Saved searches"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:305
+msgid "Remove saved search"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:312
+#, php-format
+msgid "You are about to remove %count searches."
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:361
+msgid "Saved search loaded"
+msgstr ""
+
+#: ../lib/Galette/Controllers/Crud/SavedSearchesController.php:366
+msgid "An SQL error has occurred while loading search."
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:109
+msgid "System information"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:129
+msgid "Dashboard"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:234
+msgid "Settings"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:249
+#: ../lib/Galette/Filters/MembersList.php:306
+msgid "All accounts"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:250
+#: ../lib/Galette/Filters/MembersList.php:307
+msgid "Active accounts"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:251
+#: ../lib/Galette/Filters/MembersList.php:308
+msgid "Inactive accounts"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:276
+msgid ""
+"An SQL error has occurred while storing preferences. Please try again, and "
+"contact the administrator if the problem persists."
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:280
+msgid "Preferences has been saved."
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:393
+msgid ""
+"You asked Galette to send a test email, but email has been disabled in the "
+"preferences."
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:400
+msgid "Test message"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:403
+msgid "Galette admin"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:406
+msgid "Test message."
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:415
+#, php-format
+msgid "An email has been sent to %email"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:424
+#, php-format
+msgid "No email sent to %email"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:431
+msgid "Invalid email adress!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:474
+msgid "Charts"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:495
+msgid "Fields configuration"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:558
+msgid "Fields configuration has been successfully stored"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:563
+msgid "An error occurred while storing fields configuration :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:589
+msgid "Lists configuration"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:628
+msgid "List configuration has been successfully stored"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:633
+msgid "An error occurred while storing list configuration :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:653
+msgid "Generate fake data"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:753
+msgid "Reminders"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:794
+msgid "No reminder to send for now."
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:825
+msgid "There are no member to proceed."
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:832
+msgid "Reminder has not been sent:"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:839
+msgid "Sent reminders:"
+msgstr ""
+
+#: ../lib/Galette/Controllers/GaletteController.php:914
+msgid "Download document"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CrudController.php:277
+#: ../lib/Galette/Controllers/HistoryController.php:211
+#: ../lib/Galette/Controllers/CsvController.php:490
+msgid "Removal has not been confirmed!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CrudController.php:289
+msgid "Successfully deleted!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CrudController.php:303
+msgid "An error occurred trying to delete :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:189
+#: ../lib/Galette/Controllers/PdfController.php:261
+#: ../lib/Galette/Controllers/PdfController.php:691
+msgid "Unable to get members list."
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:351
+msgid "Attendance sheet configuration"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:387
+#: ../lib/Galette/Controllers/PdfController.php:406
+msgid "No member selected to generate attendance sheet"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:414
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:141
+msgid "Attendance sheet"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:497
+msgid "Unable to get groups list."
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:556
+msgid "PDF models"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:590
+msgid "Missing PDF model type!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:619
+msgid "Model has been successfully stored!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:622
+msgid "Model has not been stored :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/PdfController.php:665
+msgid "Invalid link!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:90
+#: ../lib/Galette/Controllers/AuthController.php:150
+msgid "Login"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:116
+msgid "You must provide both login and password."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:145
+msgid "Your password is too weak! Please consider updating it."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:153
+msgid "Login failed."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:154
+msgid "Authentication failed"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:170
+msgid "Log off"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:195
+#, php-format
+msgid "Impersonating as %login"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:207
+msgid "Unable to impersonate as %id"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:233
+#: ../lib/Galette/Controllers/AuthController.php:238
+msgid "Impersonating ended"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:263
+#: ../lib/Galette/Controllers/AuthController.php:464
+msgid "Password recovery"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:295
+msgid "Email sent is disabled in the preferences. Ask galette admin"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:354
+#, php-format
+msgid "Email sent to '%s' for password recovery."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:358
+msgid ""
+"An email has been sent to your address.<br/>Please check your inbox and "
+"follow the instructions."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:360
+msgid "An email has been sent to the member."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:371
+#, php-format
+msgid "A problem happened while sending password for account '%s'"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:397
+#, php-format
+msgid "Your account (%s) do not contain any valid email address"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:411
+#, php-format
+msgid "Mails address %s does not exist"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:417
+#, php-format
+msgid "Login %s does not exist"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:448
+msgid ""
+"This link is no longer valid. You should ask to retrieve your password again."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:494
+#: ../webroot/installer.php:160 ../webroot/installer.php:203
+msgid "No password"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:497
+#: ../lib/Galette/Entity/Adherent.php:1280
+msgid "- The passwords don't match!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:503
+msgid "Your password is too weak!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:512
+msgid "An error occurred while updating your password."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:518
+#, php-format
+msgid "Password changed for member '%s'."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AuthController.php:526
+msgid "Your password has been changed!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:73
+msgid "Administration tools"
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:81
+#: ../install/steps/check.php:110
+msgid ""
+"Some PHP modules are missing. Please install them or contact your support."
+"<br/>More information on required modules may be found in the documentation."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:114
+msgid "Texts has been successfully reinitialized."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:116
+msgid "An error occurred reinitializing texts :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:125
+msgid "Fields configuration has been successfully reinitialized."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:127
+msgid "An error occurred reinitializing fields configuration :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:136
+msgid "PDF models has been successfully reinitialized."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:138
+msgid "An error occurred reinitializing PDF models :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:151
+msgid "Logins and passwords has been successfully filled (%i processed)."
+msgstr ""
+
+#: ../lib/Galette/Controllers/AdminToolsController.php:154
+msgid "An error occurred filling empty logins and passwords :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/HistoryController.php:114
+#: ../install/steps/check.php:74
+msgid "Logs"
+msgstr ""
+
+#: ../lib/Galette/Controllers/HistoryController.php:153
+#: ../lib/Galette/Filters/TransactionsList.php:229
+#: ../lib/Galette/Filters/HistoryList.php:240
+#: ../lib/Galette/Filters/MailingsList.php:234
+#: ../lib/Galette/Filters/ContributionsList.php:254
+msgid "start date filter"
+msgstr ""
+
+#: ../lib/Galette/Controllers/HistoryController.php:157
+#: ../lib/Galette/Filters/TransactionsList.php:232
+#: ../lib/Galette/Filters/HistoryList.php:243
+#: ../lib/Galette/Filters/MailingsList.php:237
+#: ../lib/Galette/Filters/ContributionsList.php:257
+msgid "end date filter"
+msgstr ""
+
+#: ../lib/Galette/Controllers/HistoryController.php:223
+msgid "Logs have been flushed!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/HistoryController.php:235
+msgid "An error occurred trying to flush logs :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/HistoryController.php:273
+msgid "Flush the logs"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PluginsController.php:81
+msgid "Plugins"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PluginsController.php:112
+msgid "Plugin %name has been enabled"
+msgstr ""
+
+#: ../lib/Galette/Controllers/PluginsController.php:130
+msgid "Plugin %name has been disabled"
+msgstr ""
+
+#: ../lib/Galette/Controllers/DynamicTranslationsController.php:78
+msgid "Translate labels"
+msgstr ""
+
+#: ../lib/Galette/Controllers/DynamicTranslationsController.php:121
+#, php-format
+msgid ""
+"No translation for '%s'!<br/>Please fill and submit above form to create it."
+msgstr ""
+
+#: ../lib/Galette/Controllers/DynamicTranslationsController.php:193
+#: ../lib/Galette/Controllers/DynamicTranslationsController.php:218
+msgid "An error occurred saving label `%label` for language `%lang`"
+msgstr ""
+
+#: ../lib/Galette/Controllers/DynamicTranslationsController.php:234
+msgid "Labels has been sucessfully translated!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:123
+msgid "CVS database Export"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:176
+msgid "Table %table is empty, and has not been exported."
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:194
+#, php-format
+msgid ""
+"Export file could not be write on disk for '%export'. Make sure web server "
+"can write in the exports directory."
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:204
+#, php-format
+msgid "An error occurred running parameted export '%export'."
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:214
+#, php-format
+msgid ""
+"An error occurred running parameted export '%export'. Please check the logs."
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:263
+msgid "CSV members import"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:315
+msgid "An error occurred importing the file :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:327
+msgid "File '%filename%' has been successfully imported :)"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:360
+msgid "Your file has been successfully uploaded!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:379
+msgid "No files has been seleted for upload!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:385
+msgid "No files has been uploaded!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:451
+#, php-format
+msgid "Remove %1$s file %2$s"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:503
+#, php-format
+msgid "'%export' file has been removed from disk."
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:513
+#, php-format
+msgid "Cannot remove '%export' from disk :/"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:586
+msgid "CSV import model"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:629
+msgid "galette_import_model.csv"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:666
+msgid "Import model has been successfully stored :)"
+msgstr ""
+
+#: ../lib/Galette/Controllers/CsvController.php:671
+msgid "Import model has not been stored :("
+msgstr ""
+
+#: ../lib/Galette/Controllers/TextController.php:90
+msgid "Automatic emails texts edition"
+msgstr ""
+
+#: ../lib/Galette/Controllers/TextController.php:160
+#, php-format
+msgid "Email: '%s' has not been modified!"
+msgstr ""
+
+#: ../lib/Galette/Controllers/TextController.php:169
+#, php-format
+msgid "Email: '%s' has been successfully modified."
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:121 ../webroot/installer.php:316
+msgid "Checks"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:124 ../webroot/installer.php:317
+#: ../install/steps/type.php:39
+msgid "Installation mode"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:127 ../webroot/installer.php:318
+#: ../install/steps/db.php:40 ../install/steps/db.php:66
+msgid "Database"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:130
+msgid "Database access and permissions"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:133
+#: ../install/steps/db_select_version.php:45
+msgid "Previous version selection"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:136
+msgid "Datapase upgrade"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:139
+msgid "Tables Creation"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:142 ../webroot/installer.php:334
+msgid "Admin parameters"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:145
+msgid "Galette initialization"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:148 ../webroot/installer.php:339
+msgid "End!"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:165 ../lib/Galette/Core/CheckModules.php:155
+msgid "Ok"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:165 ../lib/Galette/Core/CheckModules.php:146
+msgid "Ko"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:324
+msgid "Database type unknown"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:677
+msgid "%version script has been successfully executed :)"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:689
+msgid "Unable to run %version update script :("
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1022
+msgid "Write configuration file"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1051
+msgid "Config file already exists and is up to date"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1080
+msgid "Unable to create configuration file (%path)"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1128
+msgid "Preferences"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1132
+msgid "Contributions types"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1136
+msgid "Status"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1140
+msgid "Fields config and categories"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1144 ../lib/Galette/Core/Install.php:1166
+msgid "Mails texts"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1148
+msgid "Titles"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1152
+msgid "PDF Models"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1158
+msgid "Update preferences"
+msgstr ""
+
+#: ../lib/Galette/Core/Install.php:1162
+msgid "Update models"
+msgstr ""
+
+#: ../lib/Galette/Core/Pagination.php:254
+msgid "First page"
+msgstr ""
+
+#: ../lib/Galette/Core/Pagination.php:260
+msgid "Previous page (%i)"
+msgstr ""
+
+#: ../lib/Galette/Core/Pagination.php:272
+msgid "Current page (%i)"
+msgstr ""
+
+#: ../lib/Galette/Core/Pagination.php:280
+msgid "Page %i"
+msgstr ""
+
+#: ../lib/Galette/Core/Pagination.php:288
+msgid "Next page (%i)"
+msgstr ""
+
+#: ../lib/Galette/Core/Pagination.php:294
+msgid "Last page (%i)"
+msgstr ""
+
+#: ../lib/Galette/Core/Pagination.php:306
+msgid "All"
+msgstr ""
+
+#: ../lib/Galette/Core/Authentication.php:273
+#, php-format
+msgid "Logged in as:<br/>%login"
+msgstr ""
+
+#: ../lib/Galette/Core/MailingHistory.php:205
+msgid "Superadmin"
+msgstr ""
+
+#: ../lib/Galette/Core/MailingHistory.php:569
+msgid "Delete mailing entries"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:496
+msgid "- The username must be composed of at least 4 characters!"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:500
+msgid "- This username is already used by another member !"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:507
+#: ../lib/Galette/Core/Preferences.php:528
+msgid "- The numbers and measures have to be integers!"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:564
+msgid "- Invalid number of months of membership extension."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:570
+msgid "- Invalid format of beginning of membership."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:574
+msgid "- Invalid date for beginning of membership."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:580
+msgid "- Invalid number of offered months."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:585
+msgid "- Invalid year for cards."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:604
+msgid "- You must indicate a sender name for emails!"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:610
+msgid "- You must indicate an email address Galette should use to send emails!"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:617
+msgid "- You must indicate the SMTP server you want to use!"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:629
+msgid "- You must provide a login for SMTP authentication."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:635
+msgid "- You must provide a password for SMTP authentication."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:647
+msgid ""
+"- Default membership extention and beginning of membership are mutually "
+"exclusive."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:656
+msgid "- Offering months is only compatible with beginning of membership."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:665
+#: ../lib/Galette/Entity/Adherent.php:1073
+#: ../lib/Galette/Entity/Transaction.php:335
+#: ../lib/Galette/Entity/Contribution.php:460
+#, php-format
+msgid "- Mandatory field %field empty."
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:673 ../webroot/installer.php:211
+msgid "Passwords mismatch"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:686
+msgid "You have to select a staff member"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:813
+msgid "%name association's %status"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:994
+#, php-format
+msgid "Invalid E-Mail address: %s"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:1056
+msgid "Current cards configuration may exceed page width!"
+msgstr ""
+
+#: ../lib/Galette/Core/Preferences.php:1067
+msgid "Current cards configuration may exceed page height!"
+msgstr ""
+
+#: ../lib/Galette/Core/I18n.php:221
+msgid "Unknown lang (%lang)"
+msgstr ""
+
+#: ../lib/Galette/Core/CheckModules.php:97
+#, php-format
+msgid "'%s' module"
+msgstr ""
+
+#: ../lib/Galette/Core/CheckModules.php:103
+msgid "either 'mysql' or 'pgsql' PDO driver"
+msgstr ""
+
+#: ../lib/Galette/Core/Plugins.php:240
+#: ../lib/Galette/Repository/Members.php:1462
+#: ../lib/Galette/Repository/Members.php:1466
+#: ../lib/Galette/Util/Password.php:267 ../lib/Galette/Util/FakeData.php:434
+#: ../lib/Galette/Util/FakeData.php:446 ../lib/Galette/Util/FakeData.php:525
+#: ../lib/Galette/Util/FakeData.php:658 ../lib/Galette/Util/FakeData.php:659
+#: ../lib/Galette/Util/FakeData.php:660 ../lib/Galette/IO/MembersCsv.php:182
+#: ../lib/Galette/IO/MembersCsv.php:194 ../lib/Galette/IO/MembersCsv.php:206
+#: ../lib/Galette/IO/MembersCsv.php:218
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:89
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:121
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:176
+#: ../lib/Galette/Entity/Adherent.php:713
+#: ../lib/Galette/Entity/Adherent.php:731
+#: ../lib/Galette/Entity/Adherent.php:747
+#: ../lib/Galette/Entity/Adherent.php:1133
+#: ../lib/Galette/Entity/Adherent.php:1167
+#: ../lib/Galette/Entity/Adherent.php:1176
+#: ../lib/Galette/Entity/Adherent.php:1666
+#: ../lib/Galette/Entity/Transaction.php:278
+#: ../lib/Galette/Entity/Transaction.php:287
+#: ../lib/Galette/Entity/Transaction.php:296
+#: ../lib/Galette/Entity/Transaction.php:557
+#: ../lib/Galette/Entity/DynamicsTrait.php:136
+#: ../lib/Galette/Entity/DynamicsTrait.php:149
+#: ../lib/Galette/Entity/DynamicsTrait.php:158
+#: ../lib/Galette/Entity/Contribution.php:370
+#: ../lib/Galette/Entity/Contribution.php:379
+#: ../lib/Galette/Entity/Contribution.php:388
+#: ../lib/Galette/Entity/Contribution.php:541
+#: ../lib/Galette/Entity/Contribution.php:1156
+#: ../lib/Galette/Entity/Contribution.php:1253
+#: ../lib/Galette/Entity/Contribution.php:1262
+#: ../lib/Galette/Entity/Contribution.php:1271
+#: ../lib/Galette/Entity/ImportModel.php:212
+#: ../lib/Galette/Entity/PdfModel.php:145
+#: ../lib/Galette/Entity/SavedSearch.php:292
+#: ../lib/Galette/Entity/Group.php:621
+#: ../lib/Galette/Filters/TransactionsList.php:133
+#: ../lib/Galette/Filters/TransactionsList.php:215
+#: ../lib/Galette/Filters/TransactionsList.php:224
+#: ../lib/Galette/Filters/TransactionsList.php:253
+#: ../lib/Galette/Filters/HistoryList.php:149
+#: ../lib/Galette/Filters/HistoryList.php:226
+#: ../lib/Galette/Filters/HistoryList.php:235
+#: ../lib/Galette/Filters/HistoryList.php:264
+#: ../lib/Galette/Filters/MailingsList.php:143
+#: ../lib/Galette/Filters/MailingsList.php:220
+#: ../lib/Galette/Filters/MailingsList.php:229
+#: ../lib/Galette/Filters/MailingsList.php:258
+#: ../lib/Galette/Filters/ContributionsList.php:158
+#: ../lib/Galette/Filters/ContributionsList.php:240
+#: ../lib/Galette/Filters/ContributionsList.php:249
+#: ../lib/Galette/Filters/ContributionsList.php:278
+#: ../lib/Galette/Filters/AdvancedMembersList.php:343
+#: ../lib/Galette/Filters/AdvancedMembersList.php:434
+#: ../lib/Galette/Filters/AdvancedMembersList.php:580
+msgid "Y-m-d"
+msgstr ""
+
+#: ../lib/Galette/Core/Plugins.php:286 ../lib/Galette/Core/Plugins.php:308
+msgid "No such module."
+msgstr ""
+
+#: ../lib/Galette/Core/Plugins.php:290 ../lib/Galette/Core/Plugins.php:294
+msgid "Cannot deactivate plugin."
+msgstr ""
+
+#: ../lib/Galette/Core/Plugins.php:312 ../lib/Galette/Core/Plugins.php:316
+msgid "Cannot activate plugin."
+msgstr ""
+
+#: ../lib/Galette/Core/Plugins.php:736 ../lib/Galette/Core/Plugins.php:796
+msgid "Module does not exists!"
+msgstr ""
+
+#: ../lib/Galette/Core/Plugins.php:793
+msgid "File not found!"
+msgstr ""
+
+#: ../lib/Galette/Core/Picture.php:857
+msgid "An SQL error has occurred."
+msgstr ""
+
+#: ../lib/Galette/Repository/Members.php:326
+msgid "Member Picture deleted"
+msgstr ""
+
+#: ../lib/Galette/Repository/Members.php:407
+msgid "Delete members cards, transactions and dues"
+msgstr ""
+
+#: ../lib/Galette/Repository/Members.php:422
+msgid "Cannot remove a member who still have dependencies (mailings, ...)"
+msgstr ""
+
+#: ../lib/Galette/Repository/SavedSearches.php:266
+msgid "Searches deleted (%list)"
+msgstr ""
+
+#: ../lib/Galette/Repository/Contributions.php:447
+msgid "Contributions deleted (%list)"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:87
+msgid "Password is blacklisted!"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:97
+#, php-format
+msgid "Too short (%lenght characters minimum, %count found)"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:109
+msgid "Do not use any of your personal information as password!"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:150
+msgid "Does not contains lowercase letters"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:154
+msgid "Does not contains uppercase letters"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:157
+msgid "Does not contains letters"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:163
+msgid "Does not contains numbers"
+msgstr ""
+
+#: ../lib/Galette/Util/Password.php:169
+msgid "Does not contains special characters"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:297
+#, php-format
+msgid "%count groups created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:304
+#, php-format
+msgid "%count groups requested, and %done created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:370
+#, php-format
+msgid "%count members created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:377
+#, php-format
+msgid "%count members requested, and %done created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:385
+#, php-format
+msgid "%count photos created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:389
+msgid "No photo has been created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:488
+msgid "Photo has not been stored!"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:495
+msgid "Photo has not been copied!"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:543
+#, php-format
+msgid "%count transactions created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:550
+#, php-format
+msgid "%count transactions requested, and %done created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:606
+#, php-format
+msgid "%count contributions created"
+msgstr ""
+
+#: ../lib/Galette/Util/FakeData.php:610
+msgid "No contribution created!"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:504
+msgid "User, read/write"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:505
+msgid "Staff member"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:506
+msgid "Administrator"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:507
+msgid "Group manager"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:508
+msgid "User, read only"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:520
+msgid "Members"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:521
+msgid "Contributions"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:522
+msgid "Transactions"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:596
+msgid "Missing required field name!"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:605
+msgid "Missing required field permissions!"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:610
+msgid "Unknown permission!"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:616
+msgid "Missing required form!"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:621
+msgid "Unknown form!"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:629
+msgid "- Field name already used."
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:745
+msgid "An error occurred storing the field."
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:772
+msgid "An error occurred creating field values table"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:806
+msgid "An error occurred storing dynamic field values :("
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:1009
+msgid "separator"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:1010
+msgid "free text"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:1011
+msgid "single line"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:1012
+msgid "choice"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:1013
+msgid "date"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:1014
+msgid "boolean"
+msgstr ""
+
+#: ../lib/Galette/DynamicFields/DynamicField.php:1015
+msgid "file"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:72
+msgid "groups_list"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:86 ../lib/Galette/IO/PdfGroups.php:107
+msgid "Members by groups"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:109
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:140
+#: ../lib/Galette/IO/PdfMembersLabels.php:86
+#: ../lib/Galette/IO/PdfMembersCards.php:105
+msgid "Generated by Galette"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:169
+msgid "Managers:"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:179
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:185
+#: ../lib/Galette/Entity/PdfModel.php:546
+#: ../lib/Galette/Filters/MembersList.php:272
+#: ../includes/fields_defs/members_fields.php:355
+msgid "Name"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:180
+msgid "Email"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:181
+#: ../lib/Galette/Entity/ListsConfig.php:224
+msgid "Phone"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfGroups.php:182
+msgid "GSM"
+msgstr ""
+
+#: ../lib/Galette/IO/MembersCsv.php:84
+msgid "filtered_memberslist"
+msgstr ""
+
+#: ../lib/Galette/IO/MembersCsv.php:228
+#: ../lib/Galette/IO/PdfAdhesionForm.php:150
+#: ../lib/Galette/Entity/Adherent.php:1632
+msgid "Man"
+msgstr ""
+
+#: ../lib/Galette/IO/MembersCsv.php:231
+#: ../lib/Galette/IO/PdfAdhesionForm.php:152
+#: ../lib/Galette/Entity/Adherent.php:1634
+msgid "Woman"
+msgstr ""
+
+#: ../lib/Galette/IO/MembersCsv.php:234
+#: ../lib/Galette/IO/PdfAdhesionForm.php:154
+#: ../lib/Galette/Entity/Adherent.php:1636
+msgid "Unspecified"
+msgstr ""
+
+#: ../lib/Galette/IO/MembersCsv.php:242 ../lib/Galette/IO/MembersCsv.php:246
+#: ../lib/Galette/IO/MembersCsv.php:250 ../lib/Galette/IO/MembersCsv.php:254
+#: ../lib/Galette/Entity/Adherent.php:1593
+msgid "Yes"
+msgstr ""
+
+#: ../lib/Galette/IO/MembersCsv.php:242 ../lib/Galette/IO/MembersCsv.php:246
+#: ../lib/Galette/IO/MembersCsv.php:250 ../lib/Galette/IO/MembersCsv.php:254
+#: ../lib/Galette/Entity/Adherent.php:1593
+msgid "No"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:104
+msgid "attendance_sheet"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:168
+msgid "%A, %B %#d%O %Y"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfAttendanceSheet.php:186
+msgid "Signature"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:141 ../lib/Galette/Filters/MembersList.php:297
+msgid "Staff members"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:177
+msgid "Due free"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:192
+msgid "Never contribute"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:214
+msgid "Impending due dates"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:229
+msgid "Up to date"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:244 ../lib/Galette/Entity/Adherent.php:740
+msgid "Late"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:299
+msgid "Individuals"
+msgstr ""
+
+#: ../lib/Galette/IO/Charts.php:303
+msgid "Companies"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfMembersLabels.php:73
+msgid "labels_print_filename"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfMembersLabels.php:85
+msgid "Member's Labels"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfMembersLabels.php:87
+msgid "Labels"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:232
+#, php-format
+msgid "File %filename cannot be open!"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:280
+msgid ""
+"Fields count mismatch... There should be %should_count fields and there are "
+"%count (row %row)"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:302
+msgid "Field %field is required, but missing in row %row"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:324
+#, php-format
+msgid "Status %status does not exists!"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:343
+msgid "Title %title does not exists!"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:359
+msgid "from another member in import"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:359
+msgid "from member %id_adh"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:365
+msgid "Email address %address is already used! (%extra)"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:390
+msgid "Lang %lang does not exists!"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:442
+msgid "File is empty!"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:529 ../lib/Galette/IO/CsvIn.php:540
+msgid "An error occurred storing member at row %row (%name):"
+msgstr ""
+
+#: ../lib/Galette/IO/CsvIn.php:575
+msgid "An error occurred while importing members"
+msgstr ""
+
+#: ../lib/Galette/IO/Pdf.php:101 ../lib/Galette/IO/Pdf.php:265
+#, php-format
+msgid "Association %s"
+msgstr ""
+
+#: ../lib/Galette/IO/Pdf.php:209
+msgid "Missing or incorrect image file "
+msgstr ""
+
+#: ../lib/Galette/IO/Pdf.php:212
+msgid "Not a GIF file "
+msgstr ""
+
+#: ../lib/Galette/IO/Pdf.php:221
+msgid "Error loading "
+msgstr ""
+
+#: ../lib/Galette/IO/Pdf.php:226
+msgid "Error creating temporary png file from "
+msgstr ""
+
+#: ../lib/Galette/IO/Pdf.php:229
+msgid "Unable to convert GIF file "
+msgstr ""
+
+#: ../lib/Galette/IO/PdfMembersCards.php:93
+msgid "cards"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfMembersCards.php:104
+msgid "Member's Cards"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfMembersCards.php:106
+msgid "Cards"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:477
+msgid "An error occurred."
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:481
+msgid ""
+"File name is invalid, it should not contain any special character or space."
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:487
+#, php-format
+msgid "File extension is not allowed, only %s files are."
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:494
+#: ../lib/Galette/Entity/DynamicsTrait.php:273
+#, php-format
+msgid "File is too big. Maximum allowed size is %dKo"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:499
+msgid "Mime-Type not allowed"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:502
+msgid "A file with that name already exists!"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:505
+msgid "File does not comply with requirements."
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:508
+msgid "Unable to write file or temporary file"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:538
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:540
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:542
+msgid "The uploaded file was only partially uploaded"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:544
+msgid "No file was uploaded"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:546
+msgid "Missing a temporary folder"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:548
+msgid "Failed to write file to disk"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:550
+msgid "File upload stopped by extension"
+msgstr ""
+
+#: ../lib/Galette/IO/FileTrait.php:552
+msgid "Unknown upload error"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfAdhesionForm.php:88
+msgid "adherent_form"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfAdhesionForm.php:158
+#: ../lib/Galette/IO/PdfAdhesionForm.php:159
+#: ../lib/Galette/IO/PdfContribution.php:109
+#: ../lib/Galette/IO/PdfContribution.php:110
+msgid "None"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfContribution.php:146
+msgid "receipt"
+msgstr ""
+
+#: ../lib/Galette/IO/PdfContribution.php:148
+msgid "invoice"
+msgstr ""
+
+#: ../lib/Galette/Entity/ListsConfig.php:214
+msgid "Is admin"
+msgstr ""
+
+#: ../lib/Galette/Entity/ListsConfig.php:217
+msgid "Modified"
+msgstr ""
+
+#. TRANS: see https://www.urbandictionary.com/define.php?term=b-day
+#: ../lib/Galette/Entity/ListsConfig.php:221
+msgid "b-day"
+msgstr ""
+
+#: ../lib/Galette/Entity/ListsConfig.php:227
+msgid "Public"
+msgstr ""
+
+#: ../lib/Galette/Entity/Reminder.php:264
+msgid "%name <%mail> (%days days)"
+msgstr ""
+
+#: ../lib/Galette/Entity/Reminder.php:271
+msgid "Sent reminder email for late membership"
+msgstr ""
+
+#: ../lib/Galette/Entity/Reminder.php:273
+msgid "Sent reminder email for impending membership"
+msgstr ""
+
+#: ../lib/Galette/Entity/Reminder.php:280
+msgid "A problem happened while sending late membership email"
+msgstr ""
+
+#: ../lib/Galette/Entity/Reminder.php:282
+msgid "A problem happened while sending impending membership email"
+msgstr ""
+
+#: ../lib/Galette/Entity/Reminder.php:293
+msgid "Unable to send %membership reminder (no email address)."
+msgstr ""
+
+#: ../lib/Galette/Entity/Reminder.php:306
+msgid "%name (#%id - %days days)"
+msgstr ""
+
+#: ../lib/Galette/Entity/I18nTrait.php:135
+#, php-format
+msgid "Unable to add dynamic translation for %field :("
+msgstr ""
+
+#: ../lib/Galette/Entity/I18nTrait.php:201
+#, php-format
+msgid "Unable to update dynamic translation for %field :("
+msgstr ""
+
+#: ../lib/Galette/Entity/I18nTrait.php:236
+#, php-format
+msgid "Unable to remove old dynamic translation for %field :("
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:707
+msgid "Freed of dues"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:719
+#, php-format
+msgid "Never contributed: Registered %days days ago (since %date)"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:722
+#: ../lib/Galette/Filters/MembersList.php:296
+msgid "Never contributed"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:725
+msgid "Last day!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:737
+#, php-format
+msgid "Late of %days days (since %date)"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:752
+#, php-format
+msgid "%days days remaining (ending on %date)"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1150
+msgid "- Birthdate must be set in the past!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1158
+msgid "- Members must be less than 200 years old (currently %years)!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1179
+#: ../lib/Galette/Entity/Transaction.php:299
+#: ../lib/Galette/Entity/DynamicsTrait.php:161
+#: ../lib/Galette/Entity/Contribution.php:391
+#: ../lib/Galette/Entity/Contribution.php:1274
+#, php-format
+msgid "- Wrong date format (%date_format) for %field!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1197
+msgid "- Non-valid E-Mail address!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1214
+msgid "- This E-Mail address is already used by another member!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1221
+#: ../lib/Galette/Entity/Adherent.php:1269
+msgid "An error has occurred while looking if login already exists."
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1229
+msgid "- Non-valid Website address! Maybe you've skipped the http://?"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1238
+msgid "- The username must be composed of at least %i characters!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1243
+msgid "- The username cannot contain the @ character"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1262
+msgid "- This username is already in use, please choose another one!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1285
+msgid "Password misrepeated: "
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1319
+msgid "Status #%id does not exists in database."
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1328
+msgid "An error has occurred while looking if status does exists."
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1335
+msgid "Gender %gender does not exists!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1445
+msgid "Self_subscription as a member: "
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1451
+msgid "Member card added"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1459
+msgid "Fail to add new member."
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1491
+msgid "Member card updated"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1596
+msgid "Active"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1596
+msgid "Inactive"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1824
+msgid " (%age years old)"
+msgstr ""
+
+#: ../lib/Galette/Entity/Adherent.php:1897
+msgid "Duplicated from %name (%id)"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:109
+msgid "Date:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:113
+#: ../lib/Galette/Entity/Contribution.php:126
+msgid "Amount:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:117
+msgid "Description:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:121
+msgid "Originator:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:310
+#: ../lib/Galette/Entity/Contribution.php:410
+msgid "- The amount must be an integer!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:317
+msgid "- Empty transaction description!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:319
+msgid "- Transaction description must be 150 characters long maximum."
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:344
+#: ../lib/Galette/Entity/Contribution.php:471
+msgid "- Sum of all contributions exceed corresponding transaction amount."
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:405
+msgid "Transaction added"
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:412
+msgid "Fail to add new transaction."
+msgstr ""
+
+#: ../lib/Galette/Entity/Transaction.php:428
+msgid "Transaction updated"
+msgstr ""
+
+#: ../lib/Galette/Entity/ContributionsTypes.php:117
+msgid "contribution type"
+msgstr ""
+
+#: ../lib/Galette/Entity/DynamicsTrait.php:119
+#, php-format
+msgid "Missing required field %field"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:118
+msgid "Contributor:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:122
+msgid "Contribution type:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:130
+msgid "Payment type:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:134
+msgid "Comments:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:142
+msgid "Date of contribution:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:143
+msgid "Start date of membership:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:147
+msgid "End date of membership:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:157
+msgid "Membership extension:"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:423
+msgid "- Unknown payment type"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:437
+msgid "- The duration must be a positive integer!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:479
+msgid "An error occurred checking overlaping fees :("
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:540
+msgid "- Membership period overlaps period starting at "
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:614
+msgid "Contribution added"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:621
+msgid "Fail to add new contribution."
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:638
+msgid "Contribution updated"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:1045
+msgid "Contribution information"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:1047
+msgid "Script output"
+msgstr ""
+
+#: ../lib/Galette/Entity/Contribution.php:1075
+msgid "Membership"
+msgstr ""
+
+#: ../lib/Galette/Entity/Entitled.php:331
+msgid "ID must be an integer!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Entitled.php:343
+msgid "Label does not exist"
+msgstr ""
+
+#: ../lib/Galette/Entity/Entitled.php:547
+msgid "Cannot delete this label: it's still used"
+msgstr ""
+
+#: ../lib/Galette/Entity/Title.php:185
+msgid "You cannot delete Mr. or Mrs. titles!"
+msgstr ""
+
+#: ../lib/Galette/Entity/PdfModel.php:343
+#, php-format
+msgid "%field should be less than %chars characters long."
+msgstr ""
+
+#: ../lib/Galette/Entity/PdfModel.php:353
+#, php-format
+msgid "%field should not be empty!"
+msgstr ""
+
+#: ../lib/Galette/Entity/PdfModel.php:539
+msgid "Unknown type %type!"
+msgstr ""
+
+#: ../lib/Galette/Entity/PdfModel.php:555
+msgid "Title"
+msgstr ""
+
+#: ../lib/Galette/Entity/PdfModel.php:557
+msgid "Subtitle"
+msgstr ""
+
+#: ../lib/Galette/Entity/PdfModel.php:572
+msgid "header and footer should not be empty!"
+msgstr ""
+
+#: ../lib/Galette/Entity/PdfModel.php:576
+msgid "body should not be empty!"
+msgstr ""
+
+#: ../lib/Galette/Entity/PaymentType.php:190
+msgid "You cannot delete system payment types!"
+msgstr ""
+
+#: ../lib/Galette/Entity/PaymentType.php:282
+msgid "Other"
+msgstr ""
+
+#: ../lib/Galette/Entity/PaymentType.php:283
+msgid "Cash"
+msgstr ""
+
+#: ../lib/Galette/Entity/PaymentType.php:284
+msgid "Credit card"
+msgstr ""
+
+#: ../lib/Galette/Entity/PaymentType.php:285
+msgid "Check"
+msgstr ""
+
+#: ../lib/Galette/Entity/PaymentType.php:286
+msgid "Transfer"
+msgstr ""
+
+#: ../lib/Galette/Entity/PaymentType.php:287
+msgid "Paypal"
+msgstr ""
+
+#: ../lib/Galette/Entity/Status.php:119
+msgid "status"
+msgstr ""
+
+#: ../lib/Galette/Entity/Status.php:132
+msgid "You cannot delete default status!"
+msgstr ""
+
+#: ../lib/Galette/Entity/SavedSearch.php:153
+msgid "Form is mandatory!"
+msgstr ""
+
+#: ../lib/Galette/Entity/SavedSearch.php:346
+#, php-format
+msgid "Unknown form %form!"
+msgstr ""
+
+#: ../lib/Galette/Entity/SavedSearch.php:361
+msgid "Name cannot be empty!"
+msgstr ""
+
+#: ../lib/Galette/Entity/Group.php:381
+msgid "Group has been detached from its parent"
+msgstr ""
+
+#: ../lib/Galette/Entity/Group.php:395
+msgid "Unable to detach group :("
+msgstr ""
+
+#: ../lib/Galette/Entity/Group.php:438
+msgid "Group added"
+msgstr ""
+
+#: ../lib/Galette/Entity/Group.php:443
+msgid "Fail to add new group."
+msgstr ""
+
+#: ../lib/Galette/Entity/Group.php:461
+msgid "Group updated"
+msgstr ""
+
+#: ../lib/Galette/Entity/Group.php:708
+#, php-format
+msgid "Group `%1$s` cannot be set as parent!"
+msgstr ""
+
+#: ../lib/Galette/Middleware/CheckAcls.php:129
+#: ../lib/Galette/Middleware/CheckAcls.php:177
+msgid "Route '%name' is not registered in ACLs!"
+msgstr ""
+
+#: ../lib/Galette/Middleware/CheckAcls.php:135
+msgid "Routes '%names' are not registered in ACLs!"
+msgstr ""
+
+#: ../lib/Galette/Middleware/Authenticate.php:101
+msgid "Login required"
+msgstr ""
+
+#: ../lib/Galette/Middleware/Authenticate.php:153
+msgid "Unknown ACL rule '%acl'!"
+msgstr ""
+
+#: ../lib/Galette/Middleware/UpdateAndMaintenance.php:146
+#: ../lib/Galette/Middleware/UpdateAndMaintenance.php:183
+msgid "Galette needs update!"
+msgstr ""
+
+#: ../lib/Galette/Middleware/UpdateAndMaintenance.php:169
+msgid "Galette is currently under maintenance!"
+msgstr ""
+
+#: ../lib/Galette/Middleware/UpdateAndMaintenance.php:170
+msgid ""
+"The Galette instance you are requesting is currently under maintenance. "
+"Please come back later."
+msgstr ""
+
+#: ../lib/Galette/Middleware/UpdateAndMaintenance.php:184
+msgid "Your Galette database is not present, or not up to date."
+msgstr ""
+
+#: ../lib/Galette/Middleware/UpdateAndMaintenance.php:185
+msgid "Please run install or upgrade procedure (check the documentation)"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:273
+msgid "Company name"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:274
+msgid "Address"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:275
+msgid "Email,URL,IM"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:276
+msgid "Job"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:277
+msgid "Infos"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:281
+msgid "Member number"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:292
+msgid "All members"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:293
+msgid "Up to date members"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:294
+msgid "Close expiries"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:295
+msgid "Latecomers"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:298
+msgid "Administrators"
+msgstr ""
+
+#: ../lib/Galette/Filters/MembersList.php:299
+msgid "Non members"
+msgstr ""
+
+#: ../lib/Galette/Filters/TransactionsList.php:185
+#: ../lib/Galette/Filters/TransactionsList.php:222
+#: ../lib/Galette/Filters/HistoryList.php:196
+#: ../lib/Galette/Filters/HistoryList.php:233
+#: ../lib/Galette/Filters/MailingsList.php:190
+#: ../lib/Galette/Filters/MailingsList.php:227
+#: ../lib/Galette/Filters/ContributionsList.php:210
+#: ../lib/Galette/Filters/ContributionsList.php:247
+msgid "Y"
+msgstr ""
+
+#: ../lib/Galette/Filters/TransactionsList.php:201
+#: ../lib/Galette/Filters/TransactionsList.php:223
+#: ../lib/Galette/Filters/HistoryList.php:212
+#: ../lib/Galette/Filters/HistoryList.php:234
+#: ../lib/Galette/Filters/MailingsList.php:206
+#: ../lib/Galette/Filters/MailingsList.php:228
+#: ../lib/Galette/Filters/ContributionsList.php:226
+#: ../lib/Galette/Filters/ContributionsList.php:248
+msgid "Y-m"
+msgstr ""
+
+#: ../lib/Galette/Filters/TransactionsList.php:242
+#: ../lib/Galette/Filters/HistoryList.php:253
+#: ../lib/Galette/Filters/MailingsList.php:247
+#: ../lib/Galette/Filters/ContributionsList.php:267
+#, php-format
+msgid "Unknown date format for %field.<br/>Know formats are: %formats"
+msgstr ""
+
+#: ../webroot/installer.php:151
+msgid "No host"
+msgstr ""
+
+#: ../webroot/installer.php:154
+msgid "No port"
+msgstr ""
+
+#: ../webroot/installer.php:157 ../webroot/installer.php:197
+msgid "No user name"
+msgstr ""
+
+#: ../webroot/installer.php:163
+msgid "No database name"
+msgstr ""
+
+#: ../webroot/installer.php:200
+msgid "The username cannot contain the @ character"
+msgstr ""
+
+#: ../webroot/installer.php:241
+msgid "Galette Installation"
+msgstr ""
+
+#: ../webroot/installer.php:252
+msgid "Galette installation"
+msgstr ""
+
+#: ../webroot/installer.php:255
+msgid "Change language"
+msgstr ""
+
+#: ../webroot/installer.php:276
+msgid "- ERROR -"
+msgstr ""
+
+#: ../webroot/installer.php:314
+msgid "Steps:"
+msgstr ""
+
+#: ../webroot/installer.php:319
+msgid "Database access/permissions"
+msgstr ""
+
+#: ../webroot/installer.php:323
+msgid "Version selection"
+msgstr ""
+
+#: ../webroot/installer.php:324
+msgid "Database upgrade"
+msgstr ""
+
+#: ../webroot/installer.php:328
+msgid "Database installation"
+msgstr ""
+
+#: ../webroot/installer.php:338
+msgid "Galette initialisation"
+msgstr ""
+
+#: ../includes/routes/public_pages.routes.php:47
+msgid "Unauthorized"
+msgstr ""
+
+#: ../includes/routes/plugins.routes.php:72
+msgid "Invalid extension!"
+msgstr ""
+
+#: ../includes/routes/ajax.routes.php:69
+msgid "Required argument not present!"
+msgstr ""
+
+#: ../includes/routes/ajax.routes.php:108
+msgid "Member photo has been changed."
+msgstr ""
+
+#: ../includes/routes/ajax.routes.php:217
+msgid "Telemetry information has been sent. Thank you!"
+msgstr ""
+
+#: ../includes/routes/ajax.routes.php:237
+msgid "Thank you for registering!"
+msgstr ""
+
+#: ../includes/i18n.inc.php:272
+msgid "Realization:"
+msgstr ""
+
+#: ../includes/i18n.inc.php:273
+msgid "Graphics:"
+msgstr ""
+
+#: ../includes/i18n.inc.php:274
+msgid "Publisher:"
+msgstr ""
+
+#: ../includes/i18n.inc.php:275
+msgid "President"
+msgstr ""
+
+#: ../includes/i18n.inc.php:276
+msgid "Vice-president"
+msgstr ""
+
+#: ../includes/i18n.inc.php:277
+msgid "Treasurer"
+msgstr ""
+
+#: ../includes/i18n.inc.php:278
+msgid "Vice-treasurer"
+msgstr ""
+
+#: ../includes/i18n.inc.php:279
+msgid "Secretary"
+msgstr ""
+
+#: ../includes/i18n.inc.php:280
+msgid "Vice-secretary"
+msgstr ""
+
+#: ../includes/i18n.inc.php:281
+msgid "Active member"
+msgstr ""
+
+#: ../includes/i18n.inc.php:282
+msgid "Benefactor member"
+msgstr ""
+
+#: ../includes/i18n.inc.php:283
+msgid "Founder member"
+msgstr ""
+
+#: ../includes/i18n.inc.php:284
+msgid "Old-timer"
+msgstr ""
+
+#: ../includes/i18n.inc.php:285
+msgid "Legal entity"
+msgstr ""
+
+#: ../includes/i18n.inc.php:286
+msgid "Non-member"
+msgstr ""
+
+#: ../includes/i18n.inc.php:287
+msgid "Reduced annual contribution"
+msgstr ""
+
+#: ../includes/i18n.inc.php:288
+msgid "Company cotisation"
+msgstr ""
+
+#: ../includes/i18n.inc.php:289
+msgid "Donation in kind"
+msgstr ""
+
+#: ../includes/i18n.inc.php:290
+msgid "Donation in money"
+msgstr ""
+
+#: ../includes/i18n.inc.php:291
+msgid "Partnership"
+msgstr ""
+
+#: ../includes/i18n.inc.php:292
+msgid "french"
+msgstr ""
+
+#: ../includes/i18n.inc.php:293
+msgid "english"
+msgstr ""
+
+#: ../includes/i18n.inc.php:294
+msgid "spanish"
+msgstr ""
+
+#: ../includes/i18n.inc.php:295
+msgid "annual fee"
+msgstr ""
+
+#: ../includes/i18n.inc.php:296
+msgid "annual fee (to be paid)"
+msgstr ""
+
+#: ../includes/i18n.inc.php:297
+msgid "company fee"
+msgstr ""
+
+#: ../includes/i18n.inc.php:298
+msgid "donation in kind"
+msgstr ""
+
+#: ../includes/i18n.inc.php:299
+msgid "donation in money"
+msgstr ""
+
+#: ../includes/i18n.inc.php:300
+msgid "partnership"
+msgstr ""
+
+#: ../includes/i18n.inc.php:301
+msgid "reduced annual fee"
+msgstr ""
+
+#: ../includes/i18n.inc.php:302
+msgid "Identity"
+msgstr ""
+
+#: ../includes/i18n.inc.php:303
+msgid "Galette-related data"
+msgstr ""
+
+#: ../includes/i18n.inc.php:304
+msgid "Contact information"
+msgstr ""
+
+#: ../includes/i18n.inc.php:305
+msgid "Mr."
+msgstr ""
+
+#: ../includes/i18n.inc.php:306
+msgid "Mrs."
+msgstr ""
+
+#: ../includes/i18n.inc.php:307
+msgid "Miss"
+msgstr ""
+
+#: ../includes/i18n.inc.php:308
+msgid "Identity:"
+msgstr ""
+
+#: ../includes/i18n.inc.php:309
+msgid "Galette-related data:"
+msgstr ""
+
+#: ../includes/i18n.inc.php:310
+msgid "Contact information:"
+msgstr ""
+
+#: ../includes/i18n.inc.php:311
+msgid "Society"
+msgstr ""
+
+#: ../includes/i18n.inc.php:312
+msgid "Politeness"
+msgstr ""
+
+#: ../includes/i18n.inc.php:314
+msgid "Main"
+msgstr ""
+
+#: ../includes/i18n.inc.php:315
+msgid "** Galette identifier, if applicable"
+msgstr ""
+
+#: ../includes/i18n.inc.php:316
+msgid "* Only for compagnies"
+msgstr ""
+
+#: ../includes/i18n.inc.php:317
+#, php-format
+msgid "Hereby, I agree to comply to %s association statutes and its rules."
+msgstr ""
+
+#: ../includes/i18n.inc.php:318
+msgid "At ................................................"
+msgstr ""
+
+#: ../includes/i18n.inc.php:319
+msgid "On .......... / .......... / .......... "
+msgstr ""
+
+#: ../includes/i18n.inc.php:320
+msgid "Username"
+msgstr ""
+
+#: ../includes/i18n.inc.php:321
+msgid "Email address"
+msgstr ""
+
+#: ../includes/i18n.inc.php:322
+msgid "Country"
+msgstr ""
+
+#: ../includes/i18n.inc.php:323
+msgid "City"
+msgstr ""
+
+#: ../includes/i18n.inc.php:324
+msgid "Zip Code"
+msgstr ""
+
+#: ../includes/i18n.inc.php:325
+msgid "First name"
+msgstr ""
+
+#: ../includes/i18n.inc.php:326
+msgid ""
+"The minimum contribution for each type of membership are defined on the "
+"website of the association. The amount of donations are free to be decided "
+"by the generous donor."
+msgstr ""
+
+#: ../includes/i18n.inc.php:327
+msgid "Required membership:"
+msgstr ""
+
+#: ../includes/i18n.inc.php:328
+msgid ""
+"Complete the following form and send it with your funds, in order to "
+"complete your subscription."
+msgstr ""
+
+#: ../includes/i18n.inc.php:329
+msgid "on"
+msgstr ""
+
+#: ../includes/i18n.inc.php:330
+msgid "from"
+msgstr ""
+
+#: ../includes/i18n.inc.php:331
+msgid "to"
+msgstr ""
+
+#: ../includes/i18n.inc.php:332
+msgid "Association"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:42
+msgid "Member number:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:52
+msgid "Status:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:62
+msgid "Name:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:70
+msgid "First name:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:78
+msgid "Company:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:86
+msgid "Nickname:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:96
+msgid "Title:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:104
+msgid "Birth date:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:112
+msgid "Gender:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:120
+msgid "Address:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:129
+msgid "Address (continuation)"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:137
+msgid "Zip Code:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:145
+msgid "City:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:153
+msgid "Country:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:161
+msgid "Phone:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:169
+msgid "Mobile phone:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:177
+msgid "E-Mail:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:185
+msgid "Website:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:193
+msgid "ICQ:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:201
+msgid "MSN:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:209
+msgid "Jabber:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:217
+msgid "Other information (admin):"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:225
+msgid "Other information:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:233
+msgid "Profession:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:241 ../install/steps/admin.php:45
+msgid "Username:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:249 ../install/steps/admin.php:49
+#: ../install/steps/db.php:88
+msgid "Password:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:257
+msgid "Creation date:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:265
+msgid "Modification date:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:275
+msgid "Account:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:283
+msgid "Galette Admin:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:291
+msgid "Freed of dues:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:299
+msgid "Be visible in the members list:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:307
+msgid "Due date:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:315
+msgid "Language:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:323
+msgid "Birthplace:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:331
+msgid "Id GNUpg (GPG):"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:339
+msgid "fingerprint:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:347
+msgid "Parent:"
+msgstr ""
+
+#: ../includes/fields_defs/members_fields.php:365
+msgid "State of dues"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:40
+#: ../includes/fields_defs/texts_fields.php:48
+msgid "[{ASSO_NAME}] Your identifiers"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:41
+msgid ""
+"Hello,{NEWLINE}You've just been subscribed on the members management system "
+"of {ASSO_NAME}.{NEWLINE}It is now possible to follow in real time the state "
+"of your subscription and to update your preferences from the web interface."
+"{NEWLINE}Please login at this address to set your new password :{BR}"
+"{CHG_PWD_URI}{NEWLINE}Username: {LOGIN}{BR}The above link will be valid "
+"until {LINK_VALIDITY}.{NEWLINE}See you soon!{NEWLINE}(this email was sent "
+"automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:43
+msgid "New user registration"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:49
+msgid ""
+"Hello,{NEWLINE}Someone (probably you) asked to recover your password."
+"{NEWLINE}Please login at this address to set your new password :{BR}"
+"{CHG_PWD_URI}{NEWLINE}Username: {LOGIN}{BR}The above link will be valid "
+"until {LINK_VALIDITY}.{NEWLINE}See you soon!{NEWLINE}(this email was sent "
+"automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:51
+msgid "Lost password email"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:56
+msgid "[{ASSO_NAME}] Your contribution"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:57
+msgid ""
+"Hello,{NEWLINE}Your contribution has successfully been taken into account by "
+"{ASSO_NAME}.{NEWLINE}It is valid until {DEADLINE}.{NEWLINE}You can now login "
+"and browse or modify your personnal data using your galette identifiers at "
+"this address:{BR}{LOGIN_URI}.{NEWLINE}{CONTRIB_INFO}{NEWLINE}See you soon!"
+"{NEWLINE}(this email was sent automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:59
+msgid "Receipt send for new contribution"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:64
+msgid "[{ASSO_NAME}] New registration from {NAME_ADH}"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:65
+msgid ""
+"Hello dear Administrator,{NEWLINE}A new member has been registered with the "
+"following information:{BR}* Name: {NAME_ADH}{BR}* Login: {LOGIN}{BR}* E-"
+"mail: {MAIL_ADH}{NEWLINE}Yours sincerly,{BR}Galette"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:67
+msgid "New user registration (sent to admin)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:72
+msgid "[{ASSO_NAME}] New contribution for {NAME_ADH}"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:73
+msgid ""
+"Hello dear Administrator,{NEWLINE}A contribution from {NAME_ADH} has been "
+"registered (new deadline: {DEADLINE}){BR}{CONTRIB_INFO}{NEWLINE}Yours "
+"sincerly,{BR}Galette"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:75
+msgid "New contribution (sent to admin)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:80
+msgid "[{ASSO_NAME}] New self registration from {NAME_ADH}"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:81
+msgid ""
+"Hello dear Administrator,{NEWLINE}A new member has self registred on line "
+"with the following information:{BR}* Name: {NAME_ADH}{BR}* Login: {LOGIN}{BR}"
+"* E-mail: {MAIL_ADH}{NEWLINE}Yours sincerly,{BR}Galette"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:83
+msgid "New self registration (sent to admin)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:88
+msgid "[{ASSO_NAME}] Your account has been modified"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:89
+msgid ""
+"Hello!{NEWLINE}Your account on {ASSO_NAME} (with the login '{LOGIN}') has "
+"been modified by an administrator or a staff member.{NEWLINE}You can log "
+"into {LOGIN_URI} to review modifications and/or change it.{NEWLINE}See you "
+"soon!{NEWLINE}(this email was sent automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:91
+msgid "Informs user that his account has been modified"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:96
+msgid "[{ASSO_NAME}] Your membership is about to expire"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:97
+msgid ""
+"Hello,{NEWLINE}Your {ASSO_NAME} membership is about to expire in "
+"{DAYS_REMAINING} days.{NEWLINE}See you soon!{NEWLINE}(this email was sent "
+"automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:99
+msgid "Impending due date"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:104
+msgid "[{ASSO_NAME}] Your membership has expired"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:105
+msgid ""
+"Hello,{NEWLINE}Your {ASSO_NAME} membership has expired for {DAYS_EXPIRED} "
+"days.{NEWLINE}See you soon!{NEWLINE}(this email was sent automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:107
+msgid "Late due date"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:112
+msgid "[{ASSO_NAME}] Your donation"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:113
+msgid ""
+"Hello,{NEWLINE}Your donation to {ASSO_NAME} has successfully been stored."
+"{NEWLINE}{CONTRIB_INFO}{NEWLINE}Thank you!{NEWLINE}(this email was sent "
+"automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:115
+msgid "Receipt send for new donations"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:120
+msgid "[{ASSO_NAME}] New donation for {NAME_ADH}"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:121
+msgid ""
+"Hello dear Administrator,{NEWLINE}A donation from {NAME_ADH} has been "
+"registered{BR}{CONTRIB_INFO}{NEWLINE}Yours sincerly,{BR}Galette"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:123
+msgid "New donation (sent to admin)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:128
+msgid "[{ASSO_NAME}] Account {NAME_ADH} has been modified"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:129
+msgid ""
+"Hello!{NEWLINE}{NAME_ADH} has modified his/her account.{NEWLINE}See you soon!"
+"{NEWLINE}(this email was sent automatically)"
+msgstr ""
+
+#: ../includes/fields_defs/texts_fields.php:131
+msgid "Informs admin a member edit his information"
+msgstr ""
+
+#: ../install/scripts/upgrade-to-0.8.php:93
+msgid "Unable to create main datadir in %path!"
+msgstr ""
+
+#: ../install/scripts/upgrade-to-0.8.php:109
+#, php-format
+msgid "Unable to create datadir in %dir!"
+msgstr ""
+
+#: ../install/scripts/upgrade-to-0.8.php:189
+#, php-format
+msgid "File %file has not been moved :-/"
+msgstr ""
+
+#: ../install/scripts/upgrade-to-0.8.php:202
+#, php-format
+msgid "Directory %dir has been moved!"
+msgstr ""
+
+#: ../install/scripts/upgrade-to-0.8.php:214
+#, php-format
+msgid "Directory %dir has not been moved :("
+msgstr ""
+
+#: ../install/scripts/upgrade-to-0.8.php:223
+#, php-format
+msgid "Directory %dir is not in its original path and will not be moved."
+msgstr ""
+
+#: ../install/steps/end.php:45
+msgid "Galette has been successfully installed!"
+msgstr ""
+
+#: ../install/steps/end.php:48
+msgid "Galette has been successfully updated!"
+msgstr ""
+
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
+msgid "Homepage"
+msgstr ""
+
+#: ../install/steps/admin.php:43
+msgid "Please chose the parameters of the admin account on Galette"
+msgstr ""
+
+#: ../install/steps/admin.php:53
+msgid "Retype password:"
+msgstr ""
+
+#: ../install/steps/admin.php:58 ../install/steps/db_install.php:82
+#: ../install/steps/db_select_version.php:134
+#: ../install/steps/db_checks.php:241 ../install/steps/galette.php:81
+#: ../install/steps/check.php:165 ../install/steps/db.php:110
+#: ../install/steps/type.php:65
+msgid "Next step"
+msgstr ""
+
+#: ../install/steps/admin.php:67
+msgid "Password mismatch!"
+msgstr ""
+
+#: ../install/steps/db_install.php:46
+msgid "Database has not been installed!"
+msgstr ""
+
+#: ../install/steps/db_install.php:48
+msgid "Database has not been upgraded!"
+msgstr ""
+
+#: ../install/steps/db_install.php:52
+msgid "Database has been installed :)"
+msgstr ""
+
+#: ../install/steps/db_install.php:54
+msgid "Database has been upgraded :)"
+msgstr ""
+
+#: ../install/steps/db_install.php:77 ../install/steps/galette.php:76
+#: ../install/steps/check.php:157
+msgid "Retry"
+msgstr ""
+
+#: ../install/steps/db_install.php:93 ../install/steps/db_select_version.php:61
+#: ../install/steps/db_select_version.php:135
+#: ../install/steps/db_checks.php:250 ../install/steps/galette.php:92
+#: ../install/steps/db.php:111 ../install/steps/type.php:66
+msgid "Back"
+msgstr ""
+
+#: ../install/steps/db_select_version.php:46
+msgid "Select your previous Galette version below, and then click next."
+msgstr ""
+
+#: ../install/steps/db_select_version.php:51
+msgid "No update script found!"
+msgstr ""
+
+#: ../install/steps/db_select_version.php:55
+msgid "It seems you already use latest Galette version!"
+msgstr ""
+
+#: ../install/steps/db_select_version.php:60
+msgid "Cancel"
+msgstr ""
+
+#: ../install/steps/db_select_version.php:69
+msgid ""
+"Previous version is older than 0.7. <strong>Make sure you select the right "
+"version</strong>."
+msgstr ""
+
+#: ../install/steps/db_select_version.php:73
+msgid ""
+"Your previous version should be selected and <strong>displayed in bold</"
+"strong>."
+msgstr ""
+
+#: ../install/steps/db_select_version.php:80
+msgid ""
+"It seems you already use latest Galette version!<br/>Are you sure you want "
+"to upgrade?"
+msgstr ""
+
+#: ../install/steps/db_select_version.php:85
+msgid "Your current Galette version is..."
+msgstr ""
+
+#: ../install/steps/db_select_version.php:105
+msgid "older than %version"
+msgstr ""
+
+#: ../install/steps/db_select_version.php:108
+msgid "comprised between"
+msgstr ""
+
+#: ../install/steps/db_select_version.php:109
+msgid "and"
+msgstr ""
+
+#: ../install/steps/db_checks.php:66
+msgid "CREATE operation not allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:73
+msgid "CREATE operation allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:80
+msgid "INSERT operation not allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:87
+msgid "INSERT operation allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:94
+msgid "UPDATE operation not allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:101
+msgid "UPDATE operation allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:108
+msgid "SELECT operation not allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:115
+msgid "SELECT operation allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:122
+msgid "DELETE operation not allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:129
+msgid "DELETE operation allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:136
+msgid "DROP operation not allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:143
+msgid "DROP operation allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:151
+msgid "ALTER operation not allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:158
+msgid "ALTER operation allowed"
+msgstr ""
+
+#: ../install/steps/db_checks.php:177
+msgid "Connection to database successfull"
+msgstr ""
+
+#: ../install/steps/db_checks.php:178 ../install/steps/db_checks.php:180
+msgid "Permissions to database are OK."
+msgstr ""
+
+#: ../install/steps/db_checks.php:186
+msgid "Check of the database"
+msgstr ""
+
+#: ../install/steps/db_checks.php:193
+msgid "Unable to connect to the database"
+msgstr ""
+
+#: ../install/steps/db_checks.php:201
+msgid ""
+"Database can't be reached. Please go back to enter the connection parameters "
+"again."
+msgstr ""
+
+#: ../install/steps/db_checks.php:206
+msgid "Database exists and connection parameters are OK."
+msgstr ""
+
+#: ../install/steps/db_checks.php:207
+msgid "Permissions on the base"
+msgstr ""
+
+#: ../install/steps/db_checks.php:214
+msgid ""
+"GALETTE hasn't got enough permissions on the database to continue the "
+"installation."
+msgstr ""
+
+#: ../install/steps/db_checks.php:216
+msgid ""
+"GALETTE hasn't got enough permissions on the database to continue the update."
+msgstr ""
+
+#: ../install/steps/galette.php:53
+msgid "Configuration file created!"
+msgstr ""
+
+#: ../install/steps/galette.php:54
+msgid "Data initialized."
+msgstr ""
+
+#: ../install/steps/galette.php:56
+msgid "An error occurred :("
+msgstr ""
+
+#: ../install/steps/check.php:37
+msgid "Welcome to the Galette Install!"
+msgstr ""
+
+#: ../install/steps/check.php:67
+msgid "Compilation"
+msgstr ""
+
+#: ../install/steps/check.php:68
+msgid "Photos"
+msgstr ""
+
+#: ../install/steps/check.php:69
+msgid "Cache"
+msgstr ""
+
+#: ../install/steps/check.php:70
+msgid "Temporary images"
+msgstr ""
+
+#: ../install/steps/check.php:71
+msgid "Configuration"
+msgstr ""
+
+#: ../install/steps/check.php:72
+msgid "Exports"
+msgstr ""
+
+#: ../install/steps/check.php:73
+msgid "Imports"
+msgstr ""
+
+#: ../install/steps/check.php:75
+msgid "Attachments"
+msgstr ""
+
+#: ../install/steps/check.php:76
+msgid "Files"
+msgstr ""
+
+#: ../install/steps/check.php:89
+msgid "Galette requirements are met :)"
+msgstr ""
+
+#: ../install/steps/check.php:93
+msgid ""
+"Your PHP date settings are not correct. Maybe you've missed the timezone "
+"settings that is mandatory since PHP 5.3?"
+msgstr ""
+
+#: ../install/steps/check.php:98
+msgid "PHP version"
+msgstr ""
+
+#: ../install/steps/check.php:102
+msgid "Date settings"
+msgstr ""
+
+#: ../install/steps/check.php:107
+msgid "PHP Modules"
+msgstr ""
+
+#: ../install/steps/check.php:117
+msgid "Files permissions"
+msgstr ""
+
+#: ../install/steps/check.php:136
+msgid "Files permissions are not OK!"
+msgstr ""
+
+#: ../install/steps/check.php:139
+msgid ""
+"To work as excpected, Galette needs write permission on files listed above."
+msgstr ""
+
+#: ../install/steps/check.php:141
+msgid ""
+"In order to be updated, Galette needs write permission on files listed above."
+msgstr ""
+
+#: ../install/steps/check.php:144
+msgid "Under UNIX/Linux, you can give the permissions using those commands"
+msgstr ""
+
+#: ../install/steps/check.php:145
+msgid "apache_user"
+msgstr ""
+
+#: ../install/steps/check.php:145
+msgid "file_name"
+msgstr ""
+
+#: ../install/steps/check.php:145
+msgid "directory_name"
+msgstr ""
+
+#: ../install/steps/check.php:147
+msgid ""
+"Under Windows, check these directories are not in Read-Only mode in their "
+"property panel."
+msgstr ""
+
+#: ../install/steps/db.php:44
+msgid "If it hadn't been made, create a database and a user for Galette."
+msgstr ""
+
+#: ../install/steps/db.php:47
+msgid "Enter connection data for the existing database."
+msgstr ""
+
+#: ../install/steps/db.php:51
+msgid ""
+"It seems that you have already installed Galette once.<br/>All existing data "
+"will be removed if you keep going on using existing database!"
+msgstr ""
+
+#: ../install/steps/db.php:63
+msgid ""
+"The needed permissions are CREATE, DROP, DELETE, UPDATE, SELECT and INSERT."
+msgstr ""
+
+#: ../install/steps/db.php:68
+msgid "Database type:"
+msgstr ""
+
+#: ../install/steps/db.php:76
+msgid "Host:"
+msgstr ""
+
+#: ../install/steps/db.php:80
+msgid "Port:"
+msgstr ""
+
+#: ../install/steps/db.php:84
+msgid "User:"
+msgstr ""
+
+#: ../install/steps/db.php:92
+msgid "Database:"
+msgstr ""
+
+#: ../install/steps/db.php:96
+msgid "Table prefix:"
+msgstr ""
+
+#: ../install/steps/db.php:102
+msgid "(Indicate the CURRENT prefix of your Galette tables)"
+msgstr ""
+
+#: ../install/steps/type.php:45
+msgid "New installation"
+msgstr ""
+
+#: ../install/steps/type.php:48
+msgid "you're installing Galette for the first time"
+msgstr ""
+
+#: ../install/steps/type.php:49
+msgid "you wish to erase an older version of Galette without keeping your data"
+msgstr ""
+
+#: ../install/steps/type.php:55
+msgid "Update"
+msgstr ""
+
+#: ../install/steps/type.php:58
+msgid ""
+"you already have installed Galette, and you want to upgrade to the latest "
+"version"
+msgstr ""
+
+#: ../install/steps/type.php:60
+msgid "Warning: Don't forget to backup your current database."
+msgstr ""
+
+#: :5
+msgid ""
+"Make sure you've done a backup of the database before using any of the "
+"following tools!"
+msgstr ""
+
+#: :8
+msgid "Select actions(s)"
+msgstr ""
+
+#: :10 :11 :16 :17
+msgid "Reset all emails contents to their default values"
+msgstr ""
+
+#: :10
+msgid "Reset emails contents"
+msgstr ""
+
+#: :13 :19 :25
+msgid "(all existing values will be removed)"
+msgstr ""
+
+#: :16
+msgid "Reset fields configuration"
+msgstr ""
+
+#: :17
+msgid ""
+"This includes fields positions, order, visibility, access levels and "
+"mandatory marks."
+msgstr ""
+
+#: :22 :23
+msgid "Reset all PDF models to their default values"
+msgstr ""
+
+#: :22
+msgid "Reinitialize PDF models"
+msgstr ""
+
+#: :28 :29
+msgid "Fill all empty login and passwords"
+msgstr ""
+
+#: :28
+msgid "Generate empty logins and passwords"
+msgstr ""
+
+#: :36
+msgid "Go"
+msgstr ""
+
+#: :19 :20 :49 :50
+msgid "Existing variables"
+msgstr ""
+
+#: :24 :54
+msgid "Globally available"
+msgstr ""
+
+#: :29 :59
+msgid "Your organisation name"
+msgstr ""
+
+#: :31 :61
+msgid "Your organisation slogan"
+msgstr ""
+
+#: :35
+msgid "Your organisation address"
+msgstr ""
+
+#: :37
+msgid "Your organisation website"
+msgstr ""
+
+#: :41
+msgid "Your organisation logo"
+msgstr ""
+
+#: :43
+msgid "Current date (Y-m-d)"
+msgstr ""
+
+#: :47
+msgid "Member's name"
+msgstr ""
+
+#: :49
+msgid "Member's address"
+msgstr ""
+
+#: :53
+msgid "Member's zipcode"
+msgstr ""
+
+#: :55
+msgid "Member's town"
+msgstr ""
+
+#: :59
+msgid "Member's main group"
+msgstr ""
+
+#: :61
+msgid "Member's groups (as list)"
+msgstr ""
+
+#: :67 :94
+msgid "Member's ID"
+msgstr ""
+
+#: :71
+msgid "Available for invoices and receipts only"
+msgstr ""
+
+#: :76
+msgid "Contribution label"
+msgstr ""
+
+#: :78 :122
+msgid "Contribution amount"
+msgstr ""
+
+#: :82
+msgid "Contribution full date"
+msgstr ""
+
+#: :84
+msgid "Contribution year"
+msgstr ""
+
+#: :88
+msgid "Contribution comment"
+msgstr ""
+
+#: :90
+msgid "Contribution begin date"
+msgstr ""
+
+#: :94
+msgid "Contribution end date"
+msgstr ""
+
+#: :96
+msgid "Contribution id"
+msgstr ""
+
+#: :100
+msgid "Contribution payment type"
+msgstr ""
+
+#: :110 :158
+msgid "Show existing variables"
+msgstr ""
+
+#: :145 :90 :2
+msgid "Loading..."
+msgstr ""
+
+#: :145 :90 :2
+msgid "Currently loading..."
+msgstr ""
+
+#: :6
+msgid "Username or email:"
+msgstr ""
+
+#: :9
+msgid "Recover password"
+msgstr ""
+
+#: :9
+msgid "Original string for name, that will be used for translations."
+msgstr ""
+
+#: :15 :40 :600 :45 :77 :98 :57 :76 :72 :93 :19 :51 :170 :56 :38 :140 :106
+msgid "Save"
+msgstr ""
+
+#: :19
+msgid "Priority:"
+msgstr ""
+
+#: :21 :12 :33 :75
+msgid "Extends membership?"
+msgstr ""
+
+#: :26 :4
+msgid ""
+"Note: members with a status priority lower than %priority are staff members."
+msgstr ""
+
+#: :19
+msgid ""
+"Galette is configured to display errors. This must be avoided in production "
+"environments."
+msgstr ""
+
+#: :27
+msgid ""
+"You are actually logged-in as superadmin. Some functionnalities may not be "
+"available since this is *not* a regular member."
+msgstr ""
+
+#: :32 :44
+msgid ""
+"This application runs under DEMO mode, all features may not be available."
+msgstr ""
+
+#: :33 :45
+msgid "Demonstration"
+msgstr ""
+
+#: :37
+msgid "Navigation"
+msgstr ""
+
+#: :39
+msgid "Go to Galette's dashboard"
+msgstr ""
+
+#: :41 :30 :46
+msgid "View, search into and filter member's list"
+msgstr ""
+
+#: :41
+msgid "List of members"
+msgstr ""
+
+#: :42
+msgid "Perform advanced search into members list"
+msgstr ""
+
+#: :44 :31
+msgid "View and manage groups"
+msgstr ""
+
+#: :44
+msgid "Manage groups"
+msgstr ""
+
+#: :47 :33
+msgid "View and filter contributions"
+msgstr ""
+
+#: :47
+msgid "List of contributions"
+msgstr ""
+
+#: :48 :34
+msgid "View and filter transactions"
+msgstr ""
+
+#: :48
+msgid "List of transactions"
+msgstr ""
+
+#: :49
+msgid "Add new member in database"
+msgstr ""
+
+#: :49
+msgid "Add a member"
+msgstr ""
+
+#: :50
+msgid "Add new membership fee in database"
+msgstr ""
+
+#: :50 :47 :81
+msgid "Add a membership fee"
+msgstr ""
+
+#: :51
+msgid "Add new donation in database"
+msgstr ""
+
+#: :51 :48 :90
+msgid "Add a donation"
+msgstr ""
+
+#: :52
+msgid "Add new transaction in database"
+msgstr ""
+
+#: :52 :28
+msgid "Add a transaction"
+msgstr ""
+
+#: :53 :36
+msgid "Send reminders to late members"
+msgstr ""
+
+#: :54
+msgid "View application's logs"
+msgstr ""
+
+#: :55 :35
+msgid "Manage mailings that has been sent"
+msgstr ""
+
+#: :55
+msgid "Manage mailings"
+msgstr ""
+
+#: :56
+msgid "Export some data in various formats"
+msgstr ""
+
+#: :57
+msgid "Import members from CSV files"
+msgstr ""
+
+#: :58
+msgid "Various charts"
+msgstr ""
+
+#: :60
+msgid "View and filter all my contributions"
+msgstr ""
+
+#: :60 :47
+msgid "My contributions"
+msgstr ""
+
+#: :61
+msgid "View and filter all my transactions"
+msgstr ""
+
+#: :61
+msgid "My transactions"
+msgstr ""
+
+#: :64
+msgid "View my member card"
+msgstr ""
+
+#: :64 :46
+msgid "My information"
+msgstr ""
+
+#: :69
+msgid "Public pages"
+msgstr ""
+
+#: :80 :39
+msgid ""
+"Set applications preferences (address, website, member's cards "
+"configuration, ...)"
+msgstr ""
+
+#: :81 :40
+msgid "Informations about available plugins"
+msgstr ""
+
+#: :82
+msgid "Customize lists fields and order"
+msgstr ""
+
+#: :82
+msgid "Core lists"
+msgstr ""
+
+#: :83
+msgid ""
+"Customize fields order, set which are required, and for who they're visibles"
+msgstr ""
+
+#: :83
+msgid "Core fields"
+msgstr ""
+
+#: :84
+msgid "Manage additional fields for various forms"
+msgstr ""
+
+#: :84 :33
+msgid "Dynamic fields"
+msgstr ""
+
+#: :85
+msgid "Translate additionnals fields labels"
+msgstr ""
+
+#: :86
+msgid "Manage statuses"
+msgstr ""
+
+#: :87
+msgid "Manage contributions types"
+msgstr ""
+
+#: :88
+msgid "Manage emails texts and subjects"
+msgstr ""
+
+#: :88
+msgid "Emails content"
+msgstr ""
+
+#: :89
+msgid "Manage titles"
+msgstr ""
+
+#: :90
+msgid "Manage PDF models"
+msgstr ""
+
+#: :91
+msgid "Manage payment types"
+msgstr ""
+
+#: :91
+msgid "Payment types"
+msgstr ""
+
+#: :92
+msgid "Download empty adhesion form"
+msgstr ""
+
+#: :92
+msgid "Empty adhesion form"
+msgstr ""
+
+#: :97
+msgid "Various administrative tools"
+msgstr ""
+
+#: :97
+msgid "Admin tools"
+msgstr ""
+
+#: :145
+msgid ""
+"A mailing exists in the current session. Click here if you want to resume or "
+"cancel it."
+msgstr ""
+
+#: :148 :635
+msgid "Existing mailing"
+msgstr ""
+
+#: :156
+msgid "Page content"
+msgstr ""
+
+#: :6
+msgid "General"
+msgstr ""
+
+#: :7 :118
+msgid "Social networks"
+msgstr ""
+
+#: :8 :11
+msgid "Parameters"
+msgstr ""
+
+#: :9
+msgid "E-Mail"
+msgstr ""
+
+#: :13
+msgid "Security"
+msgstr ""
+
+#: :16 :213 :578 :579
+msgid "Admin"
+msgstr ""
+
+#: :20
+msgid "General information"
+msgstr ""
+
+#: :22
+msgid "Name of the association:"
+msgstr ""
+
+#: :26
+msgid "Association's short description:"
+msgstr ""
+
+#: :27
+msgid ""
+"Enter here a short description for your association, it will be displayed on "
+"the index page and into pages' title."
+msgstr ""
+
+#: :34 :432 :444 :61
+#, php-format
+msgid "Translate '%s'"
+msgstr ""
+
+#: :39
+msgid "Footer text:"
+msgstr ""
+
+#: :40
+msgid ""
+"Enter a text (HTML allowed) that will be displayed in the footer of every "
+"page"
+msgstr ""
+
+#: :44 :469
+msgid "Logo:"
+msgstr ""
+
+#: :46
+msgid "Current logo"
+msgstr ""
+
+#: :47 :472 forms_types:10
+msgid "Delete image"
+msgstr ""
+
+#: :54
+msgid " (continuation)"
+msgstr ""
+
+#: :70
+msgid "Postal address:"
+msgstr ""
+
+#: :71
+msgid ""
+"Use either the address setted below or select a staff member to retrieve "
+"he's address."
+msgstr ""
+
+#: :72 :62
+msgid "from preferences"
+msgstr ""
+
+#: :74
+msgid "from a staff user"
+msgstr ""
+
+#: :78
+msgid "-- Choose a staff member --"
+msgstr ""
+
+#: :89
+msgid "Telemetry date:"
+msgstr ""
+
+#: :90
+msgid "Last telemetry sent date."
+msgstr ""
+
+#: :95
+msgid "Never"
+msgstr ""
+
+#: :97
+msgid "send"
+msgstr ""
+
+#: :101
+msgid "Registration date:"
+msgstr ""
+
+#: :102
+msgid "Date on which you registered your Galette instance."
+msgstr ""
+
+#: :105
+msgid "Update your information"
+msgstr ""
+
+#: :108 :16
+msgid "Register"
+msgstr ""
+
+#: :109
+msgid "Not registered"
+msgstr ""
+
+#: :120
+msgid "Google+"
+msgstr ""
+
+#: :124
+msgid "Facebook"
+msgstr ""
+
+#: :128
+msgid "Twitter"
+msgstr ""
+
+#: :132
+msgid "LinkedIn"
+msgstr ""
+
+#: :136
+msgid "Viadeo"
+msgstr ""
+
+#: :142
+msgid "Galette's parameters"
+msgstr ""
+
+#: :144
+msgid "Default language:"
+msgstr ""
+
+#: :160
+msgid "Lines / Page:"
+msgstr ""
+
+#: :167 :73
+msgid "After member creation:"
+msgstr ""
+
+#: :169 :75
+msgid "create a new contribution (default action)"
+msgstr ""
+
+#: :170 :76
+msgid "create a new transaction"
+msgstr ""
+
+#: :171 :77
+msgid "create another new member"
+msgstr ""
+
+#: :172 :78
+msgid "show member"
+msgstr ""
+
+#: :173 :79
+msgid "go to members list"
+msgstr ""
+
+#: :174 :80
+msgid "go to main page"
+msgstr ""
+
+#: :178
+msgid "Logging level:"
+msgstr ""
+
+#: :180
+msgid "Disabled"
+msgstr ""
+
+#: :181
+msgid "Enabled"
+msgstr ""
+
+#: :185
+msgid "Default membership status:"
+msgstr ""
+
+#: :191
+msgid "Default account filter:"
+msgstr ""
+
+#: :197
+msgid "Default membership extension:"
+msgstr ""
+
+#: :199
+msgid "(Months)"
+msgstr ""
+
+#: :202
+msgid "Beginning of membership:"
+msgstr ""
+
+#: :204
+msgid "(dd/mm)"
+msgstr ""
+
+#: :207
+msgid "Number of months offered:"
+msgstr ""
+
+#: :208
+msgid ""
+"When using the beginning of membership option; you can offer the last months "
+"of the year."
+msgstr ""
+
+#: :208
+msgid ""
+"Let's say you offer last 2 months, and have a renewal on 31th of December. "
+"All created contributions in current year will be valid until this date, but "
+"as of October, they will be valid for the entire next year."
+msgstr ""
+
+#: :212
+msgid "Public pages enabled?"
+msgstr ""
+
+#: :216
+msgid "Show public pages for"
+msgstr ""
+
+#: :218
+msgid "Everyone"
+msgstr ""
+
+#: :220
+msgid "Admin and staff only"
+msgstr ""
+
+#: :224
+msgid "Self subscription enabled?"
+msgstr ""
+
+#: :228
+msgid "Post new contribution script URI"
+msgstr ""
+
+#: :229
+msgid ""
+"Enter a script URI that would be called after adding a new contribution.<br/"
+">Script URI must be prefixed by one of '<em>galette://</em>' for Galette "
+"internal call. '<em>file://</em>' for a direct file call, '<em>get://</em>' "
+"or '<em>post://</em>' for HTTP calls (prefix will be replaced by http:// in "
+"those cases)."
+msgstr ""
+
+#: :233
+msgid "RSS feed URL"
+msgstr ""
+
+#: :234
+msgid ""
+"Enter the full URL to the RSS feed. It will be displayed on Galette desktop."
+msgstr ""
+
+#: :238
+msgid "Galette base URL"
+msgstr ""
+
+#: :239
+#, php-format
+msgid ""
+"Enter the base URL to your Galette instance. You should only change this "
+"parameter if the current page URL is not:<br/>%galette_url"
+msgstr ""
+
+#: :243
+msgid "Show identifiers"
+msgstr ""
+
+#: :244
+msgid "Display database identifiers in related windows"
+msgstr ""
+
+#: :250
+msgid "Mail settings"
+msgstr ""
+
+#: :252 :574 :102
+msgid ""
+"Application runs under demo mode. This functionnality is not enabled, sorry."
+msgstr ""
+
+#: :255
+msgid "Sender name:"
+msgstr ""
+
+#: :259
+msgid "Sender Email:"
+msgstr ""
+
+#: :263
+msgid "Reply-To Email:"
+msgstr ""
+
+#: :264
+msgid "Leave empty to use Sender Email as reply address"
+msgstr ""
+
+#: :277
+msgid "Members administrator's Email:"
+msgstr ""
+
+#: :278
+msgid "Recipient of new online registation and edition emails"
+msgstr ""
+
+#: :280
+msgid ""
+"(You can enter several emails separated with a comma. First address will be "
+"the default one.)"
+msgstr ""
+
+#: :283
+msgid "Send email to administrators?"
+msgstr ""
+
+#: :284
+msgid ""
+"Sends an email each time a new member registers online or edit his/her "
+"account"
+msgstr ""
+
+#: :288
+msgid "Wrap emails text?"
+msgstr ""
+
+#: :289
+msgid ""
+"Automatically wrap emails texts before sending. Make sure to wrap yourself "
+"if you disable that. Please note that current editing mailing will not be "
+"affected by a change."
+msgstr ""
+
+#: :294
+msgid "Activate HTML editor?"
+msgstr ""
+
+#: :295
+msgid "Should HTML editor be activated on page load ?"
+msgstr ""
+
+#: :299
+msgid "Emailing method:"
+msgstr ""
+
+#: :302
+msgid "Emailing disabled"
+msgstr ""
+
+#: :305
+msgid "PHP mail() function"
+msgstr ""
+
+#: :308
+msgid "Using a SMTP server (slower)"
+msgstr ""
+
+#: :311
+msgid "Using GMAIL as SMTP server (slower)"
+msgstr ""
+
+#: :314
+msgid "Using Sendmail server"
+msgstr ""
+
+#: :317
+msgid "Using QMAIL server"
+msgstr ""
+
+#: :327 :634
+msgid "Test email settings"
+msgstr ""
+
+#: :332
+msgid "SMTP server:"
+msgstr ""
+
+#: :336
+msgid "SMTP port:"
+msgstr ""
+
+#: :340
+msgid "Use SMTP authentication?"
+msgstr ""
+
+#: :341
+msgid ""
+"Would emailing use any SMTP authentication? You'll have to provide username "
+"and password below. For GMail, authentication will always be on."
+msgstr ""
+
+#: :345
+msgid "Use TLS for SMTP?"
+msgstr ""
+
+#: :346
+msgid ""
+"Do you want to use server's TLS capabilities?<br/>For GMail, this will "
+"always be on."
+msgstr ""
+
+#: :350
+msgid "Allow unsecure TLS?"
+msgstr ""
+
+#: :351
+msgid ""
+"Do you want to allow 'unsecure' connections? This may be usefull if you "
+"server uses a self-signed certificate, and on some other cases."
+msgstr ""
+
+#: :357
+msgid "SMTP (or GMail) user:"
+msgstr ""
+
+#: :361
+msgid "SMTP (or GMail) password:"
+msgstr ""
+
+#: :366
+msgid "Mail signature"
+msgstr ""
+
+#: :367
+msgid ""
+"The text that will be automatically set as signature for all outgoing emails."
+"<br/>Variables are quoted with braces, are upper case, and will be replaced "
+"automatically.<br/>Refer to the doc to know what variables ara available. "
+msgstr ""
+
+#: :374
+msgid "Label generation parameters"
+msgstr ""
+
+#: :376 :507
+msgid "Vertical margins:"
+msgstr ""
+
+#: :378 :383 :388 :393 :398 :403 :408 :417 :509 :514 :519 :524
+msgid "(Integer)"
+msgstr ""
+
+#: :381 :512
+msgid "Horizontal margins:"
+msgstr ""
+
+#: :386 :522
+msgid "Horizontal spacing:"
+msgstr ""
+
+#: :391 :517
+msgid "Vertical spacing:"
+msgstr ""
+
+#: :396
+msgid "Label width:"
+msgstr ""
+
+#: :401
+msgid "Label height:"
+msgstr ""
+
+#: :406
+msgid "Number of label columns:"
+msgstr ""
+
+#: :411
+msgid "Number of label lines:"
+msgstr ""
+
+#: :415
+msgid "Font size:"
+msgstr ""
+
+#: :422
+msgid "Cards generation parameters"
+msgstr ""
+
+#: :424
+msgid "Short Text (Card Center):"
+msgstr ""
+
+#: :434
+msgid "(10 characters max)"
+msgstr ""
+
+#: :437
+msgid "Long Text (Bottom Line):"
+msgstr ""
+
+#: :446
+msgid "(65 characters max)"
+msgstr ""
+
+#: :449
+msgid "Strip Text Color:"
+msgstr ""
+
+#: :450 :455 :460 :465
+msgid "Hexadecimal color notation: #RRGGBB"
+msgstr ""
+
+#: :454
+msgid "Active Member Color:"
+msgstr ""
+
+#: :459
+msgid "Board Members Color:"
+msgstr ""
+
+#: :464
+msgid "Honor Members Color:"
+msgstr ""
+
+#: :471
+msgid "Current logo for printing"
+msgstr ""
+
+#: :477
+msgid "Allow members to print card ?"
+msgstr ""
+
+#: :479
+msgid "(Members will be able to generate their own member card)"
+msgstr ""
+
+#: :482
+msgid "Show title ?"
+msgstr ""
+
+#: :484
+msgid "(Show or not title in front of name)"
+msgstr ""
+
+#: :487
+msgid "Address type:"
+msgstr ""
+
+#: :490
+msgid "MSN"
+msgstr ""
+
+#: :491
+msgid "Jabber"
+msgstr ""
+
+#: :492
+msgid "Web Site"
+msgstr ""
+
+#: :493
+msgid "ICQ"
+msgstr ""
+
+#: :494 :9
+msgid "Zip - Town"
+msgstr ""
+
+#: :495 :37 :77 :8
+msgid "Nickname"
+msgstr ""
+
+#: :496
+msgid "Profession"
+msgstr ""
+
+#: :498
+msgid "(Choose address printed below name)"
+msgstr ""
+
+#: :501
+msgid "Year:"
+msgstr ""
+
+#: :502
+msgid ""
+"You can enter either:<br/>- a year,<br/>- two years with a slash as "
+"separator,<br/>- the string 'DEADLINE' to use member deadline"
+msgstr ""
+
+#: :505
+msgid ""
+"Each card is 75mm width and 40mm height. Each page contains 2 columns and 6 "
+"rows.<br/>Double check margins and spacings ;)"
+msgstr ""
+
+#: :530
+msgid "Security parameters"
+msgstr ""
+
+#: :532 :533
+msgid "Minimum password length required for all accounts. Minimal size is 6."
+msgstr ""
+
+#: :532
+msgid "Password length:"
+msgstr ""
+
+#: :537
+msgid "Enable password blacklists"
+msgstr ""
+
+#: :537
+msgid "Enable blacklists:"
+msgstr ""
+
+#: :538
+msgid ""
+"If you enable blacklists; it will not be possible to use any of blacklisted "
+"passwords. A list is provided along with Galette, but you can add you owns."
+msgstr ""
+
+#: :542
+msgid "Enforce password strength"
+msgstr ""
+
+#: :542
+msgid "Password strength:"
+msgstr ""
+
+#: :544
+msgid "Enforce minimal password strength for all password."
+msgstr ""
+
+#: :545
+msgid "Levels are:"
+msgstr ""
+
+#: :546
+msgid "for no strength enforcement"
+msgstr ""
+
+#: :547 :556
+msgid "Weak"
+msgstr ""
+
+#: :547
+msgid "require at least one matched rule"
+msgstr ""
+
+#: :548 :557
+msgid "Medium"
+msgstr ""
+
+#: :548
+msgid "require at least two matched rules"
+msgstr ""
+
+#: :549 :558
+msgid "Strong"
+msgstr ""
+
+#: :549
+msgid "require at least three matched rules (recommended for most usages)"
+msgstr ""
+
+#: :550
+msgid "Very Strong"
+msgstr ""
+
+#: :550
+msgid "requires all rules."
+msgstr ""
+
+#: :551
+msgid ""
+"Rules include lower case characters, upper case characters, numbers, and "
+"special characters."
+msgstr ""
+
+#: :552
+msgid ""
+"Note that with any enforcement level, user cannot use his personal "
+"information (name, login, ...) as password."
+msgstr ""
+
+#: :555
+msgid "None (default)"
+msgstr ""
+
+#: :559
+msgid "Very strong"
+msgstr ""
+
+#: :563 :564
+msgid "Test a password with current selected values."
+msgstr ""
+
+#: :563
+msgid "Test a password:"
+msgstr ""
+
+#: :564
+msgid ""
+"Do not forget to save your preferences if you're happy with the result ;)"
+msgstr ""
+
+#: :572
+msgid "Admin account (independant of members)"
+msgstr ""
+
+#: :603 :50 :90 :42 :32
+msgid "NB : The mandatory fields are in"
+msgstr ""
+
+#: :603 :50 :90 :42 :32
+msgid "red"
+msgstr ""
+
+#: :634
+msgid "Enter the email adress"
+msgstr ""
+
+#: :651 :97 :123 :13 :33
+msgid "Send"
+msgstr ""
+
+#: :671
+msgid "An error occurred sending test email :("
+msgstr ""
+
+#: :3 :67
+msgid "Additionnal fields:"
+msgstr ""
+
+#: :26
+#, php-format
+msgid "Open '%s' in a new window"
+msgstr ""
+
+#: :10
+msgid "Show contributions by"
+msgstr ""
+
+#: :12 :83 :221 :85
+msgid "Begin"
+msgstr ""
+
+#: :13 :94 :222 :86
+msgid "End"
+msgstr ""
+
+#: :14
+msgid "Record"
+msgstr ""
+
+#: :16 :6
+msgid "since"
+msgstr ""
+
+#: :18 :8 :7
+msgid "until"
+msgstr ""
+
+#: :24 :36 :190
+msgid "Select"
+msgstr ""
+
+#: :26 :22 :73 :35 :302 :9
+msgid "Filter"
+msgstr ""
+
+#: :27 :23 :79 :101 :36 :303 :10
+msgid "Clear filter"
+msgstr ""
+
+#: :40
+msgid "Show all members contributions"
+msgstr ""
+
+#: :46 :27
+msgid "See member profile"
+msgstr ""
+
+#: :58 :43 :111 :48 :10 :35
+msgid "Records per page:"
+msgstr ""
+
+#: :62 :47 :21 :115 :52 :14 :13 :39
+msgid "Change"
+msgstr ""
+
+#: :72 :220 :24 :60 :128 :29 :43 :63 :126 :84 :26 :38 :27 :49 :106
+msgid "Date"
+msgstr ""
+
+#: :106 :224 :14 :89 :28
+msgid "Member"
+msgstr ""
+
+#: :118 :232 :91 :100 :7 :34 :164
+msgid "Type"
+msgstr ""
+
+#: :129 :233 :92 :29 :157 :74 :121
+msgid "Amount"
+msgstr ""
+
+#: :140 :234 :170
+msgid "Payment type"
+msgstr ""
+
+#: :151 :235 :87
+msgid "Duration"
+msgstr ""
+
+#: :154 :157 :537 :12 :9 :16 :85 :10 :11
+msgid "Actions"
+msgstr ""
+
+#: :162
+#, php-format
+msgid "Found contributions total %f"
+msgstr ""
+
+#: :192 :206
+msgid "Contribution %id"
+msgstr ""
+
+#: :201 :210
+#, php-format
+msgid "Transaction: %s"
+msgstr ""
+
+#: :243
+msgid "Print an invoice or a receipt (depending on contribution type)"
+msgstr ""
+
+#: :251
+msgid "Edit the contribution"
+msgstr ""
+
+#: :258
+msgid "Delete the contribution"
+msgstr ""
+
+#: :265 :140
+msgid "no contribution"
+msgstr ""
+
+#: :271 :170 :453 :145 :87 :16 :28 :148
+msgid "Pages:"
+msgstr ""
+
+#: :276 :457
+msgid "For the selection:"
+msgstr ""
+
+#: :279 :461 :81
+msgid "Delete"
+msgstr ""
+
+#: :286 :287 :509 :510 :152 :153
+msgid "Legend"
+msgstr ""
+
+#: :294 :543 :61
+msgid "Modification"
+msgstr ""
+
+#: :300 :553
+msgid "Deletion"
+msgstr ""
+
+#: :305
+msgid "Contribution"
+msgstr ""
+
+#: :309
+msgid "Gift"
+msgstr ""
+
+#: :320
+msgid "No contribution selected"
+msgstr ""
+
+#: :320
+msgid ""
+"Please make sure to select at least one contribution from the list to "
+"perform this action."
+msgstr ""
+
+#: :342 :616
+msgid "(Un)Check all"
+msgstr ""
+
+#: :342 :616
+msgid "Invert selection"
+msgstr ""
+
+#: :342 :616 :174 :178
+msgid "Show legend"
+msgstr ""
+
+#: :352 :196 :185 :877 :170 :257 :198 :382 :389 :510 :186 :172 :171 :179
+msgid "Select a date"
+msgstr ""
+
+#: :10
+msgid "Some details about your attendance sheet..."
+msgstr ""
+
+#: :10
+#, php-format
+msgid "%s attendees"
+msgstr ""
+
+#: :12
+msgid "Sheet type"
+msgstr ""
+
+#: :26 :44 :115 :127 :138 :270 :440 forms_types:5 forms_types:7 :98 :110 :121
+msgid "(yyyy-mm-dd format)"
+msgstr ""
+
+#: :29
+msgid "With photos?"
+msgstr ""
+
+#: :40 :54
+msgid "Generate"
+msgstr ""
+
+#: :10
+msgid "%plugin plugin installation"
+msgstr ""
+
+#: :29
+msgid "you're installing %name for the first time"
+msgstr ""
+
+#: :30
+msgid ""
+"you wish to erase an older version of of %name without keeping your data"
+msgstr ""
+
+#: :40
+msgid ""
+"you already have installed %name, and you want to upgrade to the latest "
+"version"
+msgstr ""
+
+#: :52
+msgid "You current %name version is..."
+msgstr ""
+
+#: :79
+msgid "(Errors on DROP and RENAME operations can be ignored)"
+msgstr ""
+
+#: :83
+msgid "The tables are not totally created, it may be a permission problem."
+msgstr ""
+
+#: :85
+msgid ""
+"The tables have not been totally created, it may be a permission problem."
+msgstr ""
+
+#: :87
+msgid "Your database is maybe not usable, try to restore the older version."
+msgstr ""
+
+#: :95
+msgid "Plugin '%name' has been successfully installed!"
+msgstr ""
+
+#: :97
+msgid "Plugin '%name' has been successfully updated!"
+msgstr ""
+
+#: :120
+msgid "Close"
+msgstr ""
+
+#: :122
+msgid "Back to plugins managment page"
+msgstr ""
+
+#: :132
+msgid "Access permissions to database"
+msgstr ""
+
+#: :30
+msgid "Password is valid :)"
+msgstr ""
+
+#: :33
+msgid "Password is not valid!"
+msgstr ""
+
+#: :60
+msgid "An error occured checking password :("
+msgstr ""
+
+#: :6
+msgid "Help us know about you!"
+msgstr ""
+
+#: :10
+msgid ""
+"Take a moment to share some information with us so we can know better "
+"Galette's uses."
+msgstr ""
+
+#: :13
+msgid "Send anonymous and imprecise data about your Galette instance"
+msgstr ""
+
+#: :13
+msgid "Telemetry"
+msgstr ""
+
+#: :16
+msgid "Register your organization as a Galette user"
+msgstr ""
+
+#: :18
+msgid ""
+"The panel will be automatically hidden once you have registered and send "
+"telemetry data. Check the box if you want to hide it anyways."
+msgstr ""
+
+#: :20
+msgid "Hide this panel"
+msgstr ""
+
+#: :26
+msgid "Activities"
+msgstr ""
+
+#: :56
+msgid "News"
+msgstr ""
+
+#: :69
+msgid "Show dashboard on login"
+msgstr ""
+
+#: :13 :72 :129 :60
+msgid "Sender"
+msgstr ""
+
+#: :15
+msgid "Select a sender"
+msgstr ""
+
+#: :26 :87 :131
+msgid "Subject"
+msgstr ""
+
+#: :28
+msgid "Sent mailings:"
+msgstr ""
+
+#: :30 :83 :40 :82
+msgid "Don't care"
+msgstr ""
+
+#: :40 :46
+msgid "entries"
+msgstr ""
+
+#: :40 :46
+msgid "entry"
+msgstr ""
+
+#: :63 :75 :90 :105 :66 :78 :102
+msgid "Ascendent"
+msgstr ""
+
+#: :65 :77 :92 :107 :68 :80 :104
+msgid "Descendant"
+msgstr ""
+
+#: :83 :130
+msgid "Recipients"
+msgstr ""
+
+#: :98
+msgid "Att."
+msgstr ""
+
+#: :102 :133
+msgid "Sent"
+msgstr ""
+
+#: :125
+msgid "Mailing entry %id"
+msgstr ""
+
+#: :146
+#, php-format
+msgid "Display mailing '%subject' details in preview window"
+msgstr ""
+
+#: :153
+#, php-format
+msgid "Use mailing '%subject' as a template for a new one"
+msgstr ""
+
+#: :160
+#, php-format
+msgid "Delete mailing '%subject'"
+msgstr ""
+
+#: :165
+msgid "No sent mailing has been stored in the database yet."
+msgstr ""
+
+#: :179
+msgid "Create new mailing"
+msgstr ""
+
+#: :212 :171
+msgid "An error occurred displaying preview :("
+msgstr ""
+
+#: :7
+msgid "Choose an entry"
+msgstr ""
+
+#: :15
+msgid "Reference:"
+msgstr ""
+
+#: :31
+msgid "Email Subject"
+msgstr ""
+
+#: :32
+msgid "(Max 255 characters)"
+msgstr ""
+
+#: :35
+msgid "Email Body:"
+msgstr ""
+
+#: :65
+msgid "Galette's login URI"
+msgstr ""
+
+#: :71
+msgid "Insert a carriage return"
+msgstr ""
+
+#: :73
+msgid "Insert a new blank line"
+msgstr ""
+
+#: :77
+msgid "Available with reservations"
+msgstr ""
+
+#: :82
+msgid "Member's first and last name"
+msgstr ""
+
+#: :84
+msgid "Member's email address"
+msgstr ""
+
+#: :88
+msgid "Member's last name"
+msgstr ""
+
+#: :90
+msgid "Member's first name"
+msgstr ""
+
+#: :96
+msgid "Member's login"
+msgstr ""
+
+#: :100
+msgid "Available only for new password request"
+msgstr ""
+
+#: :105
+msgid "Galette's change password URI"
+msgstr ""
+
+#: :107
+msgid "Link validity"
+msgstr ""
+
+#: :111
+msgid "Available only for new contributions"
+msgstr ""
+
+#: :116
+msgid "Member's deadline"
+msgstr ""
+
+#: :124
+msgid "Contribution type"
+msgstr ""
+
+#: :128
+msgid "Direct link for member card download"
+msgstr ""
+
+#: :130
+msgid "Direct link for invoice/receipt download"
+msgstr ""
+
+#: :134
+msgid "Available only for reminders"
+msgstr ""
+
+#: :139
+msgid "Membership remaining days"
+msgstr ""
+
+#: :141
+msgid "Membership expired since"
+msgstr ""
+
+#: :6
+msgid "Current model"
+msgstr ""
+
+#: :7
+msgid "Change model"
+msgstr ""
+
+#: :13
+msgid "Default fields"
+msgstr ""
+
+#: :15
+#, php-format
+msgid "Model parameted on %date"
+msgstr ""
+
+#: :20 :54
+msgid "Field"
+msgstr ""
+
+#: :33
+msgid "Generate empty CSV file"
+msgstr ""
+
+#: :40
+msgid "Remove model and back to defaults"
+msgstr ""
+
+#: :43
+msgid "Remove model"
+msgstr ""
+
+#: :72
+msgid "Store new model"
+msgstr ""
+
+#: :84
+msgid "Go back to import page"
+msgstr ""
+
+#: :97
+msgid "No field selected"
+msgstr ""
+
+#: :97
+msgid ""
+"Please make sure to select at least one field from the list to perform this "
+"action."
+msgstr ""
+
+#: :34
+msgid "Select an option"
+msgstr ""
+
+#: :53
+msgid "new"
+msgstr ""
+
+#: :57
+msgid "current"
+msgstr ""
+
+#: :60
+msgid "delete"
+msgstr ""
+
+#: :101
+msgid "Enter as many occurences you want."
+msgstr ""
+
+#: :109 :148
+#, php-format
+msgid "Enter up to %count more occurences."
+msgstr ""
+
+#: :118
+msgid "New occurence"
+msgstr ""
+
+#: :12
+msgid "Only checked fields will be updated."
+msgstr ""
+
+#: :14
+msgid "You are about to proceed following changes for selected members:"
+msgstr ""
+
+#: :47
+msgid "Edit"
+msgstr ""
+
+#: :47
+msgid "OK"
+msgstr ""
+
+#: :11
+msgid "%membername: edit information"
+msgstr ""
+
+#: :19
+msgid "%membername: contributions"
+msgstr ""
+
+#: :26
+msgid "%membername: remove from database"
+msgstr ""
+
+#: :35
+msgid "Log in in as %membername"
+msgstr ""
+
+#: :52 :9
+msgid "Search:"
+msgstr ""
+
+#: :53 :10
+msgid "Enter a value"
+msgstr ""
+
+#: :54 :11
+msgid "in:"
+msgstr ""
+
+#: :58
+msgid "among:"
+msgstr ""
+
+#: :66 :31 :115
+msgid "Select a group"
+msgstr ""
+
+#: :71
+msgid "Apply filters"
+msgstr ""
+
+#: :75
+msgid "Save selected criteria"
+msgstr ""
+
+#: :79 :101
+msgid "Reset all filters to defaults"
+msgstr ""
+
+#: :81
+msgid "Members that have an email address:"
+msgstr ""
+
+#: :85 :42
+msgid "With"
+msgstr ""
+
+#: :87 :44
+msgid "Without"
+msgstr ""
+
+#: :91
+msgid "Advanced search mode"
+msgstr ""
+
+#: :92
+msgid "Change search criteria"
+msgstr ""
+
+#: :94
+msgid "Change criteria"
+msgstr ""
+
+#: :96
+msgid "Save current advanced search criteria"
+msgstr ""
+
+#: :103
+msgid "Show/hide query"
+msgstr ""
+
+#: :109 :8
+msgid "members"
+msgstr ""
+
+#: :109 :8
+msgid "member"
+msgstr ""
+
+#: :129
+msgid "Mbr num"
+msgstr ""
+
+#: :179 :574 :575
+msgid "Is a company"
+msgstr ""
+
+#: :184 :568 :569
+msgid "Is a man"
+msgstr ""
+
+#: :189
+msgid "Is a women"
+msgstr ""
+
+#: :197 :472 :561
+msgid "Mail"
+msgstr ""
+
+#: :205 :563 :5
+msgid "Website"
+msgstr ""
+
+#: :286
+msgid "No member has been found"
+msgstr ""
+
+#: :466
+msgid "Mass change"
+msgstr ""
+
+#: :484 :20
+msgid "Generate labels"
+msgstr ""
+
+#: :489
+msgid "Generate Member Cards"
+msgstr ""
+
+#: :495
+msgid "Export as CSV"
+msgstr ""
+
+#: :514
+msgid "Reading the list"
+msgstr ""
+
+#: :518
+msgid "Active account"
+msgstr ""
+
+#: :520
+msgid "Inactive account"
+msgstr ""
+
+#: :524
+msgid "Membership in order"
+msgstr ""
+
+#: :526
+msgid "Membership will expire soon (&lt;30d)"
+msgstr ""
+
+#: :532
+msgid "Lateness in fee"
+msgstr ""
+
+#: :558
+msgid "User status/interactions"
+msgstr ""
+
+#: :562
+msgid "Send an email"
+msgstr ""
+
+#: :564
+msgid "Visit website"
+msgstr ""
+
+#: :570 :571
+msgid "Is a woman"
+msgstr ""
+
+#: :596
+msgid "No member selected"
+msgstr ""
+
+#: :596
+msgid ""
+"Please make sure to select at least one member from the list to perform this "
+"action."
+msgstr ""
+
+#: :635
+msgid ""
+"A mailing already exists. Do you want to create a new one or resume the "
+"existing?"
+msgstr ""
+
+#: :645
+msgid "Resume"
+msgstr ""
+
+#: :649
+msgid "New"
+msgstr ""
+
+#: :680
+msgid "Search title"
+msgstr ""
+
+#: :853
+msgid "Attendance sheet details"
+msgstr ""
+
+#: :881
+msgid "An error occurred displaying attendance sheet details interface :("
+msgstr ""
+
+#: :9 :25 :26 :59 :136
+msgid "Creation date"
+msgstr ""
+
+#: :27
+msgid "Search parameters"
+msgstr ""
+
+#: :28
+msgid "Show parameters"
+msgstr ""
+
+#: :43
+msgid "Load saved search"
+msgstr ""
+
+#: :51
+msgid "Delete saved search"
+msgstr ""
+
+#: :56
+msgid "no search"
+msgstr ""
+
+#: :6
+msgid "Application error"
+msgstr ""
+
+#: :11
+msgid "Details"
+msgstr ""
+
+#: :13
+msgid "Type:"
+msgstr ""
+
+#: :17
+msgid "Code:"
+msgstr ""
+
+#: :21 :81 :112 :45
+msgid "Message:"
+msgstr ""
+
+#: :25
+msgid "File:"
+msgstr ""
+
+#: :29
+msgid "Line:"
+msgstr ""
+
+#: :34
+msgid "Trace"
+msgstr ""
+
+#: :7
+msgid "Fields in list"
+msgstr ""
+
+#: :14 :38 :86 :16 :25
+msgid "Field name"
+msgstr ""
+
+#: :18 :42 :6 :37
+msgid "Permissions"
+msgstr ""
+
+#: :18 :42 :37
+#, php-format
+msgid "Change '%field' permissions"
+msgstr ""
+
+#: :19 :43 :39
+msgid "Inaccessible"
+msgstr ""
+
+#: :23 :47 :43
+msgid "Read only"
+msgstr ""
+
+#: :24 :48 :44
+msgid "Read/Write"
+msgstr ""
+
+#: :31
+msgid "Available fields"
+msgstr ""
+
+#: :5
+msgid ""
+"Each selected export will be stored into a separate file in the exports "
+"directory."
+msgstr ""
+
+#: :10
+msgid "The following files have been written on disk:"
+msgstr ""
+
+#: :21
+msgid "Existing exports"
+msgstr ""
+
+#: :23
+msgid "The following exports already seems to exist on the disk:"
+msgstr ""
+
+#: :30 :46 :27 :41
+msgid "Size"
+msgstr ""
+
+#: :55 :50
+#, php-format
+msgid "Remove '%file' from disk"
+msgstr ""
+
+#: :66
+msgid "Parameted exports"
+msgstr ""
+
+#: :69
+msgid "Which parameted export(s) do you want to run?"
+msgstr ""
+
+#: :75 :87 :110 :130 :8 :22 :59 :107
+msgid "Description"
+msgstr ""
+
+#: :95
+msgid "No parameted exports are available."
+msgstr ""
+
+#: :101
+msgid "Galette tables exports"
+msgstr ""
+
+#: :103
+msgid "Additionnaly, which table(s) do you want to export?"
+msgstr ""
+
+#: :107
+msgid "Table name"
+msgstr ""
+
+#: :126
+msgid "Continue"
+msgstr ""
+
+#: :20
+msgid "Members by status"
+msgstr ""
+
+#: :33
+msgid "Members by state of dues"
+msgstr ""
+
+#: :46
+msgid "Contributions types repartition"
+msgstr ""
+
+#: :59
+msgid "Individuals and Companies"
+msgstr ""
+
+#: :72
+msgid "Contributions over time"
+msgstr ""
+
+#: :16
+msgid "Select an user"
+msgstr ""
+
+#: :25 :99 :129
+msgid "Action"
+msgstr ""
+
+#: :27
+msgid "Select an action"
+msgstr ""
+
+#: :75 :127
+msgid "IP"
+msgstr ""
+
+#: :87 :128
+msgid "User"
+msgstr ""
+
+#: :116
+msgid "No log found"
+msgstr ""
+
+#: :123
+msgid "History entry %id"
+msgstr ""
+
+#: :138
+msgid "logs are empty"
+msgstr ""
+
+#: :159
+msgid "Show associated query"
+msgstr ""
+
+#: :8
+msgid "Transaction details"
+msgstr ""
+
+#: :17 :49 :47
+msgid "-- select a name --"
+msgstr ""
+
+#: :34 :35 :152 :153
+msgid "Select a contribution type to create for dispatch transaction"
+msgstr ""
+
+#: :34 :152
+msgid "Dispatch type:"
+msgstr ""
+
+#: :55
+msgid "Attached contributions"
+msgstr ""
+
+#: :62 :54
+msgid "Create a new fee that will be attached to the current transaction"
+msgstr ""
+
+#: :69 :61
+msgid "Create a new donation that will be attached to the current transaction"
+msgstr ""
+
+#: :77
+msgid ""
+"Select an existing contribution in the database, and attach it to the "
+"current transaction"
+msgstr ""
+
+#: :100
+msgid "Dispatched amount:"
+msgstr ""
+
+#: :105
+msgid "Not dispatched amount:"
+msgstr ""
+
+#: :134
+msgid "Detach contribution from this transaction"
+msgstr ""
+
+#: :147 :179 :152
+msgid "No member registered!"
+msgstr ""
+
+#: :149 :181 :154
+msgid "Unfortunately, there is no member in your database yet,"
+msgstr ""
+
+#: :151 :183 :156
+msgid "please create a member"
+msgstr ""
+
+#: :175 :204 :250 :306 :203 :263 :316
+msgid "An error occurred displaying members interface :("
+msgstr ""
+
+#: :182
+msgid "Contributions selection"
+msgstr ""
+
+#: :217 :239
+msgid "An error occurred displaying contributions :("
+msgstr ""
+
+#: :250
+msgid "Click on a contribution row to attach it to the current transaction"
+msgstr ""
+
+#: :4 :9 :53 :81
+msgid "Informations"
+msgstr ""
+
+#: :5 :50
+msgid "Managers"
+msgstr ""
+
+#: :26 :34
+msgid "Parent group:"
+msgstr ""
+
+#: :70
+msgid "Manage members"
+msgstr ""
+
+#: :71
+msgid "Manage managers"
+msgstr ""
+
+#: :84
+msgid "Current group (and attached people) as PDF"
+msgstr ""
+
+#: :86
+msgid "Group PDF"
+msgstr ""
+
+#: :10
+msgid ""
+"Your browser version is way too old and no longer supported in Galette for a "
+"while."
+msgstr ""
+
+#: :11
+msgid ""
+"Please update your browser or use an alternative one, like Mozilla Firefox "
+"(http://mozilla.org)."
+msgstr ""
+
+#: :21
+msgid "Sorry, the page you are looking for could not be found."
+msgstr ""
+
+#: :25 :57
+msgid "Home"
+msgstr ""
+
+#: :10
+msgid "Configure import model"
+msgstr ""
+
+#: :15
+msgid "Existing files"
+msgstr ""
+
+#: :21
+msgid "The following files seems ready to import on the disk:"
+msgstr ""
+
+#: :36
+msgid "see"
+msgstr ""
+
+#: :58
+msgid "Run the import process, but do *not* store anything in the database"
+msgstr ""
+
+#: :58
+msgid "Dry run"
+msgstr ""
+
+#: :62
+msgid "Import"
+msgstr ""
+
+#: :66
+msgid "No import file actually exists."
+msgstr ""
+
+#: :66
+msgid ""
+"Use upload form below to send a new file on server, or copy it directly in "
+"the imports directory."
+msgstr ""
+
+#: :73
+msgid "Upload new file"
+msgstr ""
+
+#: :76
+msgid "Select a file:"
+msgstr ""
+
+#: :82
+msgid "Upload file"
+msgstr ""
+
+#: :99
+msgid "No file selected"
+msgstr ""
+
+#: :99
+msgid "Please make sure to select one file to import."
+msgstr ""
+
+#: :118
+msgid "No file to upload"
+msgstr ""
+
+#: :118
+msgid "Please make sure to select one file to upload."
+msgstr ""
+
+#: :12
+#, php-format
+msgid "Edit field %field"
+msgstr ""
+
+#: :18
+msgid "Permissions:"
+msgstr ""
+
+#: :25
+msgid "Required:"
+msgstr ""
+
+#: :34
+msgid "Width:"
+msgstr ""
+
+#: :40
+msgid "Height:"
+msgstr ""
+
+#: :46
+msgid "Size:"
+msgstr ""
+
+#: :49
+msgid "Maximum file size, in Ko."
+msgstr ""
+
+#: :51
+msgid "Maximum number of characters."
+msgstr ""
+
+#: :57
+msgid "Repeat:"
+msgstr ""
+
+#: :59
+msgid "Number of values or zero if infinite."
+msgstr ""
+
+#: :64
+msgid "Values:"
+msgstr ""
+
+#: :66
+msgid "Choice list (one entry per line)."
+msgstr ""
+
+#: :78 :81
+msgid "New dynamic field"
+msgstr ""
+
+#: :90
+msgid "Visibility"
+msgstr ""
+
+#: :110 :8 :17 :31
+msgid "Required"
+msgstr ""
+
+#: :119 :11 :48 :27 :31
+msgid "Add"
+msgstr ""
+
+#: :37
+msgid "Load following members..."
+msgstr ""
+
+#: :55 :95
+msgid "An error occurred retrieving members :("
+msgstr ""
+
+#: :77
+msgid "Load previous members..."
+msgstr ""
+
+#: :12
+msgid "Mailing information"
+msgstr ""
+
+#: :17
+msgid "Go back to members list"
+msgstr ""
+
+#: :20
+msgid "Manage selected members"
+msgstr ""
+
+#: :38
+msgid "Existing attachments:"
+msgstr ""
+
+#: :43 :315
+msgid "Remove attachment"
+msgstr ""
+
+#: :51
+msgid "Select attachments"
+msgstr ""
+
+#: :51
+msgid "Add attachment"
+msgstr ""
+
+#: :52
+msgid ""
+"Select files to add as attachments.<br/>Multiple file selection using 'ctrl' "
+"or 'shift' keys are only available on compatible browsers."
+msgstr ""
+
+#: :58
+msgid "Write your mailing"
+msgstr ""
+
+#: :64
+msgid "current logged in user"
+msgstr ""
+
+#: :66
+msgid "other"
+msgstr ""
+
+#: :76 :110
+msgid "Object:"
+msgstr ""
+
+#: :80
+msgid "(De)Activate HTML editor"
+msgstr ""
+
+#: :86
+msgid "Interpret HTML"
+msgstr ""
+
+#: :89
+msgid "Preview"
+msgstr ""
+
+#: :101 :124
+msgid "Cancel mailing"
+msgstr ""
+
+#: :108
+msgid "Preview your mailing"
+msgstr ""
+
+#: :122
+msgid "Modifiy mailing"
+msgstr ""
+
+#: :211
+msgid "Members selection"
+msgstr ""
+
+#: :315
+msgid "Are you sure you want to remove this attachment?"
+msgstr ""
+
+#: :315
+msgid "This will immediately remove attachment from disk and cannot be undo."
+msgstr ""
+
+#: :8
+msgid "Short form:"
+msgstr ""
+
+#: :12
+msgid "Long form:"
+msgstr ""
+
+#: :6
+msgid "Core data"
+msgstr ""
+
+#: :9
+msgid "Number of members:"
+msgstr ""
+
+#: :13 :14
+msgid "Add photos for members."
+msgstr ""
+
+#: :13 :14
+msgid ""
+"Each photos mays take a long time to be retrieved. Use this only with a few "
+"members!"
+msgstr ""
+
+#: :13
+msgid "Add members photos"
+msgstr ""
+
+#: :18
+msgid "Number of groups:"
+msgstr ""
+
+#: :22 :23
+msgid "Maximum number of contributions to generate for reach member"
+msgstr ""
+
+#: :22
+msgid "Number of contributions:"
+msgstr ""
+
+#: :27
+msgid "Number of transactions:"
+msgstr ""
+
+#: :35
+msgid "Generate some predefined dynamic fields"
+msgstr ""
+
+#: :9
+msgid "Headers"
+msgstr ""
+
+#: :11
+msgid "From:"
+msgstr ""
+
+#: :13
+msgid "To:"
+msgstr ""
+
+#: :24 :41
+msgid "Subject:"
+msgstr ""
+
+#: :26
+msgid "Attachments:"
+msgstr ""
+
+#: :37
+msgid "Mail body"
+msgstr ""
+
+#: :30 :92
+#, php-format
+msgid "Edit '%s' field"
+msgstr ""
+
+#: :37
+#, php-format
+msgid "Translate '%s' field"
+msgstr ""
+
+#: :44 :99
+#, php-format
+msgid "Delete '%s' field"
+msgstr ""
+
+#: :54
+#, php-format
+msgid "Move up '%s' field"
+msgstr ""
+
+#: :65
+#, php-format
+msgid "Move down '%s' field"
+msgstr ""
+
+#: :73
+#, php-format
+msgid "There is not yet any dynamic field configured for '%formname'"
+msgstr ""
+
+#: :1
+msgid "Ajax page content"
+msgstr ""
+
+#: :15
+msgid "Header"
+msgstr ""
+
+#: :19
+msgid "Footer"
+msgstr ""
+
+#: :24
+msgid "Body"
+msgstr ""
+
+#: :29
+msgid "CSS styles"
+msgstr ""
+
+#: :37
+msgid "Invoice"
+msgstr ""
+
+#: :38
+msgid "Receipt"
+msgstr ""
+
+#: :39
+msgid "Adhesion Form"
+msgstr ""
+
+#: :13
+msgid "Cascade delete"
+msgstr ""
+
+#: :14
+msgid "Delete all associated data"
+msgstr ""
+
+#: :18
+msgid "Are you sure you want to proceed?"
+msgstr ""
+
+#: :18
+msgid "This can't be undone."
+msgstr ""
+
+#: :20
+msgid "Remove"
+msgstr ""
+
+#: :10
+msgid "Related transaction information"
+msgstr ""
+
+#: :15
+msgid "View transaction"
+msgstr ""
+
+#: :17
+msgid "[view]"
+msgstr ""
+
+#: :30
+msgid "Not dispatched amount"
+msgstr ""
+
+#: :46 :44
+msgid "Select contributor and membership fee type"
+msgstr ""
+
+#: :48 :44
+msgid "Select contributor and donation type"
+msgstr ""
+
+#: :56
+msgid "New attached fee"
+msgstr ""
+
+#: :63
+msgid "New attached donation"
+msgstr ""
+
+#: :71
+msgid "Search for name or ID and pick member"
+msgstr ""
+
+#: :92 :70
+msgid "Reload"
+msgstr ""
+
+#: :92
+msgid ""
+"Reload date information according to selected member and contribution type"
+msgstr ""
+
+#: :99 :77
+msgid "Details of membership fee"
+msgstr ""
+
+#: :99 :77
+msgid "Details of donation"
+msgstr ""
+
+#: :112 :95
+msgid "Record date:"
+msgstr ""
+
+#: :134 :117
+msgid "months"
+msgstr ""
+
+#: :150
+msgid "Transaction related"
+msgstr ""
+
+#: :162 :133
+msgid "Notify member"
+msgstr ""
+
+#: :164 :135
+msgid "Member will receive a notification by email, if he has an address."
+msgstr ""
+
+#: :221
+msgid "An error occurred retrieving dates :("
+msgstr ""
+
+#: :236
+msgid "Contribution amount should be greater than %max"
+msgstr ""
+
+#: :4
+msgid ""
+"This page shows only members who have choosen to be visible on the public "
+"lists and are up-to-date within their contributions. If you want your "
+"account to be visible here, edit your profile and check 'Be visible in the "
+"members list'"
+msgstr ""
+
+#: :91 :32
+msgid "No member to show"
+msgstr ""
+
+#: :6
+msgid "New password:"
+msgstr ""
+
+#: :10
+msgid "Confirmation:"
+msgstr ""
+
+#: :14
+msgid "(at least 4 characters)"
+msgstr ""
+
+#: :17
+msgid "Change my password"
+msgstr ""
+
+#: :8
+msgid "Previous"
+msgstr ""
+
+#: :12
+msgid "Next"
+msgstr ""
+
+#: :24
+msgid "Generate members's card"
+msgstr ""
+
+#: :28
+msgid "Generate Member Card"
+msgstr ""
+
+#: :37
+msgid "Adhesion form"
+msgstr ""
+
+#: :45
+msgid ""
+"Send member a link to generate a new passord, as if had used the 'lost "
+"password' functionnality."
+msgstr ""
+
+#: :49
+msgid "New password"
+msgstr ""
+
+#: :58
+msgid "Edit member"
+msgstr ""
+
+#: :68
+msgid "View member's contributions"
+msgstr ""
+
+#: :72
+msgid "View contributions"
+msgstr ""
+
+#: :96
+msgid "Create a new member with %name information."
+msgstr ""
+
+#: :100
+msgid "Duplicate"
+msgstr ""
+
+#: :115
+msgid "Family"
+msgstr ""
+
+#: :118 :36
+msgid "Attached to:"
+msgstr ""
+
+#: :124 :57
+msgid "Parent of:"
+msgstr ""
+
+#: :197 forms_types:8
+msgid "Picture"
+msgstr ""
+
+#: :198
+msgid "You can drop new image here to get photo changed"
+msgstr ""
+
+#: :205 forms_types:2
+msgid "Groups:"
+msgstr ""
+
+#: :212
+msgid "[member]"
+msgstr ""
+
+#: :228 :135
+msgid "Back to top"
+msgstr ""
+
+#: :238
+msgid "Not managed group"
+msgstr ""
+
+#: :238
+msgid "You are not part of managers for the requested group."
+msgstr ""
+
+#: :6
+msgid "Simple search"
+msgstr ""
+
+#: :17
+msgid "Membership status"
+msgstr ""
+
+#: :23
+msgid "Account activity"
+msgstr ""
+
+#: :29
+msgid "Member of group"
+msgstr ""
+
+#: :38
+msgid "With email:"
+msgstr ""
+
+#: :52
+msgid "Birth date"
+msgstr ""
+
+#: :53 :60 :67 :74 :137 :144 :151 :158
+msgid "beetween"
+msgstr ""
+
+#: :66
+msgid "Modification date"
+msgstr ""
+
+#: :73
+msgid "Due date"
+msgstr ""
+
+#: :80
+msgid "Show public infos"
+msgstr ""
+
+#: :89
+msgid "Statuts"
+msgstr ""
+
+#: :97
+msgid "Advanced groups search"
+msgstr ""
+
+#: :97
+msgid "Experimental"
+msgstr ""
+
+#: :104
+msgid "Add new group search criteria"
+msgstr ""
+
+#: :108
+msgid "In all selected groups"
+msgstr ""
+
+#: :109
+msgid "In any of selected groups"
+msgstr ""
+
+#: :125 :294
+msgid "Remove criteria"
+msgstr ""
+
+#: :133
+msgid "Within contributions"
+msgstr ""
+
+#: :143
+msgid "Begin date"
+msgstr ""
+
+#: :150
+msgid "End date"
+msgstr ""
+
+#: :202
+msgid "Free search"
+msgstr ""
+
+#: :209
+msgid "Add new free search criteria"
+msgstr ""
+
+#: :217
+msgid "or"
+msgstr ""
+
+#: :220
+msgid "Select a field"
+msgstr ""
+
+#: :253 :265 :273 :279 :311
+msgid "is"
+msgstr ""
+
+#: :254 :281 :313
+msgid "is not"
+msgstr ""
+
+#: :266 :317
+msgid "before"
+msgstr ""
+
+#: :267 :318
+msgid "after"
+msgstr ""
+
+#: :280 :312
+msgid "contains"
+msgstr ""
+
+#: :282 :314
+msgid "do not contains"
+msgstr ""
+
+#: :283 :315
+msgid "starts with"
+msgstr ""
+
+#: :284 :316
+msgid "ends with"
+msgstr ""
+
+#: :6
+msgid "Please confirm your email address:"
+msgstr ""
+
+#: :9
+msgid "Get my document"
+msgstr ""
+
+#: :5 :85
+msgid "Collapse all"
+msgstr ""
+
+#: :31
+#, php-format
+msgid "Field '%field' cannot be set as required."
+msgstr ""
+
+#: :31
+#, php-format
+msgid "Mark '%field' as (not) required"
+msgstr ""
+
+#: :84
+msgid "Expand all"
+msgstr ""
+
+#: :162
+msgid "Warning"
+msgstr ""
+
+#: :162
+msgid "Some warnings has been thrown:"
+msgstr ""
+
+#: :162
+msgid "Please correct above warnings to continue."
+msgstr ""
+
+#: :4 :17
+msgid "Active plugins"
+msgstr ""
+
+#: :9 :23
+msgid "Author"
+msgstr ""
+
+#: :10 :24
+msgid "Version"
+msgstr ""
+
+#: :11 :25
+msgid "Release date"
+msgstr ""
+
+#: :32
+msgid "Click here to deactivate plugin '%name'"
+msgstr ""
+
+#: :41
+msgid "Initialize '%name' database"
+msgstr ""
+
+#: :50
+msgid "No active plugin."
+msgstr ""
+
+#: :54
+msgid "Inactive plugins"
+msgstr ""
+
+#: :59 :66
+msgid "Cause"
+msgstr ""
+
+#: :68
+msgid "A required file is missing"
+msgstr ""
+
+#: :70
+msgid "Incompatible with current version"
+msgstr ""
+
+#: :72
+msgid "Explicitely disabled"
+msgstr ""
+
+#: :74
+msgid "Unknown"
+msgstr ""
+
+#: :83
+msgid "Activate plugin '%name'"
+msgstr ""
+
+#: :90
+msgid "No inactive plugin."
+msgstr ""
+
+#: :107
+msgid "Plugin database initialization: %name"
+msgstr ""
+
+#: :154 :172
+msgid ""
+"An error occurred displaying plugin database initialization interface :("
+msgstr ""
+
+#: :19
+msgid "New group"
+msgstr ""
+
+#: :26
+msgid "Group information"
+msgstr ""
+
+#: :32 :31
+msgid "no group"
+msgstr ""
+
+#: :38
+msgid "Export all groups and their members as PDF"
+msgstr ""
+
+#: :39
+msgid "All groups PDF"
+msgstr ""
+
+#: :90
+msgid "An error occurred reordering groups :("
+msgstr ""
+
+#: :127
+msgid "An error occurred loading selected group :("
+msgstr ""
+
+#: :137
+msgid "Add a new group"
+msgstr ""
+
+#: :142
+msgid "Create"
+msgstr ""
+
+#: :159
+msgid "The group name you have requested already exists in the database."
+msgstr ""
+
+#: :166
+msgid "An error occurred checking name uniqueness :("
+msgstr ""
+
+#: :170
+msgid "Pleade provide a group name"
+msgstr ""
+
+#: :212
+msgid "Group members selection"
+msgstr ""
+
+#: :214
+msgid "Group managers selection"
+msgstr ""
+
+#: :18 :22 :29 :33
+msgid "[W]"
+msgstr ""
+
+#: :20 :31
+msgid "[M]"
+msgstr ""
+
+#: :27 :38
+msgid "[admin]"
+msgstr ""
+
+#: :29 :40 :68
+msgid "[staff]"
+msgstr ""
+
+#: :41
+msgid "No member attached"
+msgstr ""
+
+#: :43
+msgid "No manager attached"
+msgstr ""
+
+#: :8
+msgid "Documentation"
+msgstr ""
+
+#: :9
+msgid "Choose label to translate"
+msgstr ""
+
+#: :21
+#, php-format
+msgid "Original text: '%s'"
+msgstr ""
+
+#: :26
+#, php-format
+msgid "Translation of '%s' label"
+msgstr ""
+
+#: :43
+msgid "No fields to translate."
+msgstr ""
+
+#: :50
+msgid "no member"
+msgstr ""
+
+#: :56
+msgid "Selected members"
+msgstr ""
+
+#: :64
+msgid "No members has been selected yet."
+msgstr ""
+
+#: :75 :47
+msgid "Validate"
+msgstr ""
+
+#: :60
+msgid "An error occurred sending photo :("
+msgstr ""
+
+#: :14 :33 :75
+msgid "Priority"
+msgstr ""
+
+#: :24
+msgid "New status"
+msgstr ""
+
+#: :26
+msgid "New contribution type"
+msgstr ""
+
+#: :60
+#, php-format
+msgid "%s field"
+msgstr ""
+
+#: :5
+msgid "Show transactions since"
+msgstr ""
+
+#: :22
+msgid "Show all members transactions"
+msgstr ""
+
+#: :62 :109
+msgid "Originator"
+msgstr ""
+
+#: :102
+msgid "Transaction %id"
+msgstr ""
+
+#: :129
+msgid "Edit transaction #%id"
+msgstr ""
+
+#: :136
+msgid "Remove transaction #%id"
+msgstr ""
+
+#: :142
+msgid "no transaction"
+msgstr ""
+
+#: :157
+msgid "Completely dispatched transaction"
+msgstr ""
+
+#: :161
+msgid "Uncomplete dispatched transaction"
+msgstr ""
+
+#: forms_types:19
+msgid "Password confirmation:"
+msgstr ""
+
+#: forms_types:6
+msgid "Is company?"
+msgstr ""
+
+#: forms_types:7
+msgid "Is member a company?"
+msgstr ""
+
+#: forms_types:8
+msgid ""
+"Do you manage a non profit organization, or a company? If you do so, check "
+"the box, and then enter its name in the field that will appear."
+msgstr ""
+
+#: forms_types:6
+msgid "Not supplied"
+msgstr ""
+
+#: forms_types:6
+msgid "Manage user's groups"
+msgstr ""
+
+#: forms_types:12
+msgid "Manage user's managed groups"
+msgstr ""
+
+#: forms_types:40 :254
+msgid "Member of:"
+msgstr ""
+
+#: forms_types:52 :252
+msgid "Manager for:"
+msgstr ""
+
+#: forms_types:7
+msgid ""
+"A link will be sent to you if you have provided an email address. Otherwise, "
+"you can use this password to login, and we recommend you to change it as "
+"soon as possible."
+msgstr ""
+
+#: forms_types:14
+msgid "Password image"
+msgstr ""
+
+#: forms_types:2
+msgid "Picture:"
+msgstr ""
+
+#: :3
+msgid ""
+"Telemetry data are <strong>anonymous</strong>; nothing about your "
+"organization or its members will be sent."
+msgstr ""
+
+#: :4
+msgid ""
+"Nothing is automated in the process; it's up to you to send (or resend) data."
+msgstr ""
+
+#: :4
+msgid ""
+"You can review below the raw data that would be send if you press the 'Send' "
+"button."
+msgstr ""
+
+#: :4
+msgid ""
+"Also note tha all data is sent over a <strong>HTTPS secured connection</"
+"strong>."
+msgstr ""
+
+#: :11
+msgid "Send telemetry information"
+msgstr ""
+
+#: :39
+msgid "An error occurred sending telemetry information :("
+msgstr ""
+
+#: :17
+msgid "Add payment type"
+msgstr ""
+
+#: :20
+msgid "Label"
+msgstr ""
+
+#: :43
+#, php-format
+msgid "%s payment type"
+msgstr ""
+
+#: :54
+#, php-format
+msgid "Edit '%s' payment type"
+msgstr ""
+
+#: :72
+#, php-format
+msgid "Delete '%s' payment type"
+msgstr ""
+
+#: :10
+msgid "Related transaction informations"
+msgstr ""
+
+#: :70
+msgid ""
+"Reload date informations according to selected member and contribution type"
+msgstr ""
+
+#: :195
+msgid "An error occured retrieving dates :("
+msgstr ""
+
+#: :6
+msgid "By %name"
+msgstr ""
+
+#: :15
+msgid "Version:"
+msgstr ""
+
+#: :19
+msgid "Author:"
+msgstr ""
+
+#: :21
+msgid "Path:"
+msgstr ""
+
+#: :23
+msgid "Main route:"
+msgstr ""
+
+#: :25
+msgid "ACLs"
+msgstr ""
+
+#: :29
+msgid "Route"
+msgstr ""
+
+#: :30
+msgid "ACL"
+msgstr ""
+
+#: :38
+msgid "No ACLs!"
+msgstr ""
+
+#: :44
+msgid "Raw information"
+msgstr ""
+
+#: :39
+msgid "View your member card"
+msgstr ""
+
+#: :67
+msgid "Subscribe"
+msgstr ""
+
+#: :77
+msgid "Lost your password?"
+msgstr ""
+
+#: :101
+msgid "Public page content"
+msgstr ""
+
+#: :5
+#, php-format
+msgid "Your message has been sent to <strong>%s members</strong>"
+msgstr ""
+
+#: :7
+#, php-format
+msgid "You are about to send an e-mail to <strong>%s members</strong>"
+msgstr ""
+
+#: :11
+msgid "None of the selected members has an email address."
+msgstr ""
+
+#: :13
+msgid "No member selected (yet)."
+msgstr ""
+
+#: :18
+msgid "unreachable members:"
+msgstr ""
+
+#: :18
+msgid "unreachable member:"
+msgstr ""
+
+#: :19
+msgid ""
+"Some members you have selected have no e-mail address. However, you can "
+"generate envelope labels to contact them by snail mail."
+msgstr ""
+
+#: :9
+msgid "Manager(s)"
+msgstr ""
+
+#: :28
+msgid "%membercount members"
+msgstr ""
+
+#: :36
+msgid "Selected groups"
+msgstr ""
+
+#: :44
+msgid "No groups has been selected yet."
+msgstr ""
+
+#: :28
+msgid "- WARNING -"
+msgstr ""
+
+#: :40
+msgid ""
+"You will be redirected in %timeout seconds. If not, please click on the "
+"following link:"
+msgstr ""
+
+#: :41
+msgid "Do not wait timeout and go to the next page now :)"
+msgstr ""
+
+#: :66
+msgid "Your telemetry data are more than one year old."
+msgstr ""
+
+#: :67
+msgid "Do you want to send it again?"
+msgstr ""
+
+#: :70
+msgid "Later"
+msgstr ""
+
+#: :6
+msgid "Choose wich reminder(s) you want to send:"
+msgstr ""
+
+#: :12 :19
+msgid "preview"
+msgstr ""
+
+#: :13 :20
+#, php-format
+msgid "%s members with an email address"
+msgstr ""
+
+#: :14 :21
+#, php-format
+msgid "%s members without email address"
+msgstr ""
+
+#: :25
+msgid "Generate labels for late members without email address"
+msgstr ""
+
+#: :68
+msgid "No reminder selected"
+msgstr ""
+
+#: :68
+msgid "Please make sure to select at least one reminder."
+msgstr ""
+
+#: :21
+msgid "Account registered!"
+msgstr ""
+
+#: :24
+msgid "Your subscription has been registered."
+msgstr ""
+
+#: :26
+msgid ""
+"Your subscription has been registered, you will receive a recapitulative "
+"email soon (remember to check your spam box ;) )."
+msgstr ""
+
+#: :28
+msgid "You'll be redirected to the login page in a few seconds"
+msgstr ""
+
+#: :39
+msgid "Detach?"
+msgstr ""
+
+#: :44
+msgid "Attach member"
+msgstr ""
+
+#: :88
+msgid "Notify member his account has been modified"
+msgstr ""
+
+#: :90
+msgid "Notify member his account has been created"
+msgstr ""
+
+#: :96
+msgid "Member will be notified by email his account has been modified."
+msgstr ""
+
+#: :98
+msgid ""
+"Member will receive his username and password by email, if he has an address."
+msgstr ""
+
+#: :211
+msgid "An error occurred displaying groups interface :("
+msgstr ""
+
+#: :218
+msgid "Groups selection"
+msgstr ""
+
+#: :220
+msgid "Managed groups selection"
+msgstr ""
+
+#: :53
+msgid "This comment is only displayed for admins and staff members."
+msgstr ""
+
+#: :56
+msgid "This comment is reserved to the member."
+msgstr ""
+
+#: :80
+msgid "Do member want to appear publically?"
+msgstr ""
+
+#: :81
+msgid ""
+"If you check this box (and if you are up to date with your contributions), "
+"your full name, website address ad other information will be publically "
+"visible on the members list.<br/>If you've uploaded a photo, it will be "
+"displayed on the trombinoscope page.<br/>Note that administrators can "
+"disabled public pages, this setting will have no effect in that case."
+msgstr ""
+
+#: :85
+msgid "(at least %i characters)"
+msgstr ""
+
+#: :9 :21 :51
+msgid "Short form"
+msgstr ""
+
+#: :10 :24 :52
+msgid "Long form"
+msgstr ""
+
+#: :18
+msgid "Add title"
+msgstr ""
+
+#: :47
+#, php-format
+msgid "%s title"
+msgstr ""
+
+#: :59
+#, php-format
+msgid "Edit '%s' title"
+msgstr ""
+
+#: :69
+#, php-format
+msgid "Delete '%s' title"
+msgstr ""
index c485bed367dbfaa7e2de961ddc7b617df02fd3f7..bc1b5e7465a68a7339730ef1506b7723106cf57d 100644 (file)
@@ -3481,7 +3481,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
index f3dcb1231790701ef211a5d8286258fd68d08914..ac252472ec6312dadf578d12cf7b2c65c23be486 100644 (file)
@@ -3488,7 +3488,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr "Pagina d'acuèlh"
 
index e045bad2bd4ac2a6b0ecc9ab6692e70189e0f607..b5ecfe08314c935ea6eacd0d1ac526c52484c88c 100644 (file)
@@ -3469,7 +3469,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
index 9c7772cc7f9ef9e5594f3f94e1184e2bec744c6a..ad599f4dd89530fdbd24cbcf0b89fe9ff5dcf551 100644 (file)
@@ -3478,7 +3478,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
index 0acc450d83e3854cc69346c792851bfa2cf73b87..3240da73b1fb346005f85cedc94dabfbff249c86 100644 (file)
@@ -3494,7 +3494,11 @@ msgstr ""
 msgid "Galette has been successfully updated!"
 msgstr ""
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr ""
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr ""
 
index cb6a3af0a484444982d5dcf212641d7a9c588d5f..1a00a52111d88d2397aef5fc5411a0e82dfe0d70 100644 (file)
@@ -3583,7 +3583,11 @@ msgstr "Galette успішно встановлено!"
 msgid "Galette has been successfully updated!"
 msgstr "Galette успішно оновлено!"
 
-#: ../install/steps/end.php:53
+#: ../install/steps/end.php:51
+msgid "To secure the system, please delete the install directory"
+msgstr "Щоб захистити систему, видаліть каталог установлення"
+
+#: ../install/steps/end.php:54
 msgid "Homepage"
 msgstr "Домівка"
 
index a91aa37afa2d5b6f9f55b00e04f8bfe3f42e1702..fa7138afca0b477540c7155fee135b135e9585c9 100644 (file)
@@ -60,21 +60,12 @@ $logfile = 'galette_install';
 define('GALETTE_BASE_PATH', '../');
 define('GALETTE_THEME_DIR', './themes/default/');
 
-$needs_update = false;
 require_once '../includes/galette.inc.php';
 
 session_start();
 $session_name = 'galette_install_' . str_replace('.', '_', GALETTE_VERSION);
 $session = &$_SESSION['galette'][$session_name];
 
-// don't display installer if not necessary
-$install_in_progress = isset($session[md5(GALETTE_ROOT)]);
-$force_installer = defined('FORCE_INSTALLER') && FORCE_INSTALLER;
-if (!$install_in_progress && !$force_installer && $installed && !$needs_update) {
-    http_response_code(404);
-    die();
-}
-
 $app =  new \Galette\Core\SlimApp();
 require_once '../includes/dependencies.php';
 
@@ -94,6 +85,24 @@ if (isset($session[md5(GALETTE_ROOT)]) && !isset($_GET['raz'])) {
 
 $error_detected = array();
 
+/**
+ * Initialize database constants to connect
+ *
+ * @param Install $install Installer
+ *
+ * @return void
+ */
+function initDbConstants($install)
+{
+    define('TYPE_DB', $install->getDbType());
+    define('PREFIX_DB', $install->getTablesPrefix());
+    define('USER_DB', $install->getDbUser());
+    define('PWD_DB', $install->getDbPass());
+    define('HOST_DB', $install->getDbHost());
+    define('PORT_DB', $install->getDbPort());
+    define('NAME_DB', $install->getDbName());
+}
+
 if ($install->isStepPassed(GaletteInstall::STEP_TYPE)) {
     define('GALETTE_LOGGER_CHECKED', true);
 
@@ -189,15 +198,13 @@ if (isset($_POST['stepback_btn'])) {
 if (!$install->isEndStep()
     && ($install->postCheckDb() || $install->isDbCheckStep())
 ) {
-    //while before check db, connection is not checked
-    $zdb = new GaletteDb(array(
-        'TYPE_DB' => $install->getDbType(),
-        'HOST_DB' => $install->getDbHost(),
-        'PORT_DB' => $install->getDbPort(),
-        'USER_DB' => $install->getDbUser(),
-        'PWD_DB' => $install->getDbPass(),
-        'NAME_DB' => $install->getDbName()
-    ));
+    //if we have passed database configuration, define required constants
+    initDbConstants($install);
+
+    if ($install->postCheckDb()) {
+        //while before check db, connection is not checked
+        $zdb = new GaletteDb();
+    }
 }
 
 header('Content-Type: text/html; charset=UTF-8');