1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/* -*- Mode: Blueprint; indent-tabs-mode: nil; tab-width: 2 -*-
*
* SPDX-License-Identifier: CC-BY-SA-4.0
* SPDX-FileCopyrightText: Michael Terry
*/
using Gtk 4.0;
template $FirstBackupDialog: $ActionDialog {
accept-label: C_("back up is verb", "_Back Up");
content-height: "650";
content-width: "500";
title: _("New Backup");
content: Box {
orientation: vertical;
spacing: 12;
$ConfigLocationGroup location_group {
title: _("Storage");
}
$ConfigIncludeFolderGroup includes {}
$ConfigExcludeFolderGroup excludes {}
};
}
|