Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified tryton/tryton/data/locale/fr/LC_MESSAGES/tryton.mo
Binary file not shown.
7 changes: 7 additions & 0 deletions tryton/tryton/data/locale/fr/LC_MESSAGES/tryton.po
Original file line number Diff line number Diff line change
Expand Up @@ -1154,6 +1154,12 @@ msgstr "Supprimer l'enregistrement sélectionné"
msgid "%s%%"
msgstr "%s%%"

msgid "Replace"
msgstr "Remplacer"

msgid "Replace All"
msgstr "Remplacer tout"

msgid "L"
msgstr "L"

Expand Down Expand Up @@ -1192,3 +1198,4 @@ msgstr "#ERREUR"

msgid "Translate view"
msgstr "Traduire la vue"

Original file line number Diff line number Diff line change
Expand Up @@ -153,17 +153,17 @@ def __init__(self, view, attrs):
self.search_band.connect('key-press-event', self._hide_search)
self.search_entry = Gtk.Entry()
self.search_entry.props.max_width_chars = 40
self.search_entry.props.placeholder_text = "Search"
self.search_entry.props.placeholder_text = _("Search")
self.search_entry.connect('activate', self.do_search)
self.search_entry.set_icon_from_icon_name(
Gtk.EntryIconPosition.PRIMARY, 'system-search-symbolic')
self.replace_entry = Gtk.Entry()
self.replace_entry.props.max_width_chars = 40
self.replace_entry.props.placeholder_text = "Replace"
self.replace_entry.props.placeholder_text = _("Replace")
self.replace_entry.connect('activate', self.do_replace)
replace = Gtk.Button.new_with_label("Replace")
replace = Gtk.Button.new_with_label(_("Replace"))
replace.connect('clicked', self.do_replace)
replace_all = Gtk.Button.new_with_label("Replace All")
replace_all = Gtk.Button.new_with_label(_("Replace All"))
replace_all.connect('clicked', self.do_replace_all)
self.occurrence_label = Gtk.Label()
prev_button = Gtk.Button.new_from_icon_name(
Expand Down