Minor changes

This commit is contained in:
Tony George 2021-06-06 12:13:44 +05:30
parent d437358ac3
commit 9e525668da
11 changed files with 190 additions and 136 deletions

2
.gitignore vendored
View File

@ -27,3 +27,5 @@ debian/debhelper-build-stamp
debian/files
debian/timeshift.debhelper.log
debian/timeshift.substvars
debian/.debhelper/

View File

@ -1,20 +1,16 @@
app_fullname="Timeshift"
app_name="timeshift"
pkg_name="timeshift"
pkg_version=$(dpkg-parsechangelog --show-field Version)
build_deb=1
build_rpm=0
build_arch=0
build_deb=0
build_rpm=1
build_zst=0
deb_arch="amd64 i386 arm64 armhf" # amd64 i386 arm64 armhf
rpm_arch="" # x86_64 i686
arch_arch="" # x86_64 i686
zst_arch="" # x86_64 i686
pkg_version=$(dpkg-parsechangelog --show-field Version)
git_origin="git@github.com:teejee2008/timeshift.git"

54
archlinux/PKGBUILD Normal file
View File

@ -0,0 +1,54 @@
# Maintainer: Tony George teejeetech at gmail dot com
set -u
rm -rf *.pkg.tar*
if ! [ -d src ]; then
rsync -avh --delete --exclude=.git --exclude=archlinux --exclude=debian --exclude=release ../ src/
fi
pkgname='timeshift'
pkgver="$(cd .. && dpkg-parsechangelog --show-field Version)"
pkgrel='1'
pkgdesc='System restore tool for Linux'
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
license=('gplv2')
# required for build and run
depends=('libgee>=0.18.0' 'libsoup' 'json-glib' 'desktop-file-utils' 'vte3' 'rsync')
# required for build
# dpkg is needed to parse version string
makedepends=('vala' 'dpkg' 'diffutils' 'coreutils')
optdepends=(
'cronie: scheduling'
)
_srcdir=./
source=()
prepare() {
set -u
cd "${_srcdir}"
set +u
}
build() {
set -u
make -C "${_srcdir}" -s -j1
set +u
}
package() {
set -u
make -C "${_srcdir}" -j1 DESTDIR="${pkgdir}" install
set +u
}
set +u
# (cd archlinux; makepkg )
# sudo pacman -U --noconfirm ./${pkgname}-20.08.3-1-x86_64.pkg.tar.zst

12
debian/changelog vendored
View File

@ -1,3 +1,15 @@
timeshift (21.06) focal; urgency=medium
* Update packaging
* Update translations
* Update website links
* Fix for parsing lsblk output - #425, #753, #755
-- Tony George <teejeetech@gmail.com> Sun, 06 Jun 2021 10:00:00 +0530
timeshift (20.11.1) focal; urgency=medium
* Fix #631: Escape single quote in LUKS password when unlocking device

View File

@ -14,7 +14,15 @@ manpage:
cd src; make manpage
dist-release:
build
build-release
dist-publish:
build-update-repo-debian
build-update-repo-redhat
build-update-repo-archlinux
dist-upload:
build-upload
dist-deb:
build-deb amd64

View File

@ -38,7 +38,7 @@ using TeeJee.Misc;
public Main App;
public const string AppName = "Timeshift";
public const string AppShortName = "timeshift";
public const string AppVersion = "20.11.1";
public const string AppVersion = "21.06";
public const string AppAuthor = "Tony George";
public const string AppAuthorEmail = "teejeetech@gmail.com";

View File

@ -37,7 +37,7 @@ using TeeJee.Misc;
public Main App;
public const string AppName = "Timeshift";
public const string AppShortName = "timeshift";
public const string AppVersion = "20.11.1";
public const string AppVersion = "21.06";
public const string AppAuthor = "Tony George";
public const string AppAuthorEmail = "teejeetech@gmail.com";

View File

@ -569,7 +569,6 @@ class BackupDeviceBox : Gtk.Box{
}
return ok;
}

View File

@ -945,13 +945,13 @@ class MainWindow : Gtk.Window{
dialog.program_name = AppName;
dialog.comments = _("System Restore Utility");
dialog.copyright = "Copyright © 2012-18 Tony George (%s)".printf(AppAuthorEmail);
dialog.copyright = "Copyright © 2012-21 Tony George (%s)".printf(AppAuthorEmail);
dialog.version = AppVersion;
dialog.logo = IconManager.lookup("timeshift", 256);
//dialog.license = "";
dialog.website = "https://teejeetech.in/";
dialog.website_label = "https://teejeetech.in/";
dialog.website = "https://teejeetech.com/";
dialog.website_label = "https://teejeetech.com/";
dialog.initialize();
dialog.show_all();

View File

@ -63,7 +63,7 @@ public class DonationWindow : Gtk.Window {
// -----------------------------
string msg = _("This software is free for personal and commercial use. It is distributed in the hope that it is useful but without any warranty. See the GNU General Public License v2 or later for more information");
string msg = _("This software is free for personal and commercial use. It is distributed in the hope that it is useful but without any warranty or support. See the GNU General Public License v2 or later for more information");
add_label(msg);
@ -77,12 +77,8 @@ public class DonationWindow : Gtk.Window {
"https://www.paypal.com/cgi-bin/webscr?business=teejeetech@gmail.com&cmd=_xclick&currency_code=USD&item_name=%s+Donation".printf(appname));
// -----------------------------
msg = format_heading(_("Support")) + " ";
add_label(msg);
msg = _("You can use the GitHub issue tracker for reporting issues, or post your questions on the Linux Mint forums. Please avoid reporting issues by email.");
msg = _("Use the GitHub issue tracker for reporting issues, or post your questions on the Linux Mint forums. Please avoid reporting issues by email.");
add_label(msg);
@ -91,18 +87,21 @@ public class DonationWindow : Gtk.Window {
add_button(hbox, _("GitHub"), "https://github.com/teejee2008/%s/issues".printf(appname.down()));
if (has_wiki){
add_button(hbox, _("Wiki"), "https://github.com/teejee2008/%s/wiki".printf(appname.down()));
}
add_button(hbox, _("Website"), "https://teejeetech.in/");
// close window ---------------------------------------------------------
var lbl_dummy = add_label("");
lbl_dummy.margin = 20;
hbox = add_hbox();
add_button(hbox, _("Website"), "https://teejeetech.com/");
add_button(hbox, _("More Apps"), "https://teejeetech.com/shop/");
var button = new Gtk.Button.with_label(_("Close"));
button.margin_top = 24;
hbox.add(button);
button.clicked.connect(() => {

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: timeshift 18.2\n"
"Report-Msgid-Bugs-To: teejeetech@gmail.com\n"
"POT-Creation-Date: 2020-11-16 17:44+0530\n"
"POT-Creation-Date: 2021-03-12 12:14+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -24,7 +24,7 @@ msgid ""
"Press ENTER to continue..."
msgstr ""
#: Core/SnapshotRepo.vala:617
#: Core/SnapshotRepo.vala:613
#, c-format
msgid "%d snapshots, %s free"
msgstr ""
@ -188,11 +188,11 @@ msgstr ""
msgid "Application will exit."
msgstr ""
#: Utility/Gtk/AboutWindow.vala:433
#: Utility/Gtk/AboutWindow.vala:437
msgid "Artists"
msgstr ""
#: Utility/Gtk/AboutWindow.vala:417
#: Utility/Gtk/AboutWindow.vala:421
msgid "Authors"
msgstr ""
@ -230,7 +230,7 @@ msgid ""
"failures."
msgstr ""
#: Utility/Gtk/AboutWindow.vala:349 Utility/Gtk/AboutWindow.vala:381
#: Utility/Gtk/AboutWindow.vala:353 Utility/Gtk/AboutWindow.vala:385
msgid "Back"
msgstr ""
@ -299,7 +299,7 @@ msgstr ""
msgid "Building file list..."
msgstr ""
#: Utility/GtkHelper.vala:120 Utility/Gtk/CustomMessageDialog.vala:172
#: Utility/GtkHelper.vala:119 Utility/Gtk/CustomMessageDialog.vala:149
#: Gtk/RestoreWindow.vala:209 Gtk/RestoreWindow.vala:218
#: Gtk/SetupWizardWindow.vala:220 Gtk/BackupWindow.vala:181
#: Gtk/DeleteWindow.vala:190
@ -372,7 +372,7 @@ msgstr ""
msgid "Cloning system..."
msgstr ""
#: Utility/Gtk/AboutWindow.vala:326 Utility/Gtk/DonationWindow.vala:104
#: Utility/Gtk/AboutWindow.vala:330 Utility/Gtk/DonationWindow.vala:104
#: Gtk/RestoreWindow.vala:495 Gtk/BackupWindow.vala:172
#: Gtk/BootOptionsWindow.vala:106 Gtk/DeleteWindow.vala:173
#: Gtk/RsyncLogBox.vala:266
@ -418,7 +418,7 @@ msgstr ""
msgid "Continue with restore? (y/n): "
msgstr ""
#: Utility/Gtk/AboutWindow.vala:425
#: Utility/Gtk/AboutWindow.vala:429
msgid "Contributors"
msgstr ""
@ -484,7 +484,7 @@ msgstr ""
msgid "Create snapshot of current system"
msgstr ""
#: Gtk/MainWindow.vala:1058
#: Gtk/MainWindow.vala:1064
msgid ""
"Create snapshots manually or enable scheduled snapshots to protect your "
"system"
@ -536,7 +536,7 @@ msgstr ""
msgid "Creating pre-restore snapshot from system subvolumes..."
msgstr ""
#: Utility/Gtk/AboutWindow.vala:321 Utility/Gtk/AboutWindow.vala:387
#: Utility/Gtk/AboutWindow.vala:325 Utility/Gtk/AboutWindow.vala:391
msgid "Credits"
msgstr ""
@ -648,8 +648,8 @@ msgstr ""
#: Console/AppConsole.vala:456 Console/AppConsole.vala:495
#: Console/AppConsole.vala:543 Utility/Device.vala:1932
#: Utility/Device.vala:1942 Gtk/RestoreDeviceBox.vala:97
#: Core/SnapshotRepo.vala:76 Core/SnapshotRepo.vala:659
#: Core/SnapshotRepo.vala:662 Core/Main.vala:2134 Core/Main.vala:2166
#: Core/SnapshotRepo.vala:76 Core/SnapshotRepo.vala:655
#: Core/SnapshotRepo.vala:658 Core/Main.vala:2134 Core/Main.vala:2166
#, c-format
msgid "Device"
msgstr ""
@ -662,7 +662,7 @@ msgstr ""
msgid "Device name is empty!"
msgstr ""
#: Console/AppConsole.vala:665 Core/SnapshotRepo.vala:536 Core/Main.vala:3264
#: Console/AppConsole.vala:665 Core/SnapshotRepo.vala:532 Core/Main.vala:3264
msgid "Device not found"
msgstr ""
@ -688,7 +688,7 @@ msgstr ""
msgid "Devices with Windows file systems are not supported (NTFS, FAT, etc)."
msgstr ""
#: Core/SnapshotRepo.vala:974
#: Core/SnapshotRepo.vala:970
msgid "Directory not found"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Distribution"
msgstr ""
#: Utility/Gtk/AboutWindow.vala:449
#: Utility/Gtk/AboutWindow.vala:453
msgid "Documentation"
msgstr ""
@ -713,7 +713,7 @@ msgstr ""
msgid "Donate"
msgstr ""
#: Utility/Gtk/AboutWindow.vala:465
#: Utility/Gtk/AboutWindow.vala:469
msgid "Donations"
msgstr ""
@ -721,7 +721,7 @@ msgstr ""
msgid "Enable BTRFS qgroups (recommended)"
msgstr ""
#: Gtk/MainWindow.vala:1052
#: Gtk/MainWindow.vala:1058
msgid "Enable scheduled snapshots to protect your system"
msgstr ""
@ -752,10 +752,6 @@ msgstr ""
msgid "Enter passphrase to unlock '%s'"
msgstr ""
#: Utility/GtkHelper.vala:623
msgid "Enter path or browse for directory"
msgstr ""
#: Console/AppConsole.vala:756
#, c-format
msgid "Enter snapshot number (a=Abort, p=Previous, n=Next)"
@ -845,7 +841,7 @@ msgstr ""
msgid "Failed to create subvolume snapshot"
msgstr ""
#: Core/SnapshotRepo.vala:1015
#: Core/SnapshotRepo.vala:1011
msgid "Failed to create symlinks"
msgstr ""
@ -865,7 +861,7 @@ msgstr ""
msgid "Failed to delete snapshot subvolume"
msgstr ""
#: Core/SnapshotRepo.vala:1041
#: Core/SnapshotRepo.vala:1037
msgid "Failed to delete symlinks"
msgstr ""
@ -931,7 +927,7 @@ msgstr ""
msgid "Failed to read file"
msgstr ""
#: Core/SnapshotRepo.vala:961
#: Core/SnapshotRepo.vala:957
msgid "Failed to remove"
msgstr ""
@ -1037,7 +1033,7 @@ msgstr ""
msgid "Firefox, Chromium, Chrome, Opera, Epiphany, Midori"
msgstr ""
#: Core/SnapshotRepo.vala:643
#: Core/SnapshotRepo.vala:639
msgid "First snapshot requires:"
msgstr ""
@ -1069,7 +1065,7 @@ msgstr ""
msgid "Generating initramfs..."
msgstr ""
#: Utility/Gtk/DonationWindow.vala:91
#: Utility/Gtk/DonationWindow.vala:87
msgid "GitHub"
msgstr ""
@ -1167,7 +1163,7 @@ msgstr ""
msgid "Invalid command line arguments"
msgstr ""
#: Gtk/MainWindow.vala:817
#: Gtk/MainWindow.vala:823
msgid "Invalid snapshot"
msgstr ""
@ -1275,12 +1271,12 @@ msgstr ""
msgid "Last weekly snapshot not found"
msgstr ""
#: Gtk/MainWindow.vala:1033
#: Gtk/MainWindow.vala:1039
#, c-format
msgid "Latest snapshot"
msgstr ""
#: Utility/Gtk/AboutWindow.vala:316 Utility/Gtk/AboutWindow.vala:356
#: Utility/Gtk/AboutWindow.vala:320 Utility/Gtk/AboutWindow.vala:360
msgid "License"
msgstr ""
@ -1301,7 +1297,7 @@ msgstr ""
msgid "List snapshots"
msgstr ""
#: Gtk/MainWindow.vala:984
#: Gtk/MainWindow.vala:990
msgid "Live USB Mode (Restore Only)"
msgstr ""
@ -1315,14 +1311,10 @@ msgid "Main window closed by user"
msgstr ""
#: Gtk/SnapshotListBox.vala:329
msgid "Mark for Deletion"
msgid "Mark/Unmark for Deletion"
msgstr ""
#: Gtk/MainWindow.vala:634
msgid "Marked for deletion"
msgstr ""
#: Core/SnapshotRepo.vala:688 Core/SnapshotRepo.vala:731
#: Core/SnapshotRepo.vala:684 Core/SnapshotRepo.vala:727
msgid "Maximum backups exceeded for backup level"
msgstr ""
@ -1342,7 +1334,7 @@ msgstr ""
msgid "Missing Dependencies"
msgstr ""
#: Core/SnapshotRepo.vala:665
#: Core/SnapshotRepo.vala:661
#, c-format
msgid "Mode"
msgstr ""
@ -1364,6 +1356,10 @@ msgstr ""
msgid "Monthly snapshot failed!"
msgstr ""
#: Utility/Gtk/DonationWindow.vala:102
msgid "More Apps"
msgstr ""
#: Core/Main.vala:2133 Core/Main.vala:2166
msgid "Mount"
msgstr ""
@ -1372,7 +1368,7 @@ msgstr ""
msgid "Moved system subvolume to snapshot directory"
msgstr ""
#: Gtk/MainWindow.vala:793
#: Gtk/MainWindow.vala:799
msgid "Multiple snapshots selected"
msgstr ""
@ -1386,7 +1382,7 @@ msgstr ""
msgid "Next"
msgstr ""
#: Utility/Gtk/CustomMessageDialog.vala:177
#: Utility/Gtk/CustomMessageDialog.vala:154
msgid "No"
msgstr ""
@ -1398,12 +1394,12 @@ msgstr ""
msgid "No Snapshots Selected"
msgstr ""
#: Gtk/MainWindow.vala:1057
#: Gtk/MainWindow.vala:1063
msgid "No snapshots available"
msgstr ""
#: Console/AppConsole.vala:321 Gtk/MainWindow.vala:1001
#: Core/SnapshotRepo.vala:890
#: Console/AppConsole.vala:321 Gtk/MainWindow.vala:1007
#: Core/SnapshotRepo.vala:886
msgid "No snapshots found"
msgstr ""
@ -1415,15 +1411,15 @@ msgstr ""
msgid "No snapshots on device"
msgstr ""
#: Core/SnapshotRepo.vala:641
#: Core/SnapshotRepo.vala:637
msgid "No snapshots on this device"
msgstr ""
#: Gtk/MainWindow.vala:786
#: Gtk/MainWindow.vala:792
msgid "No snapshots selected"
msgstr ""
#: Gtk/MainWindow.vala:1034 Gtk/MainWindow.vala:1036
#: Gtk/MainWindow.vala:1040 Gtk/MainWindow.vala:1042
msgid "None"
msgstr ""
@ -1432,7 +1428,7 @@ msgstr ""
msgid "Not Found"
msgstr ""
#: Core/SnapshotRepo.vala:659
#: Core/SnapshotRepo.vala:655
msgid "Not Selected"
msgstr ""
@ -1440,7 +1436,7 @@ msgstr ""
msgid "Not Supported"
msgstr ""
#: Core/SnapshotRepo.vala:605 Core/SnapshotRepo.vala:632
#: Core/SnapshotRepo.vala:601 Core/SnapshotRepo.vala:628
msgid "Not enough disk space"
msgstr ""
@ -1463,9 +1459,9 @@ msgid ""
"Older snapshots will be removed once this limit is exceeded."
msgstr ""
#: Utility/GtkHelper.vala:119 Utility/Gtk/CustomMessageDialog.vala:167
#: Utility/Gtk/CustomMessageDialog.vala:171 Gtk/SettingsWindow.vala:123
#: Gtk/ExcludeListSummaryWindow.vala:84 Core/SnapshotRepo.vala:615
#: Utility/GtkHelper.vala:118 Utility/Gtk/CustomMessageDialog.vala:144
#: Utility/Gtk/CustomMessageDialog.vala:148 Gtk/SettingsWindow.vala:123
#: Gtk/ExcludeListSummaryWindow.vala:84 Core/SnapshotRepo.vala:611
msgid "OK"
msgstr ""
@ -1479,7 +1475,7 @@ msgstr ""
msgid "Older log files removed"
msgstr ""
#: Gtk/MainWindow.vala:1035
#: Gtk/MainWindow.vala:1041
msgid "Oldest snapshot"
msgstr ""
@ -1528,7 +1524,7 @@ msgstr ""
msgid "Partition has an unsupported subvolume layout."
msgstr ""
#: Gtk/RestoreDeviceBox.vala:93 Core/SnapshotRepo.vala:664
#: Gtk/RestoreDeviceBox.vala:93 Core/SnapshotRepo.vala:660
#, c-format
msgid "Path"
msgstr ""
@ -1566,7 +1562,7 @@ msgstr ""
msgid "Please save your work and close all applications."
msgstr ""
#: Gtk/MainWindow.vala:688
#: Gtk/MainWindow.vala:694
msgid "Please select a snapshot to view the log!"
msgstr ""
@ -1578,7 +1574,7 @@ msgstr ""
msgid "Please wait a few minutes and try again."
msgstr ""
#: Gtk/MainWindow.vala:755
#: Gtk/MainWindow.vala:761
msgid "Please wait for snapshots to be deleted."
msgstr ""
@ -1665,13 +1661,13 @@ msgstr ""
msgid "Remove"
msgstr ""
#: Core/Snapshot.vala:509 Core/SnapshotRepo.vala:967 Core/Main.vala:1637
#: Core/Snapshot.vala:509 Core/SnapshotRepo.vala:963 Core/Main.vala:1637
#: Core/Main.vala:1648 Core/Main.vala:4229
#, c-format
msgid "Removed"
msgstr ""
#: Utility/CronTab.vala:341
#: Utility/CronTab.vala:340
msgid "Removed cron task"
msgstr ""
@ -1692,8 +1688,8 @@ msgstr ""
msgid "Removing snapshot"
msgstr ""
#: Core/SnapshotRepo.vala:823 Core/SnapshotRepo.vala:842
#: Core/SnapshotRepo.vala:860 Core/SnapshotRepo.vala:874
#: Core/SnapshotRepo.vala:819 Core/SnapshotRepo.vala:838
#: Core/SnapshotRepo.vala:856 Core/SnapshotRepo.vala:870
#, c-format
msgid "Removing snapshots"
msgstr ""
@ -1822,7 +1818,7 @@ msgstr ""
msgid "Scheduled snapshot in progress..."
msgstr ""
#: Gtk/MainWindow.vala:1051 Gtk/ScheduleBox.vala:312 Core/Main.vala:1167
#: Gtk/MainWindow.vala:1057 Gtk/ScheduleBox.vala:312 Core/Main.vala:1167
msgid "Scheduled snapshots are disabled"
msgstr ""
@ -1845,7 +1841,7 @@ msgstr ""
msgid "Select '%s' device (default = %s)"
msgstr ""
#: Console/AppConsole.vala:691 Core/SnapshotRepo.vala:569
#: Console/AppConsole.vala:691 Core/SnapshotRepo.vala:565
msgid "Select BTRFS system disk with root subvolume (@)"
msgstr ""
@ -1853,11 +1849,7 @@ msgstr ""
msgid "Select GRUB device"
msgstr ""
#: Utility/GtkHelper.vala:633
msgid "Select Path"
msgstr ""
#: Gtk/MainWindow.vala:687
#: Gtk/MainWindow.vala:693
msgid "Select Snapshot"
msgstr ""
@ -1886,7 +1878,7 @@ msgstr ""
msgid "Select a partition on this disk"
msgstr ""
#: Gtk/MainWindow.vala:794
#: Gtk/MainWindow.vala:800
msgid "Select a single snapshot to restore"
msgstr ""
@ -1894,7 +1886,7 @@ msgstr ""
msgid "Select another device for root file system (/)"
msgstr ""
#: Core/SnapshotRepo.vala:608 Core/SnapshotRepo.vala:635
#: Core/SnapshotRepo.vala:604 Core/SnapshotRepo.vala:631
msgid "Select another device or free up some space"
msgstr ""
@ -1946,11 +1938,11 @@ msgstr ""
msgid "Select the items to be removed from the list"
msgstr ""
#: Core/SnapshotRepo.vala:529
#: Core/SnapshotRepo.vala:525
msgid "Select the snapshot device"
msgstr ""
#: Gtk/MainWindow.vala:787
#: Gtk/MainWindow.vala:793
msgid "Select the snapshot to restore"
msgstr ""
@ -1986,7 +1978,7 @@ msgstr ""
msgid "Selected snapshot device"
msgstr ""
#: Console/AppConsole.vala:690 Core/SnapshotRepo.vala:568
#: Console/AppConsole.vala:690 Core/SnapshotRepo.vala:564
msgid "Selected snapshot device is not a system disk"
msgstr ""
@ -1994,7 +1986,7 @@ msgstr ""
msgid "Selected snapshot is marked for deletion"
msgstr ""
#: Gtk/MainWindow.vala:818
#: Gtk/MainWindow.vala:824
msgid "Selected snapshot is marked for deletion and cannot be restored"
msgstr ""
@ -2069,8 +2061,8 @@ msgstr ""
msgid "Skip GRUB2 reinstall"
msgstr ""
#: Gtk/SnapshotListBox.vala:95 Core/SnapshotRepo.vala:691
#: Core/SnapshotRepo.vala:744 Core/Main.vala:2052
#: Gtk/SnapshotListBox.vala:95 Core/SnapshotRepo.vala:687
#: Core/SnapshotRepo.vala:740 Core/Main.vala:2052
#, c-format
msgid "Snapshot"
msgstr ""
@ -2091,24 +2083,24 @@ msgstr ""
msgid "Snapshot Levels"
msgstr ""
#: Gtk/MainWindow.vala:754
#: Gtk/MainWindow.vala:760
msgid "Snapshot deletion in progress..."
msgstr ""
#: Core/SnapshotRepo.vala:446
#: Core/SnapshotRepo.vala:442
#, c-format
msgid "Snapshot device"
msgstr ""
#: Console/AppConsole.vala:664 Core/SnapshotRepo.vala:535
#: Console/AppConsole.vala:664 Core/SnapshotRepo.vala:531
msgid "Snapshot device not available"
msgstr ""
#: Console/AppConsole.vala:660 Core/SnapshotRepo.vala:528
#: Console/AppConsole.vala:660 Core/SnapshotRepo.vala:524
msgid "Snapshot device not selected"
msgstr ""
#: Core/SnapshotRepo.vala:450
#: Core/SnapshotRepo.vala:446
#, c-format
msgid "Snapshot location"
msgstr ""
@ -2187,7 +2179,7 @@ msgid ""
"locations are not supported."
msgstr ""
#: Gtk/MainWindow.vala:996
#: Gtk/MainWindow.vala:1002
msgid "Snapshots available for restore"
msgstr ""
@ -2202,7 +2194,7 @@ msgstr ""
msgid "Snapshots cannot be created in Live CD mode"
msgstr ""
#: Gtk/MainWindow.vala:1043
#: Gtk/MainWindow.vala:1049
msgid "Snapshots will be created at selected intervals"
msgstr ""
@ -2212,10 +2204,6 @@ msgid ""
"space (> 1 GB)"
msgstr ""
#: Gtk/MainWindow.vala:635
msgid "Snapshots will be removed during the next scheduled run"
msgstr ""
#: Console/AppConsole.vala:376
msgid "Specify backup device (default: config)"
msgstr ""
@ -2232,8 +2220,8 @@ msgstr ""
msgid "Specify target device"
msgstr ""
#: Gtk/RsyncLogBox.vala:472 Core/SnapshotRepo.vala:456
#: Core/SnapshotRepo.vala:666
#: Gtk/RsyncLogBox.vala:472 Core/SnapshotRepo.vala:452
#: Core/SnapshotRepo.vala:662
#, c-format
msgid "Status"
msgstr ""
@ -2261,10 +2249,6 @@ msgstr ""
msgid "Summary"
msgstr ""
#: Utility/Gtk/DonationWindow.vala:81
msgid "Support"
msgstr ""
#: Console/AppConsole.vala:378
msgid "Switch to BTRFS mode (default: config)"
msgstr ""
@ -2273,7 +2257,7 @@ msgstr ""
msgid "Switch to RSYNC mode (default: config)"
msgstr ""
#: Core/SnapshotRepo.vala:1021
#: Core/SnapshotRepo.vala:1017
msgid "Symlinks updated"
msgstr ""
@ -2294,7 +2278,7 @@ msgstr ""
msgid "System"
msgstr ""
#: Gtk/MainWindow.vala:941
#: Gtk/MainWindow.vala:947
msgid "System Restore Utility"
msgstr ""
@ -2369,11 +2353,11 @@ msgstr ""
#: Utility/Gtk/DonationWindow.vala:66
msgid ""
"This software is free for personal and commercial use. It is distributed in "
"the hope that it is useful but without any warranty. See the GNU General "
"Public License v2 or later for more information"
"the hope that it is useful but without any warranty or support. See the GNU "
"General Public License v2 or later for more information"
msgstr ""
#: Gtk/MainWindow.vala:1031 Gtk/MainWindow.vala:1042
#: Gtk/MainWindow.vala:1037 Gtk/MainWindow.vala:1048
msgid "Timeshift is active"
msgstr ""
@ -2387,11 +2371,11 @@ msgstr ""
msgid "To restore with default options, press the ENTER key for all prompts!"
msgstr ""
#: Utility/Gtk/AboutWindow.vala:457
#: Utility/Gtk/AboutWindow.vala:461
msgid "Tools"
msgstr ""
#: Utility/Gtk/AboutWindow.vala:441
#: Utility/Gtk/AboutWindow.vala:445
msgid "Translations"
msgstr ""
@ -2470,6 +2454,12 @@ msgstr ""
msgid "Updating bootloader configuration..."
msgstr ""
#: Utility/Gtk/DonationWindow.vala:81
msgid ""
"Use the GitHub issue tracker for reporting issues, or post your questions on "
"the Linux Mint forums. Please avoid reporting issues by email."
msgstr ""
#: Utility/Device.vala:1956
#, c-format
msgid "Used"
@ -2529,7 +2519,7 @@ msgstr ""
msgid "Web Browsers"
msgstr ""
#: Utility/Gtk/DonationWindow.vala:98
#: Utility/Gtk/DonationWindow.vala:100
msgid "Website"
msgstr ""
@ -2545,7 +2535,7 @@ msgstr ""
msgid "Weekly snapshots are enabled"
msgstr ""
#: Utility/Gtk/DonationWindow.vala:95
#: Utility/Gtk/DonationWindow.vala:90
msgid "Wiki"
msgstr ""
@ -2561,7 +2551,7 @@ msgstr ""
msgid "Wrong password"
msgstr ""
#: Utility/Gtk/CustomMessageDialog.vala:176
#: Utility/Gtk/CustomMessageDialog.vala:153
msgid "Yes"
msgstr ""
@ -2572,12 +2562,6 @@ msgid ""
"later if required, to 'undo' the restore."
msgstr ""
#: Utility/Gtk/DonationWindow.vala:85
msgid ""
"You can use the GitHub issue tracker for reporting issues, or post your "
"questions on the Linux Mint forums. Please avoid reporting issues by email."
msgstr ""
#: Gtk/RestoreDeviceBox.vala:413
msgid ""
"[Advanced Users Only] Change these settings only if the restored system "
@ -2598,7 +2582,7 @@ msgstr ""
msgid "[Warning] Deleted invalid lock"
msgstr ""
#: Core/SnapshotRepo.vala:874
#: Core/SnapshotRepo.vala:870
msgid "all"
msgstr ""
@ -2619,11 +2603,11 @@ msgstr ""
msgid "crontab file installed"
msgstr ""
#: Core/SnapshotRepo.vala:860
#: Core/SnapshotRepo.vala:856
msgid "incomplete"
msgstr ""
#: Core/SnapshotRepo.vala:842
#: Core/SnapshotRepo.vala:838
msgid "marked for deletion"
msgstr ""
@ -2640,7 +2624,7 @@ msgstr ""
msgid "rsync returned an error"
msgstr ""
#: Core/SnapshotRepo.vala:691 Core/SnapshotRepo.vala:744
#: Core/SnapshotRepo.vala:823
#: Core/SnapshotRepo.vala:687 Core/SnapshotRepo.vala:740
#: Core/SnapshotRepo.vala:819
msgid "un-tagged"
msgstr ""