Skip to content

Commit

Permalink
Merge branch 'main' into jeremypw/split-header
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremypw authored Dec 6, 2024
2 parents 45cfbbd + d20f37a commit 7df6e76
Show file tree
Hide file tree
Showing 406 changed files with 5,530 additions and 3,998 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "builds@elementary.io"
with:
release_branch: 'odin'
release_branch: 'horus'
28 changes: 25 additions & 3 deletions data/files.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<screenshots>
<screenshot type="default">
<caption>Quick access to settings like zoom levels and hidden files</caption>
<image>https://raw.githubusercontent.com/elementary/files/7.0.0/data/screenshot-grid.png</image>
<image>https://raw.githubusercontent.com/elementary/files/7.1.0/data/screenshot-grid.png</image>
</screenshot>
<screenshot>
<caption>See more metadata at a glance in List view</caption>
<image>https://raw.githubusercontent.com/elementary/files/7.0.0/data/screenshot-list.png</image>
<image>https://raw.githubusercontent.com/elementary/files/7.1.0/data/screenshot-list.png</image>
</screenshot>
<screenshot>
<caption>Browse complex trees faster with Column view</caption>
<image>https://raw.githubusercontent.com/elementary/files/7.0.0/data/screenshot-column.png</image>
<image>https://raw.githubusercontent.com/elementary/files/7.1.0/data/screenshot-column.png</image>
</screenshot>
</screenshots>

Expand Down Expand Up @@ -62,6 +62,28 @@
<update_contact>contact_at_elementary.io</update_contact>

<releases>
<release version="7.1.0" date="2024-10-21" urgency="medium">
<description>
<p>Minor updates:</p>
<ul>
<li>Redesign file permissions view</li>
<li>Focus sidebar by pressing Ctrl + Left</li>
<li>Updated translations</li>
</ul>
</description>
<issues>
<issue url="https://github.com/elementary/files/issues/2214">When opened with specific file to select, the view is not showing that file</issue>
<issue url="https://github.com/elementary/files/issues/2327">The thumbnail does not update</issue>
<issue url="https://github.com/elementary/files/issues/2439">Build Failures</issue>
<issue url="https://github.com/elementary/files/issues/2451">pressing spacebar no longer opens selected file</issue>
<issue url="https://github.com/elementary/files/issues/2455">No large thumbnails</issue>
<issue url="https://github.com/elementary/files/issues/2483">With multiple files selected, clicking the right mouse button deselects everything</issue>
<issue url="https://github.com/elementary/files/issues/2492">List view : Cannot close subfolder view for a folder</issue>
<issue url="https://github.com/elementary/files/issues/2495">Segfault when opening folders that have just been pasted into an empty folder</issue>
<issue url="https://github.com/elementary/files/issues/2498">Cannot use search at all in Wayland session</issue>
</issues>
</release>

<release version="7.0.0" date="2024-08-02" urgency="medium">
<description>
<p>Minor updates:</p>
Expand Down
32 changes: 27 additions & 5 deletions libcore/ListModel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,37 @@ public class Files.ListModel : Gtk.TreeStore, Gtk.TreeModel {
return iter_n_children (null);
}

public bool get_first_iter_for_file (Files.File file, out Gtk.TreeIter? iter) {
public Gtk.TreePath? get_path_for_first_file (Files.File? file) {
if (file == null) {
return null;
}

Gtk.TreeIter? iter = null;
if (get_first_iter_for_file (file, out iter)) {
return get_path (iter);
} else {
return null;
}
}

private bool get_first_iter_for_file (Files.File? file, out Gtk.TreeIter? iter) {
iter = null;

if (file == null) {
return false;
}

var row = file_treerow_map.@get (file.uri);
if (row != null) {
get_iter (out iter, row.get_path ());
return true;
} else {
return false;
if (row.valid ()) {
get_iter (out iter, row.get_path ());
return true;
} else {
file_treerow_map.unset (file.uri);
}
}

return false;
}

public void get_value (Gtk.TreeIter iter, int column, out Value value) {
Expand Down
3 changes: 2 additions & 1 deletion libcore/SoundManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ namespace PF {
if (ca_context != null) {
ca_context.change_props (Canberra.PROP_APPLICATION_NAME, _(PF.Sound.APP_TITLE),
Canberra.PROP_APPLICATION_ID, PF.Sound.APP_ID,
Canberra.PROP_CANBERRA_XDG_THEME_NAME, PF.Sound.THEME,
Canberra.PROP_APPLICATION_ICON_NAME, PF.Sound.APP_LOGO);
ca_context.open ();
}
Expand All @@ -72,7 +73,7 @@ namespace PF {
const string APP_TITLE = "Files";
const string APP_ID = "io.elementary.files";
const string APP_LOGO = "system-file-manager";
public const string THEME = "freedesktop";
public const string THEME = "elementary";
public const string DELETE = "trash-empty";
public const string EMPTY_TRASH = "trash-empty";
}
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'io.elementary.files',
'vala', 'c',
version: '7.0.0',
version: '7.1.0',
meson_version: '>= 0.59.0'
)

Expand Down
2 changes: 1 addition & 1 deletion po/aa.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:46+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ab.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ae.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

Expand Down
2 changes: 1 addition & 1 deletion po/af.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2015-12-18 20:00+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ak.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pantheon-files\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-12-10 08:44+0000\n"
"Last-Translator: aberba <karabutaworld@gmail.com>\n"
"Language-Team: Akan <ak@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/am.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pantheon-files\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-06-30 19:10+0000\n"
"Last-Translator: Daniel Fore <Unknown>\n"
"Language-Team: Amharic <am@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/an.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ar.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: marlin\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2022-11-09 14:29+0000\n"
"Last-Translator: David Hewitt <davidmhewitt@gmail.com>\n"
"Language-Team: Arabic <https://l10n.elementary.io/projects/files/files/ar/>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/as.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ast.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2015-12-18 20:00+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/av.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:46+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ay.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/az.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2015-12-18 20:00+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ba.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/be.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pantheon-files\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-04-13 16:24+0000\n"
"Last-Translator: Mikel <mishkasta@gmail.com>\n"
"Language-Team: Belarusian <be@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/bg.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: marlin\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2017-04-09 19:04+0000\n"
"Last-Translator: Daniel Fore <Unknown>\n"
"Language-Team: Bulgarian\n"
Expand Down
2 changes: 1 addition & 1 deletion po/bh.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/bi.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:46+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/bm.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/bn.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pantheon-files\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2017-11-17 05:55+0000\n"
"Last-Translator: Subhadeep Jasu <subhajasu@gmail.com>\n"
"Language-Team: Bengali <https://weblate.elementary.io/projects/files/files/"
Expand Down
2 changes: 1 addition & 1 deletion po/bo.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/br.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/bs.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: marlin\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2022-09-19 03:03+0000\n"
"Last-Translator: Issa1553 <fairfull.playing@gmail.com>\n"
"Language-Team: Bosnian <https://l10n.elementary.io/projects/files/files/bs/"
Expand Down
2 changes: 1 addition & 1 deletion po/ca.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: marlin\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2024-09-02 20:05+0000\n"
"Last-Translator: David M <rbndavid@gmail.com>\n"
"Language-Team: Catalan <https://l10n.elementary.io/projects/files/files/ca/"
Expand Down
2 changes: 1 addition & 1 deletion po/ce.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:46+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ch.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ckb.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2022-09-21 10:08+0000\n"
"Last-Translator: Aga Ismael <agaesmaeel@gmail.com>\n"
"Language-Team: Kurdish (Central) <https://l10n.elementary.io/projects/files/"
Expand Down
2 changes: 1 addition & 1 deletion po/co.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:46+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/cr.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2016-08-02 15:47+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/cs.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: marlin\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-10 18:21+0000\n"
"POT-Creation-Date: 2024-10-21 21:48+0000\n"
"PO-Revision-Date: 2023-08-30 12:08+0000\n"
"Last-Translator: Jan <sebek_jan@yahoo.com>\n"
"Language-Team: Czech <https://l10n.elementary.io/projects/files/files/cs/>\n"
Expand Down
Loading

0 comments on commit 7df6e76

Please sign in to comment.