blob: 77edd8b5ccafc3635ecc2fe182642d5a305c60a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Embed French language strings
*
*/
$french = array(
'embed:embed' => "Importé",
'embed:media' => "Fichier importé",
'embed:instructions' => "Cliquez sur le fichier de votre choix pour l'importer dans votre contenu.",
'embed:upload' => "Envoyer des médias",
'embed:upload_type' => "Envoyer type : ",
// messages
'embed:no_upload_content' => "Aucun fichier téléchargé !",
'embed:no_section_content' => "Pas d'éléments trouvés.",
'embed:no_sections' => "Aucun plugin gérant l'intégration de fichier média n'a été trouvé. Demander à l'administrateur du site d'activer un plugin gérant l'intégration de fichier média.",
);
add_translation("fr", $french);
|