Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mat2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jvoisin
mat2
Commits
0c91ac73
Commit
0c91ac73
authored
3 years ago
by
Julien (jvoisin) Voisin
Browse files
Options
Downloads
Patches
Plain Diff
Implement code for internationalization
parent
708841f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nautilus/mat2.py
+14
-11
14 additions, 11 deletions
nautilus/mat2.py
with
14 additions
and
11 deletions
nautilus/mat2.py
+
14
−
11
View file @
0c91ac73
...
...
@@ -16,6 +16,7 @@ import queue
import
threading
from
typing
import
Tuple
,
Optional
,
List
from
urllib.parse
import
unquote
import
gettext
import
gi
gi
.
require_version
(
'
Nautilus
'
,
'
3.0
'
)
...
...
@@ -25,6 +26,8 @@ from gi.repository import Nautilus, GObject, Gtk, Gio, GLib, GdkPixbuf
from
libmat2
import
parser_factory
_
=
gettext
.
gettext
def
_remove_metadata
(
fpath
)
->
Tuple
[
bool
,
Optional
[
str
]]:
"""
This is a simple wrapper around libmat2, because it
'
s
...
...
@@ -51,11 +54,11 @@ class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWid
self
.
infobar
.
set_show_close_button
(
True
)
self
.
infobar_hbox
=
Gtk
.
Box
(
orientation
=
Gtk
.
Orientation
.
HORIZONTAL
)
btn
=
Gtk
.
Button
(
"
Show
"
)
btn
=
Gtk
.
Button
(
_
(
"
Show
"
)
)
btn
.
connect
(
"
clicked
"
,
self
.
__cb_show_failed
)
self
.
infobar_hbox
.
pack_end
(
btn
,
False
,
False
,
0
)
infobar_msg
=
Gtk
.
Label
(
"
Failed to clean some items
"
)
infobar_msg
=
Gtk
.
Label
(
_
(
"
Failed to clean some items
"
)
)
self
.
infobar_hbox
.
pack_start
(
infobar_msg
,
False
,
False
,
0
)
self
.
infobar
.
get_content_area
().
pack_start
(
self
.
infobar_hbox
,
True
,
True
,
0
)
...
...
@@ -90,9 +93,9 @@ class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWid
window
=
Gtk
.
Window
()
headerbar
=
Gtk
.
HeaderBar
()
window
.
set_titlebar
(
headerbar
)
headerbar
.
props
.
title
=
"
Metadata removal failed
"
headerbar
.
props
.
title
=
_
(
"
Metadata removal failed
"
)
close_buton
=
Gtk
.
Button
(
"
Close
"
)
close_buton
=
Gtk
.
Button
(
_
(
"
Close
"
)
)
close_buton
.
connect
(
"
clicked
"
,
lambda
_
:
window
.
close
())
headerbar
.
pack_end
(
close_buton
)
...
...
@@ -107,9 +110,9 @@ class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWid
"""
Validate if a given file FileInfo `fileinfo` can be processed.
Returns a boolean, and a textreason why
"""
if
fileinfo
.
get_uri_scheme
()
!=
"
file
"
or
fileinfo
.
is_directory
():
return
False
,
"
Not a file
"
return
False
,
_
(
"
Not a file
"
)
elif
not
fileinfo
.
can_write
():
return
False
,
"
Not writeable
"
return
False
,
_
(
"
Not writeable
"
)
return
True
,
""
def
__create_treeview
(
self
)
->
Gtk
.
TreeView
:
...
...
@@ -120,7 +123,7 @@ class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWid
column_pixbuf
=
Gtk
.
TreeViewColumn
(
"
Icon
"
,
renderer_pixbuf
,
pixbuf
=
0
)
treeview
.
append_column
(
column_pixbuf
)
for
idx
,
name
in
enumerate
([
'
File
'
,
'
Reason
'
]):
for
idx
,
name
in
enumerate
([
_
(
'
File
'
)
,
_
(
'
Reason
'
)
]):
renderer_text
=
Gtk
.
CellRendererText
()
column_text
=
Gtk
.
TreeViewColumn
(
name
,
renderer_text
,
text
=
idx
+
1
)
treeview
.
append_column
(
column_text
)
...
...
@@ -180,7 +183,7 @@ class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWid
return
False
progressbar
.
pulse
()
progressbar
.
set_text
(
"
Cleaning %s
"
%
fname
)
progressbar
.
set_text
(
_
(
"
Cleaning %s
"
)
%
fname
)
progressbar
.
show_all
()
self
.
infobar_hbox
.
show_all
()
self
.
infobar
.
show_all
()
...
...
@@ -202,7 +205,7 @@ class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWid
fpath
=
unquote
(
fileinfo
.
get_uri
()[
7
:])
# `len('file://') = 7`
success
,
mtype
=
_remove_metadata
(
fpath
)
if
not
success
:
self
.
failed_items
.
append
((
fname
,
mtype
,
'
Unsupported/invalid
'
))
self
.
failed_items
.
append
((
fname
,
mtype
,
_
(
'
Unsupported/invalid
'
))
)
processing_queue
.
put
(
None
)
# signal that we processed all the files
return
True
...
...
@@ -236,8 +239,8 @@ class Mat2Extension(GObject.GObject, Nautilus.MenuProvider, Nautilus.LocationWid
item
=
Nautilus
.
MenuItem
(
name
=
"
mat2::Remove_metadata
"
,
label
=
"
Remove metadata
"
,
tip
=
"
Remove metadata
"
label
=
_
(
"
Remove metadata
"
)
,
tip
=
_
(
"
Remove metadata
"
)
)
item
.
connect
(
'
activate
'
,
self
.
__cb_menu_activate
,
files
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment