More progress with attachments.
[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 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
31
32 $i18n_language = 'French (Français)';
33 $i18n_months = array('Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'); 
34 $i18n_weekdays = array('Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi');
35 $i18n_weekdays_short = array('Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa');
36 // format mm/dd
37 $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');
38
39 $i18n_key_words = array(
40
41 // Menus - short selection strings that are displayed on top of application web pages.
42 // Example: https://timetracker.anuko.com (black menu on top).
43 'menu.login' => 'Connexion',
44 'menu.logout' => 'Quitter',
45 'menu.forum' => 'Forum',
46 'menu.help' => 'Aide',
47 // TODO: translate the following.
48 // 'menu.create_group' => 'Create Group',
49 'menu.profile' => 'Profil',
50 // TODO: translate the following.
51 // 'menu.group' => 'Group',
52 'menu.plugins' => 'Plugins',
53 'menu.time' => 'Temps',
54 'menu.expenses' => 'Dépenses',
55 'menu.reports' => 'Rapports',
56 // TODO: translate the following.
57 // 'menu.timesheets' => 'Timesheets',
58 'menu.charts' => 'Graphiques',
59 'menu.projects' => 'Projets',
60 'menu.tasks' => 'Tâches',
61 'menu.users' => 'Utilisateurs',
62 // TODO: translate the following.
63 // 'menu.groups' => 'Groups',
64 // 'menu.subgroups' => 'Subgroups',
65 'menu.export' => 'Exporter',
66 'menu.clients' => 'Clients',
67 'menu.options' => 'Options',
68
69 // Footer - strings on the bottom of most pages.
70 'footer.contribute_msg' => 'Vous pouvez contribuer à Time Tracker de différentes façons.',
71 'footer.credits' => 'Crédits',
72 'footer.license' => 'License',
73 'footer.improve' => 'Contribuer',
74
75 // Error messages.
76 'error.access_denied' => 'Accès refusé.',
77 'error.sys' => 'Erreur système.',
78 'error.db' => 'Erreur de base de données.',
79 // TODO: translate the following.
80 // 'error.feature_disabled' => 'Feature is disabled.',
81 'error.field' => 'Donnée "{0}" incorrecte.',
82 'error.empty' => 'Le champ "{0}" est vide.',
83 'error.not_equal' => 'Le champ "{0}" n\\\'est pas égal au champ "{1}".',
84 'error.interval' => 'Le champ "{0}" doit être supérieur à "{1}".',
85 'error.project' => 'Sélectionner un projet.',
86 'error.task' => 'Sélectionner une tâche.',
87 'error.client' => 'Sélectionner un client.',
88 'error.report' => 'Sélectionner un rapport.',
89 // TODO: translate the following.
90 // 'error.record' => 'Select record.',
91 'error.auth' => 'Nom d\\\'utilisateur ou mot de passe incorrect.',
92 'error.user_exists' => 'Un utilisateur avec cet identifiant existe déjà.',
93 // TODO: translate the following.
94 // 'error.object_exists' => 'Object with this name already exists.',
95 'error.invoice_exists' => 'Une facture avec ce numéro existe déjà.',
96 // TODO: translate the following.
97 // 'error.role_exists' => 'Role with this rank already exists.',
98 'error.no_invoiceable_items' => 'Il n\\\'y a pas d\\\'éléments à facturer.',
99 // TODO: translate the following.
100 // 'error.no_records' => 'There are no records.',
101 'error.no_login' => 'Aucun utilisateur avec cet identifiant.',
102 'error.no_groups' => 'Votre base de données est vide. Connectez-vous comme administrateur et créez une nouvelle équipe.',  // TODO: replace "team" with "group".
103 'error.upload' => 'Erreur de chargement du fichier.',
104 'error.range_locked' => 'Plage de date vérouillée.',
105 'error.mail_send' => 'Erreur lors de l\\\'envoi du courriel.',
106 // TODO: improve the translation above by adding MAIL_SMTP_DEBUG part.
107 // 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.',
108 'error.no_email' => 'Aucune adresse courriel n\\\'est associée à cet identifiant.',
109 'error.uncompleted_exists' => 'Une entrée non terminée existe déjà. Fermer ou supprimer.',
110 'error.goto_uncompleted' => 'Aller à l\\\'entrée non terminée.',
111 'error.overlap' => 'Les heures des projets ne peuvent se chevaucher.',
112 'error.future_date' => 'Date ultérieure.',
113 // TODO: translate the following.
114 // 'error.xml' => 'Error in XML file at line %d: %s.',
115 // 'error.cannot_import' => 'Cannot import: %s.',
116 // 'error.format' => 'Invalid file format.',
117 // 'error.user_count' => 'Limit on user count.',
118 // 'error.expired' => 'Expiration date reached.',
119 // 'error.file_storage' => 'File storage error.',
120
121 // Warning messages.
122 // TODO: translate the following.
123 // 'warn.sure' => 'Are you sure?',
124 // 'warn.confirm_save' => 'Date has changed. Confirm saving, not copying this item.',
125
126 // Success messages.
127 // TODO: translate the following.
128 // 'msg.success' => 'Operation completed successfully.',
129
130 // Labels for buttons.
131 'button.login' => 'Connexion',
132 'button.now' => 'Maintenant',
133 'button.save' => 'Sauvegarder',
134 'button.copy' => 'Copier',
135 'button.cancel' => 'Annuler',
136 'button.submit' => 'Soumettre',
137 'button.add' => 'Ajouter',
138 'button.delete' => 'Supprimer',
139 'button.generate' => 'Générer',
140 'button.reset_password' => 'Réinitialiser',
141 'button.send' => 'Envoyer',
142 'button.send_by_email' => 'Envoyer par courriel',
143 'button.create_group' => 'Créer une équipe', // TODO: replace "team" with "group".
144 'button.export' => 'Exporter l\\\'équipe', // TODO: replace "team" with "group".
145 'button.import' => 'Importer une équipe', // TODO: replace "team" with "group".
146 'button.close' => 'Fermer',
147 'button.stop' => 'Arrêter',
148 // TODO: translate the following.
149 // 'button.approve' => 'Approve',
150 // 'button.disapprove' => 'Disapprove',
151
152 // Labels for controls on forms. Labels in this section are used on multiple forms.
153 'label.group_name' => 'Nom équipe', // TODO: replace "team" with "group".
154 'label.address' => 'Adresse',
155 'label.currency' => 'Devise',
156 'label.manager_name' => 'Nom du responsable',
157 'label.manager_login' => 'Identifiant du responsable',
158 'label.person_name' => 'Nom',
159 'label.thing_name' => 'Nom',
160 'label.login' => 'Identifiant',
161 'label.password' => 'Mot de passe',
162 'label.confirm_password' => 'Confirmez le mot de passe',
163 'label.email' => 'Adresse courriel',
164 'label.cc' => 'Cc',
165 'label.bcc' => 'Cci',
166 'label.subject' => 'Objet',
167 'label.date' => 'Date',
168 'label.start_date' => 'Date de début',
169 'label.end_date' => 'Date de fin',
170 'label.user' => 'Utilisateur',
171 'label.users' => 'Utilisateurs',
172 // TODO: translate the following.
173 // 'label.group' => 'Group',
174 // 'label.subgroups' => 'Subgroups',
175 // 'label.roles' => 'Roles',
176 'label.client' => 'Client',
177 'label.clients' => 'Clients',
178 'label.option' => 'Option',
179 'label.invoice' => 'Facture',
180 'label.project' => 'Projet',
181 'label.projects' => 'Projets',
182 'label.task' => 'Tâche',
183 'label.tasks' => 'Tâches',
184 'label.description' => 'Description',
185 'label.start' => 'Début',
186 'label.finish' => 'Fin',
187 'label.duration' => 'Durée',
188 'label.note' => 'Note',
189 // TODO: translate the following.
190 // 'label.notes' => 'Notes',
191 'label.item' => 'Item',
192 'label.cost' => 'Coût',
193 // TODO: translate the following.
194 // 'label.ip' => 'IP',
195 'label.day_total' => 'Total quotidien',
196 'label.week_total' => 'Total hebdomadaire',
197 'label.month_total' => 'Total mensuel',
198 'label.today' => 'Aujourd\\\'hui',
199 'label.view' => 'Visionner',
200 'label.edit' => 'Modifier',
201 'label.delete' => 'Supprimer',
202 'label.configure' => 'Configurer',
203 'label.select_all' => 'Tout sélectionner',
204 'label.select_none' => 'Aucun',
205 // TODO: translate the following.
206 // 'label.day_view' => 'Day view',
207 // 'label.week_view' => 'Week view',
208 'label.id' => 'ID',
209 'label.language' => 'Langage',
210 'label.decimal_mark' => 'Séparateur de décimal',
211 'label.date_format' => 'Format date',
212 'label.time_format' => 'Format heure',
213 'label.week_start' => '1er jour de la semaine',
214 'label.comment' => 'Commentaire',
215 'label.status' => 'Statut',
216 'label.tax' => 'Taxe',
217 'label.subtotal' => 'Sous-total',
218 'label.total' => 'Total',
219 'label.client_name' => 'Nom du client',
220 'label.client_address' => 'Adresse du client',
221 'label.or' => 'ou',
222 'label.error' => 'Erreur',
223 'label.ldap_hint' => 'Entrer votre <b>Identifiant Windows</b> et <b>votre mot de passe</b> dans les champs suivants.',
224 'label.required_fields' => '* - champs obligatoires',
225 'label.on_behalf' => 'de la part de',
226 'label.role_manager' => '(responsable)',
227 'label.role_comanager' => '(coresponsable)',
228 'label.role_admin' => '(administrateur)',
229 'label.page' => 'Page',
230 'label.condition' => 'Condition',
231 // TODO: translate the following.
232 // 'label.yes' => 'yes',
233 // 'label.no' => 'no',
234 // Labels for plugins (extensions to Time Tracker that provide additional features).
235 'label.custom_fields' => 'Champs personalisés',
236 'label.monthly_quotas' => 'Quotas mensuels',
237 'label.type' => 'Type',
238 'label.type_dropdown' => 'Liste déroulante',
239 'label.type_text' => 'Texte',
240 'label.required' => 'Obligatoire',
241 'label.fav_report' => 'Rapport favori',
242 'label.schedule' => 'Horaire',
243 'label.what_is_it' => 'Qu\\\'est-ce que c\\\'est?',
244 // 'label.expense' => 'Expense',
245 // 'label.quantity' => 'Quantity',
246 // 'label.paid_status' => 'Paid status',
247 // 'label.paid' => 'Paid',
248 // 'label.mark_paid' => 'Mark paid',
249 // 'label.week_note' => 'Week note',
250 // 'label.week_list' => 'Week list',
251 // 'label.work_units' => 'Work units',
252 // 'label.work_units_short' => 'Units',
253 'label.totals_only' => 'Totaux uniquement',
254 'label.quota' => 'Quota',
255 // TODO: translate the following.
256 // 'label.timesheet' => 'Timesheet',
257 // 'label.submitted' => 'Submitted',
258 // 'label.approved' => 'Approved',
259 // 'label.approval' => 'Report approval',
260 // 'label.mark_approved' => 'Mark approved',
261 // 'label.template' => 'Template',
262 // 'label.attachments' => 'Attachments',
263 // 'label.files' => 'Files',
264 // 'label.image' => 'Image',
265
266 // Form titles.
267 'title.error' => 'Erreur',
268 // TODO: Translate the following.
269 // 'title.success' => 'Success',
270 'title.login' => 'Connexion',
271 'title.groups' => 'Équipes', // TODO: change "teams" to "groups".
272 // TODO: translate the following.
273 // 'title.subgroups' => 'Subgroups',
274 // 'title.add_group' => 'Adding Group',
275 'title.edit_group' => 'Modification d\\\'une équipe', // TODO: change "team" to "group".
276 'title.delete_group' => 'Suppression d\\\'une équipe', // TODO: change "team" to "group".
277 'title.reset_password' => 'Réinitialisation du mot de passe',
278 'title.change_password' => 'Modification du mot de passe',
279 'title.time' => 'Temps',
280 'title.edit_time_record' => 'Modification de l\\\'entrée de temps',
281 'title.delete_time_record' => 'Suppression de l\\\'entrée de temps',
282 'title.expenses' => 'Dépenses',
283 'title.edit_expense' => 'Modification d\\\'une dépense',
284 'title.delete_expense' => 'Suppression d\\\'une dépense',
285 'title.reports' => 'Rapports',
286 'title.report' => 'Rapport',
287 'title.send_report' => 'Envoi du rapport',
288 // TODO: Translate the following.
289 // 'title.timesheets' => 'Timesheets',
290 // 'title.timesheet' => 'Timesheet',
291 'title.invoice' => 'Facture',
292 'title.send_invoice' => 'Envoi de la facture',
293 'title.charts' => 'Graphiques',
294 'title.projects' => 'Projets',
295 // TODO: translate the following.
296 // 'title.project_files' => 'Project Files',
297 'title.add_project' => 'Ajout d\\\'un projet',
298 'title.edit_project' => 'Modification d\\\'un projet',
299 'title.delete_project' => 'Suppression d\\\'un projet',
300 'title.tasks' => 'Tâches',
301 'title.add_task' => 'Ajout d\\\'une tâche',
302 'title.edit_task' => 'Modification d\\\'une tâche',
303 'title.delete_task' => 'Suppression d\\\'une tâche',
304 'title.users' => 'Utilisateurs',
305 'title.add_user' => 'Création d\\\'un utilisateur',
306 'title.edit_user' => 'Modification d\\\'un utilisateur',
307 'title.delete_user' => 'Suppression d\\\'un utilisateur',
308 // TODO: translate the following.
309 // 'title.roles' => 'Roles',
310 // 'title.add_role' => 'Adding Role',
311 // 'title.edit_role' => 'Editing Role',
312 // 'title.delete_role' => 'Deleting Role',
313 'title.clients' => 'Clients',
314 'title.add_client' => 'Ajout d\\\'un client',
315 'title.edit_client' => 'Modification d\\\'un client',
316 'title.delete_client' => 'Suppression d\\\'un client',
317 'title.invoices' => 'Factures',
318 'title.add_invoice' => 'Ajout d\\\'une facture',
319 'title.view_invoice' => 'Visionnement d\\\'une facture',
320 'title.delete_invoice' => 'Suppression d\\\'une facture',
321 'title.notifications' => 'Notifications',
322 'title.add_notification' => 'Ajout d\\\'une notification',
323 'title.edit_notification' => 'Modification d\\\'une notification',
324 'title.delete_notification' => 'Suppression d\\\'une notification',
325 // TODO: translate the following.
326 // 'title.add_timesheet' => 'Adding Timesheet',
327 // 'title.edit_timesheet' => 'Editing Timesheet',
328 // 'title.delete_timesheet' => 'Deleting Timesheet',
329 'title.monthly_quotas' => 'Quotas mensuels',
330 'title.export' => 'Exportation des données',
331 'title.import' => 'Importation des données',
332 'title.options' => 'Options',
333 'title.profile' => 'Profil',
334 'title.plugins' => 'Plugins',
335 'title.cf_custom_fields' => 'Champs personalisés',
336 'title.cf_add_custom_field' => 'Ajout d\\\'un champ',
337 'title.cf_edit_custom_field' => 'Édition d\\\'un champ',
338 'title.cf_delete_custom_field' => 'Suppression d\\\'un champ',
339 'title.cf_dropdown_options' => 'Options de liste',
340 'title.cf_add_dropdown_option' => 'Ajout d\\\'une option',
341 'title.cf_edit_dropdown_option' => 'Modification d\\\'une option',
342 'title.cf_delete_dropdown_option' => 'Suppression d\\\'une option',
343 'title.locking' => 'Vérouillage',
344 // TODO: translate the following.
345 // 'title.week_view' => 'Week View',
346 // 'title.swap_roles' => 'Swapping Roles',
347 // 'title.work_units' => 'Work Units',
348 // 'title.templates' => 'Templates',
349 // 'title.add_template' => 'Adding Template',
350 // 'title.edit_template' => 'Editing Template',
351 // 'title.delete_template' => 'Deleting Template',
352
353 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
354 // Strings that are used in a single form must go to the specific form section.
355 'dropdown.all' => '--- tous ---',
356 'dropdown.no' => '--- aucun ---',
357 'dropdown.current_day' => 'aujourd\\\'hui',
358 'dropdown.previous_day' => 'hier',
359 'dropdown.selected_day' => 'jour',
360 'dropdown.current_week' => 'semaine en cours',
361 'dropdown.previous_week' => 'la semaine dernière',
362 'dropdown.selected_week' => 'semaine',
363 'dropdown.current_month' => 'mois en cours',
364 'dropdown.previous_month' => 'le mois dernier',
365 'dropdown.selected_month' => 'mois',
366 'dropdown.current_year' => 'année en cours',
367 'dropdown.previous_year' => 'année dernière',
368 'dropdown.selected_year' => 'année',
369 'dropdown.all_time' => 'depuis toujours',
370 'dropdown.projects' => 'Projets',
371 'dropdown.tasks' => 'Tâches',
372 'dropdown.clients' => 'Clients',
373 'dropdown.select' => '--- sélectionnez ---',
374 'dropdown.select_invoice' => '--- selectionnez facture ---',
375 // TODO: translate the following.
376 // 'dropdown.select_timesheet' => '--- select timesheet ---',
377 'dropdown.status_active' => 'actif',
378 'dropdown.status_inactive' => 'inactif',
379 'dropdown.delete' => 'supprimer',
380 'dropdown.do_not_delete' => 'ne pas supprimer',
381 // TODO: translate the following.
382 // 'dropdown.approved' => 'approved',
383 // 'dropdown.not_approved' => 'not approved',
384 // 'dropdown.paid' => 'paid',
385 // 'dropdown.not_paid' => 'not paid',
386
387 // 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.
388 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
389 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
390 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
391
392 // Login form. See example at https://timetracker.anuko.com/login.php.
393 'form.login.forgot_password' => 'Mot de passe oublié?',
394 '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.',
395
396 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
397 'form.reset_password.message' => 'Une demande de réinitialisation du mot de passe a été envoyé par courriel.',
398 'form.reset_password.email_subject' => 'Demande de réinitialisation de mot de passe Anuko Time Tracker',
399 // TODO: English string has changed. "from IP added. Re-translate the beginning.
400 // 'form.reset_password.email_body' => "Dear User,\n\nSomeone from IP %s requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
401 // "IP %s" probably sounds awkward.
402 'form.reset_password.email_body' => "Cher utilisateur,\n\nQuelqu\'un, IP %s, 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",
403
404 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
405 'form.change_password.tip' => 'Saisissez votre nouveau mot de passe et cliquez sur Sauvegarder.',
406
407 // Time form. See example at https://timetracker.anuko.com/time.php.
408 'form.time.duration_format' => '(hh:mm ou 0.0h)',
409 'form.time.billable' => 'Facturable',
410 'form.time.uncompleted' => 'Non terminée',
411 'form.time.remaining_quota' => 'Quota restant',
412 'form.time.over_quota' => 'Quota dépassé',
413 // TODO: translate the following.
414 // 'form.time.remaining_balance' => 'Remaining balance',
415 // 'form.time.over_balance' => 'Over balance',
416
417 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
418 'form.time_edit.uncompleted' => 'Cet enregistrement a été sauvegardé avec une heure de début seulement. Il ne s\\\'agit pas d\\\'une erreur.',
419
420 // Week view form. See example at https://timetracker.anuko.com/week.php.
421 // TODO: translate the following.
422 // 'form.week.new_entry' => 'New entry',
423
424 // Reports form. See example at https://timetracker.anuko.com/reports.php
425 'form.reports.save_as_favorite' => 'Enregistrer comme favori',
426 'form.reports.confirm_delete' => 'Êtes-vous certain de vouloir supprimer ce rapport des favoris?',
427 'form.reports.include_billable' => 'facturables',
428 'form.reports.include_not_billable' => 'non facturables',
429 'form.reports.include_invoiced' => 'facturé',
430 'form.reports.include_not_invoiced' => 'non facturé',
431 // TODO: translate the following.
432 // 'form.reports.include_assigned' => 'assigned',
433 // 'form.reports.include_not_assigned' => 'not assigned',
434 // 'form.reports.include_pending' => 'pending',
435 'form.reports.select_period' => 'Sélectionner la période de temps',
436 'form.reports.set_period' => 'ou dates indiquées',
437 'form.reports.show_fields' => 'Afficher les champs',
438 'form.reports.group_by' => 'Regroupés par',
439 'form.reports.group_by_no' => '--- Aucun regroupement ---',
440 'form.reports.group_by_date' => 'Date',
441 'form.reports.group_by_user' => 'Utilisateur',
442 'form.reports.group_by_client' => 'Client',
443 'form.reports.group_by_project' => 'Projet',
444 'form.reports.group_by_task' => 'Tâche',
445
446 // Report form. See example at https://timetracker.anuko.com/report.php
447 // (after generating a report at https://timetracker.anuko.com/reports.php).
448 'form.report.export' => 'Exporter',
449 // TODO: translate the following.
450 // 'form.report.assign_to_invoice' => 'Assign to invoice',
451 // 'form.report.assign_to_timesheet' => 'Assign to timesheet',
452
453 // Timesheets form. See example at https://timetracker.anuko.com/timesheets.php
454 // TODO: translate the following.
455 // 'form.timesheets.active_timesheets' => 'Active Timesheets',
456 // 'form.timesheets.inactive_timesheets' => 'Inactive Timesheets',
457
458 // Templates form. See example at https://timetracker.anuko.com/templates.php
459 // TODO: translate the following.
460 // 'form.templates.active_templates' => 'Active Templates',
461 // 'form.templates.inactive_templates' => 'Inactive Templates',
462
463 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
464 // (you can get to this form after generating a report).
465 'form.invoice.number' => 'Numéro de facture',
466 'form.invoice.person' => 'Personne',
467
468 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
469 'form.invoice.invoice_to_delete' => 'Facture à supprimer',
470 'form.invoice.invoice_entries' => 'Entrées de facture',
471 // TODO: translate the following.
472 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
473
474 // Charts form. See example at https://timetracker.anuko.com/charts.php
475 'form.charts.interval' => 'Intervalle',
476 'form.charts.chart' => 'Graphique',
477
478 // Projects form. See example at https://timetracker.anuko.com/projects.php
479 'form.projects.active_projects' => 'Projets actifs',
480 'form.projects.inactive_projects' => 'Projets inactifs',
481
482 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
483 'form.tasks.active_tasks' => 'Tâches actives',
484 'form.tasks.inactive_tasks' => 'Tâches inactives',
485
486 // Users form. See example at https://timetracker.anuko.com/users.php
487 'form.users.active_users' => 'Utilisateurs actifs',
488 'form.users.inactive_users' => 'Utilisateurs inactifs',
489 'form.users.uncompleted_entry' => 'L\\\'utilisateur a une entrée incomplète',
490 'form.users.role' => 'Rôle',
491 'form.users.manager' => 'Responsable',
492 'form.users.comanager' => 'Coresponsable',
493 'form.users.rate' => 'Tarif',
494 'form.users.default_rate' => 'Tarif horaire par défaut',
495
496 // Editing User form. See example at https://timetracker.anuko.com/user_edit.php
497 // TODO: translate the following.
498 // 'form.user_edit.swap_roles' => 'Swap roles',
499
500 // Roles form. See example at https://timetracker.anuko.com/roles.php
501 // TODO: translate the following.
502 // 'form.roles.active_roles' => 'Active Roles',
503 // 'form.roles.inactive_roles' => 'Inactive Roles',
504 // 'form.roles.rank' => 'Rank',
505 // 'form.roles.rights' => 'Rights',
506 // 'form.roles.assigned' => 'Assigned',
507 // 'form.roles.not_assigned' => 'Not assigned',
508
509 // Clients form. See example at https://timetracker.anuko.com/clients.php
510 'form.clients.active_clients' => 'Clients actifs',
511 'form.clients.inactive_clients' => 'Clients inactifs',
512
513 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
514 'form.client.client_to_delete' => 'Client à supprimer',
515 'form.client.client_entries' => 'Entrées de client',
516
517 // Exporting Group Data form. See example at https://timetracker.anuko.com/export.php
518 // TODO: replace "team" with "group" in the string below.
519 '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.',
520 'form.export.compression' => 'Compression',
521 'form.export.compression_none' => 'Aucune',
522 'form.export.compression_bzip' => 'bzip',
523
524 // Importing Group Data form. See example at https://timetracker.anuko.com/import.php (login as admin first).
525 'form.import.hint' => 'Importer les donnés des équipes depuis un fichier xml.', // TODO: replace "team" with "group". Also, it's about 1 group, not many.
526 'form.import.file' => 'Sélectionner le fichier',
527 'form.import.success' => 'Importation réussie.',
528
529 // Groups form. See example at https://timetracker.anuko.com/admin_groups.php (login as admin first).
530 // TODO: replace "team" with "group" in the string below.
531 'form.groups.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).',
532
533 // Group Settings form. See example at https://timetracker.anuko.com/group_edit.php.
534 'form.group_edit.12_hours' => '12 heures',
535 'form.group_edit.24_hours' => '24 heures',
536 // TODO: translate the following.
537 // 'form.group_edit.show_holidays' => 'Show holidays',
538 'form.group_edit.tracking_mode' => 'Mode suivi',
539 'form.group_edit.mode_time' => 'Heures',
540 'form.group_edit.mode_projects' => 'Projets',
541 'form.group_edit.mode_projects_and_tasks' => 'Projets et tâches',
542 'form.group_edit.record_type' => 'Type d\\\'enregistrement',
543 'form.group_edit.type_all' => 'Tous',
544 'form.group_edit.type_start_finish' => 'Début et fin',
545 'form.group_edit.type_duration' => 'Durée',
546 // TODO: translate the following.
547 // 'form.group_edit.punch_mode' => 'Punch mode',
548 // 'form.group_edit.allow_overlap' => 'Allow overlap',
549 // 'form.group_edit.future_entries' => 'Future entries',
550 // 'form.group_edit.uncompleted_indicators' => 'Uncompleted indicators',
551 // 'form.group_edit.confirm_save' => 'Confirm saving',
552 // 'form.group_edit.allow_ip' => 'Allow IP',
553
554 // Deleting Group form. See example at https://timetracker.anuko.com/delete_group.php
555 // TODO: translate the following.
556 // 'form.group_delete.hint' => 'Are you sure you want to delete the entire group?',
557
558 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
559 'form.mail.from' => 'De',
560 'form.mail.to' => 'À',
561 'form.mail.report_subject' => 'Rapport Time Tracker',
562 '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.',
563 'form.mail.report_sent' => 'Le rapport a été envoyé.',
564 'form.mail.invoice_sent' => 'La facture a été envoyée.',
565
566 // Quotas configuration form. See example at https://timetracker.anuko.com/quotas.php after enabling Monthly quotas plugin.
567 'form.quota.year' => 'Année',
568 'form.quota.month' => 'Mois',
569 'form.quota.workday_hours' => 'Heures journée de travail',
570 '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.',
571
572 // Swap roles form. See example at https://timetracker.anuko.com/swap_roles.php.
573 // TODO: translate the following.
574 // 'form.swap.hint' => 'Demote yourself to a lower role by swapping roles with someone else. This cannot be undone.',
575 // 'form.swap.swap_with' => 'Swap roles with',
576
577 // Work Units configuration form. See example at https://timetracker.anuko.com/work_units.php after enabling Work units plugin.
578 // TODO: translate the following.
579 // 'form.work_units.minutes_in_unit' => 'Minutes in unit',
580 // 'form.work_units.1st_unit_threshold' => '1st unit threshold',
581
582 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
583 // TODO: translate the following.
584 // 'role.user.label' => 'User',
585 // 'role.user.low_case_label' => 'user',
586 // 'role.user.description' => 'A regular member without management rights.',
587 // 'role.client.label' => 'Client',
588 // 'role.client.low_case_label' => 'client',
589 // 'role.client.description' => 'A client can view its own data.',
590 // 'role.supervisor.label' => 'Supervisor',
591 // 'role.supervisor.low_case_label' => 'supervisor',
592 // 'role.supervisor.description' => 'A person with a small set of management rights.',
593 // 'role.comanager.label' => 'Co-manager',
594 // 'role.comanager.low_case_label' => 'co-manager',
595 // 'role.comanager.description' => 'A person with a big set of management functions.',
596 // 'role.manager.label' => 'Manager',
597 // 'role.manager.low_case_label' => 'manager',
598 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
599 // 'role.top_manager.label' => 'Top manager',
600 // 'role.top_manager.low_case_label' => 'top manager',
601 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
602 // 'role.admin.label' => 'Administrator',
603 // 'role.admin.low_case_label' => 'administrator',
604 // 'role.admin.description' => 'Site adminsitrator.',
605
606 // Timesheet View form. See example at https://timetracker.anuko.com/timesheet_view.php.
607 // TODO: translate the following.
608 // 'form.timesheet_view.submit_subject' => 'Timesheet approval request',
609 // 'form.timesheet_view.submit_body' => "A new timesheet requires approval.<p>User: %s.",
610 // 'form.timesheet_view.approve_subject' => 'Timesheet approved',
611 // 'form.timesheet_view.approve_body' => "Your timesheet %s was approved.<p>%s",
612 // 'form.timesheet_view.disapprove_subject' => 'Timesheet not approved',
613 // 'form.timesheet_view.disapprove_body' => "Your timesheet %s was not approved.<p>%s",
614 );