From 7e86276ca9c2131ba9d515cb4d2a026143fd854d Mon Sep 17 00:00:00 2001
From: Marco de Freitas <marco@sillage.ch>
Date: Tue, 16 Jun 2020 23:52:43 +0200
Subject: [PATCH] Typo

---
 didacto/view.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/didacto/view.py b/didacto/view.py
index 43a2c71..acd2061 100644
--- a/didacto/view.py
+++ b/didacto/view.py
@@ -117,7 +117,7 @@ class View(tkinter.Frame):
         self.tv.column('files', width=250, stretch=True)
         self.tv.column('path', width=250, stretch=True)                            
         
-        self.tv.heading('#0', text='Mots-clef')
+        self.tv.heading('#0', text='Mots clés')
         self.tv.heading('files', text='Fichiers', anchor='center')
         self.tv.heading('path', text='Chemin', anchor='center')
         
@@ -140,7 +140,7 @@ class View(tkinter.Frame):
                                     command=self.tree_refresh, width=7).grid(row=1, column=2)
 
         self.keyword = tkinter.StringVar()
-        self.keyword.set('Double cliquer sur un mots-clef affiche ici sa définition')
+        self.keyword.set('Double cliquer sur un mot clé affiche ici sa définition')
         self.keyword_explained = tkinter.StringVar()
         self.l2 = tkinter.Label(self, textvariable=self.keyword).grid(row=5, sticky=tkinter.W)
         self.buttonSetKeywordExplanation = tkinter.Button (self,
@@ -160,7 +160,7 @@ class View(tkinter.Frame):
         self.popup = tkinter.Menu(self, tearoff=0)
         self.popup.add_command(label="Ouvrir fichier source",
                                command=lambda: self.open_source(self.popup_item))
-        self.popup.add_command(label="Modifier mots-clés", command=self.edit_pdf_keywords)
+        self.popup.add_command(label="Modifier mots clés", command=self.edit_pdf_keywords)
 
 
 
@@ -194,7 +194,7 @@ class View(tkinter.Frame):
         else:
             path = self.absolute_path(folder, name)
         curent_value = self.model.get_info(path)
-        title = "Modifier mots-clefs"
+        title = "Modifier mots clés"
         new_keywords = tkinter.simpledialog.askstring(title, prompt, initialvalue = curent_value)
         self.controller.edit_pdf_keywords(path, new_keywords)
         self.tree_refresh()
-- 
GitLab