Work in progress refactoring dropdown option translations for intervals like today...
[timetracker.git] / WEB-INF / resources / fr.lang.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 $i18n_language = 'Français';
30 $i18n_months = array('Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'); 
31 $i18n_weekdays = array('Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi');
32 $i18n_weekdays_short = array('Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa');
33 // format mm/dd
34 $i18n_holidays = array('01/01', '04/06', '04/09', '05/01', '05/08', '05/17', '05/28', '07/14', '08/15', '11/01', '11/11', '12/25');
35
36 $i18n_key_words = array(
37
38 // Menus - short selection strings that are displayed on the top of application web pages.
39 // Example: https://timetracker.anuko.com (black menu on top).
40 'menu.login' => 'Connexion',
41 'menu.logout' => 'Quitter',
42 'menu.forum' => 'Forum',
43 'menu.help' => 'Aide',
44 'menu.create_team' => 'Créer une équipe',
45 'menu.profile' => 'Profil',
46 'menu.time' => 'Temps',
47 'menu.expenses' => 'Dépenses',
48 'menu.reports' => 'Rapports',
49 'menu.charts' => 'Graphiques',
50 'menu.projects' => 'Projets',
51 'menu.tasks' => 'Tâches',
52 'menu.users' => 'Utilisateurs',
53 'menu.teams' => 'Équipes',
54 'menu.export' => 'Exporter',
55 'menu.clients' => 'Clients',
56 'menu.options' => 'Options',
57
58 // Footer - strings on the bottom of most pages.
59 'footer.contribute_msg' => 'Vous pouvez contribuer à Time Tracker de différentes façons.',
60 'footer.credits' => 'Crédits',
61 'footer.license' => 'License',
62 'footer.improve' => 'Contribuer',
63
64 // Error messages.
65 'error.access_denied' => 'Accès refusé.',
66 'error.sys' => 'Erreur système.',
67 'error.db' => 'Erreur de base de données.',
68 'error.field' => 'Donnée "{0}" incorrecte.',
69 'error.empty' => 'Le champ "{0}" est vide.',
70 'error.not_equal' => 'Le champ "{0}" n\\\'est pas égal au champ "{1}".',
71 'error.interval' => 'Le champ "{0}" doit être supérieur à "{1}".',
72 'error.project' => 'Sélectionner un projet.',
73 'error.task' => 'Sélectionner une tâche.',
74 'error.client' => 'Sélectionner un client.',
75 'error.report' => 'Sélectionner un rapport.',
76 'error.auth' => 'Nom d\\\'utilisateur ou mot de passe incorrect.',
77 'error.user_exists' => 'Un utilisateur avec cet identifiant existe déjà.',
78 'error.project_exists' => 'Un projet avec ce nom existe déjà.',
79 'error.task_exists' => 'Une tâche avec ce nom existe déjà.',
80 'error.client_exists' => 'Un client avec ce nom existe déjà.',
81 'error.invoice_exists' => 'Une facture avec ce numéro existe déjà.',
82 'error.no_invoiceable_items' => 'Il n\\\'y a pas d\\\'éléments à facturer.',
83 'error.no_login' => 'Aucun utilisateur avec cet identifiant.',
84 'error.no_teams' => 'Votre base de données est vide. Connectez-vous comme administrateur et créez une nouvelle équipe.',
85 'error.upload' => 'Erreur de chargement du fichier.',
86 'error.range_locked' => 'Plage de date vérouillée.',
87 'error.mail_send' => 'Erreur lors de l\\\'envoi du courriel.',
88 'error.no_email' => 'Aucune adresse courriel n\\\'est associée à cet identifiant.',
89 'error.uncompleted_exists' => 'Une entrée non terminée existe déjà. Fermer ou supprimer.',
90 'error.goto_uncompleted' => 'Aller à l\\\'entrée non terminée.',
91 'error.overlap' => 'Les heures des projets ne peuvent se chevaucher.',
92 'error.future_date' => 'Date ultérieure.',
93
94 // Labels for buttons.
95 'button.login' => 'Connexion',
96 'button.now' => 'Maintenant',
97 'button.save' => 'Sauvegarder',
98 'button.copy' => 'Copier',
99 'button.cancel' => 'Annuler',
100 'button.submit' => 'Soumettre',
101 'button.add_user' => 'Ajouter un utilisateur',
102 'button.add_project' => 'Ajouter un projet',
103 'button.add_task' => 'Ajouter une tâche',
104 'button.add_client' => 'Ajouter un client',
105 'button.add_invoice' => 'Ajouter une facture',
106 'button.add_option' => 'Ajouter une option',
107 'button.add' => 'Ajouter',
108 'button.generate' => 'Générer',
109 'button.reset_password' => 'Réinitialiser',
110 'button.send' => 'Envoyer',
111 'button.send_by_email' => 'Envoyer par courriel',
112 'button.create_team' => 'Créer une équipe',
113 'button.export' => 'Exporter l\\\'équipe',
114 'button.import' => 'Importer une équipe',
115 'button.close' => 'Fermer',
116 'button.stop' => 'Arrêter',
117
118 // Labels for controls on forms. Labels in this section are used on multiple forms.
119 'label.team_name' => 'Nom équipe',
120 'label.address' => 'Adresse',
121 'label.currency' => 'Devise',
122 'label.manager_name' => 'Nom du responsable',
123 'label.manager_login' => 'Identifiant du responsable',
124 'label.person_name' => 'Nom',
125 'label.thing_name' => 'Nom',
126 'label.login' => 'Identifiant',
127 'label.password' => 'Mot de passe',
128 'label.confirm_password' => 'Confirmez le mot de passe',
129 'label.email' => 'Adresse courriel',
130 'label.cc' => 'Cc',
131 'label.bcc' => 'Cci',
132 'label.subject' => 'Objet',
133 'label.date' => 'Date',
134 'label.start_date' => 'Date de début',
135 'label.end_date' => 'Date de fin',
136 'label.user' => 'Utilisateur',
137 'label.users' => 'Utilisateurs',
138 'label.client' => 'Client',
139 'label.clients' => 'Clients',
140 'label.option' => 'Option',
141 'label.invoice' => 'Facture',
142 'label.project' => 'Projet',
143 'label.projects' => 'Projets',
144 'label.task' => 'Tâche',
145 'label.tasks' => 'Tâches',
146 'label.description' => 'Description',
147 'label.start' => 'Début',
148 'label.finish' => 'Fin',
149 'label.duration' => 'Durée',
150 'label.note' => 'Note',
151 'label.item' => 'Item',
152 'label.cost' => 'Coût',
153 'label.day_total' => 'Total quotidien',
154 'label.week_total' => 'Total hebdomadaire',
155 'label.month_total' => 'Total mensuel',
156 'label.today' => 'Aujourd\\\'hui',
157 'label.total_hours' => 'Total des heures',
158 'label.total_cost' => 'Coût total',
159 'label.view' => 'Visionner',
160 'label.edit' => 'Modifier',
161 'label.delete' => 'Supprimer',
162 'label.configure' => 'Configurer',
163 'label.select_all' => 'Tout sélectionner',
164 'label.select_none' => 'Aucun',
165 'label.id' => 'ID',
166 'label.language' => 'Langage',
167 'label.decimal_mark' => 'Séparateur de décimal',
168 'label.date_format' => 'Format date',
169 'label.time_format' => 'Format heure',
170 'label.week_start' => '1er jour de la semaine',
171 'label.comment' => 'Commentaire',
172 'label.status' => 'Statut',
173 'label.tax' => 'Taxe',
174 'label.subtotal' => 'Sous-total',
175 'label.total' => 'Total',
176 'label.client_name' => 'Nom du client',
177 'label.client_address' => 'Adresse du client',
178 'label.or' => 'ou',
179 'label.error' => 'Erreur',
180 'label.ldap_hint' => 'Entrer votre <b>Identifiant Windows</b> et <b>votre mot de passe</b> dans les champs suivants.',
181 'label.required_fields' => '* - champs obligatoires',
182 'label.on_behalf' => 'de la part de',
183 'label.role_manager' => '(responsable)',
184 'label.role_comanager' => '(coresponsable)',
185 'label.role_admin' => '(administrateur)',
186 'label.page' => 'Page',
187 'label.condition' => 'Condition',
188 // Labels for plugins (extensions to Time Tracker that provide additional features).
189 'label.custom_fields' => 'Champs personalisés',
190 'label.monthly_quotas' => 'Quotas mensuels',
191 'label.type' => 'Type',
192 'label.type_dropdown' => 'Liste déroulante',
193 'label.type_text' => 'Texte',
194 'label.required' => 'Obligatoire',
195 'label.fav_report' => 'Rapport favori',
196 'label.cron_schedule' => 'Horaire Cron',
197 'label.what_is_it' => 'Qu\\\'est-ce que c\\\'est?',
198
199 // Form titles.
200 'title.login' => 'Connexion',
201 'title.teams' => 'Équipes',
202 'title.create_team' => 'Création d\\\'une nouvelle équipe',
203 'title.edit_team' => 'Modification d\\\'une équipe',
204 'title.delete_team' => 'Suppression d\\\'une équipe',
205 'title.reset_password' => 'Réinitialisation du mot de passe',
206 'title.change_password' => 'Modification du mot de passe',
207 'title.time' => 'Temps',
208 'title.edit_time_record' => 'Modification de l\\\'entrée de temps',
209 'title.delete_time_record' => 'Suppression de l\\\'entrée de temps',
210 'title.expenses' => 'Dépenses',
211 'title.edit_expense' => 'Modification d\\\'une dépense',
212 'title.delete_expense' => 'Suppression d\\\'une dépense',
213 'title.reports' => 'Rapports',
214 'title.report' => 'Rapport',
215 'title.send_report' => 'Envoi du rapport',
216 'title.invoice' => 'Facture',
217 'title.send_invoice' => 'Envoi de la facture',
218 'title.charts' => 'Graphiques',
219 'title.projects' => 'Projets',
220 'title.add_project' => 'Ajout d\\\'un projet',
221 'title.edit_project' => 'Modification d\\\'un projet',
222 'title.delete_project' => 'Suppression d\\\'un projet',
223 'title.tasks' => 'Tâches',
224 'title.add_task' => 'Ajout d\\\'une tâche',
225 'title.edit_task' => 'Modification d\\\'une tâche',
226 'title.delete_task' => 'Suppression d\\\'une tâche',
227 'title.users' => 'Utilisateurs',
228 'title.add_user' => 'Création d\\\'un utilisateur',
229 'title.edit_user' => 'Modification d\\\'un utilisateur',
230 'title.delete_user' => 'Suppression d\\\'un utilisateur',
231 'title.clients' => 'Clients',
232 'title.add_client' => 'Ajout d\\\'un client',
233 'title.edit_client' => 'Modification d\\\'un client',
234 'title.delete_client' => 'Suppression d\\\'un client',
235 'title.invoices' => 'Factures',
236 'title.add_invoice' => 'Ajout d\\\'une facture',
237 'title.view_invoice' => 'Visionnement d\\\'une facture',
238 'title.delete_invoice' => 'Suppression d\\\'une facture',
239 'title.notifications' => 'Notifications',
240 'title.add_notification' => 'Ajout d\\\'une notification',
241 'title.edit_notification' => 'Modification d\\\'une notification',
242 'title.delete_notification' => 'Suppression d\\\'une notification',
243 'title.monthly_quotas' => 'Quotas mensuels',
244 'title.export' => 'Exportation des données',
245 'title.import' => 'Importation des données',
246 'title.options' => 'Options',
247 'title.profile' => 'Profil',
248 'title.cf_custom_fields' => 'Champs personalisés',
249 'title.cf_add_custom_field' => 'Ajout d\\\'un champ',
250 'title.cf_edit_custom_field' => 'Édition d\\\'un champ',
251 'title.cf_delete_custom_field' => 'Suppression d\\\'un champ',
252 'title.cf_dropdown_options' => 'Options de liste',
253 'title.cf_add_dropdown_option' => 'Ajout d\\\'une option',
254 'title.cf_edit_dropdown_option' => 'Modification d\\\'une option',
255 'title.cf_delete_dropdown_option' => 'Suppression d\\\'une option',
256 'title.locking' => 'Vérouillage',
257
258 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
259 // Strings that are used in a single form must go to the specific form section.
260 'dropdown.all' => '--- tous ---',
261 'dropdown.no' => '--- aucun ---',
262 'dropdown.current_day' => 'aujourd\\\'hui',
263 'dropdown.previous_day' => 'hier',
264 'dropdown.selected_day' => 'jour',
265 'dropdown.current_week' => 'semaine en cours',
266 'dropdown.previous_week' => 'la semaine dernière',
267 'dropdown.selected_week' => 'semaine',
268 'dropdown.current_month' => 'mois en cours',
269 'dropdown.previous_month' => 'le mois dernier',
270 'dropdown.selected_month' => 'mois',
271 'dropdown.current_year' => 'année en cours',
272 // TODO: translate the following.
273 // 'dropdown.previous_year' => 'previous year',
274 'dropdown.selected_year' => 'année',
275 'dropdown.all_time' => 'depuis toujours',
276 'dropdown.projects' => 'Projets',
277 'dropdown.tasks' => 'Tâches',
278 'dropdown.clients' => 'Clients',
279 'dropdown.select' =>  '--- sélectionnez ---',
280 'dropdown.select_invoice' => '--- selectionnez facture ---',
281 'dropdown.status_active' => 'actif',
282 'dropdown.status_inactive' => 'inactif',
283 'dropdown.delete'=>'supprimer',
284 'dropdown.do_not_delete'=>'ne pas supprimer',
285
286 // Below is a section for strings that are used on individual forms. When a string is used only on one form it should be placed here.
287 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
288 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
289 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
290
291 // Login form. See example at https://timetracker.anuko.com/login.php.
292 'form.login.forgot_password' => 'Mot de passe oublié?',
293 'form.login.about' =>'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> est un système de gestion du temps, open source, simple et facile à utiliser.',
294
295 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
296 'form.reset_password.message' => 'Une demande de réinitialisation du mot de passe a été envoyé par courriel.',
297 'form.reset_password.email_subject' => 'Demande de réinitialisation de mot de passe Anuko Time Tracker',
298 'form.reset_password.email_body' => "Cher utilisateur,\n\nQuelqu\'un, probablement vous, avez demandé une réinitialisation de votre mot de passe. Veuillez de suivre ce lien pour le réinitialiser\n\n%s\n\nAnuko Time Tracker est un système de gestion du temps, open source, simple et facile à utiliser. Visitez https://www.anuko.com pour plus d\'informations.\n\n",
299
300 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
301 'form.change_password.tip' => 'Saisissez votre nouveau mot de passe et cliquez sur Sauvegarder.',
302
303 // Time form. See example at https://timetracker.anuko.com/time.php.
304 'form.time.duration_format' => '(hh:mm ou 0.0h)',
305 'form.time.billable' => 'Facturable',
306 'form.time.uncompleted' => 'Non terminée',
307 'form.time.remaining_quota' => 'Quota restant',
308 'form.time.over_quota' => 'Quota dépassé',
309
310 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
311 'form.time_edit.uncompleted' => 'Cet enregistrement a été sauvegardé avec une heure de début seulement. Il ne s\\\'agit pas d\\\'une erreur.',
312
313 // Reports form. See example at https://timetracker.anuko.com/reports.php
314 'form.reports.save_as_favorite' => 'Enregistrer comme favori',
315 'form.reports.confirm_delete' => 'Êtes-vous certain de vouloir supprimer ce rapport des favoris?',
316 'form.reports.include_records' => 'Inclure les enregistrements',
317 'form.reports.include_billable' => 'facturables',
318 'form.reports.include_not_billable' => 'non facturables',
319 'form.reports.include_invoiced' => 'facturé',
320 'form.reports.include_not_invoiced' => 'non facturé',
321 'form.reports.select_period' => 'Sélectionner la période de temps',
322 'form.reports.set_period' => 'ou dates indiquées',
323 'form.reports.show_fields' => 'Afficher les champs',
324 'form.reports.group_by' => 'Regroupés par',
325 'form.reports.group_by_no' => '--- Aucun regroupement ---',
326 'form.reports.group_by_date' => 'Date',
327 'form.reports.group_by_user' => 'Utilisateur',
328 'form.reports.group_by_client' => 'Client',
329 'form.reports.group_by_project' => 'Projet',
330 'form.reports.group_by_task' => 'Tâche',
331 'form.reports.totals_only' => 'Totaux uniquement',
332
333 // Report form. See example at https://timetracker.anuko.com/report.php
334 // (after generating a report at https://timetracker.anuko.com/reports.php).
335 'form.report.export' => 'Exporter',
336
337 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
338 // (you can get to this form after generating a report).
339 'form.invoice.number' => 'Numéro de facture',
340 'form.invoice.person' => 'Personne',
341 'form.invoice.invoice_to_delete' => 'Facture à supprimer',
342 'form.invoice.invoice_entries' => 'Entrées de facture',
343
344 // Charts form. See example at https://timetracker.anuko.com/charts.php
345 'form.charts.interval' => 'Intervalle',
346 'form.charts.chart' => 'Graphique',
347
348 // Projects form. See example at https://timetracker.anuko.com/projects.php
349 'form.projects.active_projects' => 'Projets actifs',
350 'form.projects.inactive_projects' => 'Projets inactifs',
351
352 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
353 'form.tasks.active_tasks' => 'Tâches actives',
354 'form.tasks.inactive_tasks' => 'Tâches inactives',
355
356 // Users form. See example at https://timetracker.anuko.com/users.php
357 'form.users.active_users' => 'Utilisateurs actifs',
358 'form.users.inactive_users' => 'Utilisateurs inactifs',
359 'form.users.uncompleted_entry' => 'L\\\'utilisateur a une entrée incomplète',
360 'form.users.role' => 'Rôle',
361 'form.users.manager' => 'Responsable',
362 'form.users.comanager' => 'Coresponsable',
363 'form.users.rate' => 'Tarif',
364 'form.users.default_rate' => 'Tarif horaire par défaut',
365
366 // Client delete form. See example at https://timetracker.anuko.com/client_delete.php
367 'form.client.client_to_delete' => 'Client à supprimer',
368 'form.client.client_entries' => 'Entrées de client',
369
370 // Clients form. See example at https://timetracker.anuko.com/clients.php
371 'form.clients.active_clients' => 'Clients actifs',
372 'form.clients.inactive_clients' => 'Clients inactifs',
373
374 // Strings for Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
375 'form.export.hint' => 'Vous pouvez exporter toutes les données d\\\'une équipe dans un ficheir xml. Cela peut être utile si vous transférez des données vers votre serveur.',
376 'form.export.compression' => 'Compression',
377 'form.export.compression_none' => 'Aucune',
378 'form.export.compression_bzip' => 'bzip',
379
380 // Strings for Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
381 'form.import.hint' => 'Importer les donnés des équipes depuis un fichier xml.',
382 'form.import.file' => 'Sélectionner le fichier',
383 'form.import.success' => 'Importation réussie.',
384
385 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
386 'form.teams.hint' => 'Créez une nouvelle équipe en créant un nouveau compte de responsable d\\\'équipe.<br>Vous pouvez également importer des données d\\\'une équipe depuis un fichier xml provenant d\\\'un autre serveur Anuko Time Tracker (les doublons d\\\'identifiants ne sont pas autorisés).',
387
388 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
389 'form.profile.12_hours' => '12 heures',
390 'form.profile.24_hours' => '24 heures',
391 'form.profile.tracking_mode' => 'Mode suivi',
392 'form.profile.mode_time' => 'Heures',
393 'form.profile.mode_projects' => 'Projets',
394 'form.profile.mode_projects_and_tasks' => 'Projets et tâches',
395 'form.profile.record_type' => 'Type d\\\'enregistrement',
396 'form.profile.type_all' => 'Tous',
397 'form.profile.type_start_finish' => 'Début et fin',
398 'form.profile.type_duration' => 'Durée',
399 'form.profile.plugins' => 'Plugins',
400
401 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
402 'form.mail.from' => 'De',
403 'form.mail.to' => 'À',
404 'form.mail.report_subject' => 'Rapport Time Tracker',
405 'form.mail.footer' => 'Anuko Time Tracker est un système de gestion du temps, open source, simple et facile à utiliser. Visitez <a href="https://www.anuko.com">www.anuko.com</a> pour plus d\\\'informations.',
406 'form.mail.report_sent' => 'Le rapport a été envoyé.',
407 'form.mail.invoice_sent' => 'La facture a été envoyée.',
408
409 // Quotas configuration form.
410 'form.quota.year' => 'Année',
411 'form.quota.month' => 'Mois',
412 'form.quota.quota' => 'Quota',
413 'form.quota.workday_hours' => 'Heures journée de travail',
414 'form.quota.hint' => 'Si les valeurs sont vides, les quotas sont calculés automatiquement selon les heures des journées de travail et des congés.',
415 );