We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7f0c4 commit a46dff5Copy full SHA for a46dff5
1 file changed
files/usr/share/cinnamon/cinnamon-screenshot/util.py
@@ -66,7 +66,7 @@ def build_filename(directory, file_type='png'):
66
"""Build a 'Screenshot <iso-timestamp>.<ext>' path inside directory.
67
Caller is responsible for passing an existing directory."""
68
timestamp = GLib.DateTime.new_now_local().format('%Y-%m-%d %H-%M-%S.%f')[:-3]
69
- return os.path.join(directory, f'Screenshot {timestamp}.{file_type}')
+ return os.path.join(directory, f'{_('Screenshot')} {timestamp}.{file_type}')
70
71
def show_in_file_manager(uri):
72
f = Gio.File.new_for_uri(uri)
0 commit comments