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