mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
- Form SDK implementation - Basic Forms - Dynamics Forms - Basic Blocks + Data Model Block - Form Compilation - Turbo integration
25 lines
556 B
PHP
25 lines
556 B
PHP
<?php
|
|
|
|
/**
|
|
* Localized data
|
|
*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license https://opensource.org/licenses/AGPL-3.0
|
|
*
|
|
*/
|
|
/**
|
|
*
|
|
*/
|
|
Dict::Add(
|
|
'FR FR',
|
|
'French',
|
|
'Français',
|
|
[
|
|
'UI:Component:Input:ChangeNotAllowed' => 'Cette modification n\'est pas autorisée',
|
|
'UI:Component:Input:Password:DoesNotMatch' => 'Les mots de passe ne correspondent pas',
|
|
'UI:Component:Input:Set:MinimumItems' => 'Minimum %1$s élément(s) requis',
|
|
|
|
'UI:Component:Input:Select:Select_item' => 'Sélectionnez un élément...',
|
|
]
|
|
);
|