Skip to content

Commit

Permalink
Merge pull request #43 from andrzejkupczyk/french-translation
Browse files Browse the repository at this point in the history
🌐 Add French language support
  • Loading branch information
andrzejkupczyk authored Apr 29, 2023
2 parents 7c12b4a + add954e commit 9538cd6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ you can follow these steps:
Currently supported languages are:
:de:
:es:
:fr:
:gb:
:poland:
:ru:
2 changes: 1 addition & 1 deletion ToDoLists.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class ToDoListsPlugin extends TermitePlugin
{
const VERSION = '3.0.1';
const VERSION = '3.0.2';

/**
* @var \WebGarden\ToDoLists\Http\Controller
Expand Down
21 changes: 21 additions & 0 deletions lang/strings_french.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

$s_plugin_ToDoLists_name = 'Liste de tâches';
$s_plugin_ToDoLists_description = 'Ajoute la possibilité de créer une liste de tâches.';
$s_plugin_ToDoLists_configuration = 'Configuration';

$s_plugin_ToDoLists_manage_threshold = 'Gestion';
$s_plugin_ToDoLists_manage_threshold_desc = 'Créer et gérer ses tâches';
$s_plugin_ToDoLists_view_threshold = 'Afficher';
$s_plugin_ToDoLists_view_threshold_desc = 'Afficher les tâches créées par les autres utilisateurs';

$s_plugin_ToDoLists_things_to_do = 'À faire';
$s_plugin_ToDoLists_add = 'Ajouter';
$s_plugin_ToDoLists_add_new_task = 'Ajouter une nouvelle tâche';
$s_plugin_ToDoLists_edit_task = 'Éditer la tâche';
$s_plugin_ToDoLists_enter_new_description = 'Entrer une nouvelle description de la tâche (120 caractères max):';
$s_plugin_ToDoLists_delete_task = 'Supprimer la tâche';
$s_plugin_ToDoLists_confirm_deletion = 'Êtes vous sûr de vouloir annuler la tâche en cours de création?';

$s_plugin_ToDoLists_task_created = 'Tâche créée';
$s_plugin_ToDoLists_task_updated = 'Tâche mise à jour';

0 comments on commit 9538cd6

Please sign in to comment.