diff --git a/didacto/view.py b/didacto/view.py index 43a2c712ed9c2ed7eea2e5689724f1fcd5aef7fd..acd2061c064b93e9987ffb649536004ae1f68ab6 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()