30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# File '../../src/include/snapper/helps.rb', line 30
def initialize_snapper_helps(include_target)
textdomain "snapper"
@HELPS = {
"read" => _(
"<p><b><big>Reading the list of snapshots</big></b><br>\n</p>\n"
),
"summary" => _(
"<p><b><big>Snapshots Configuration</big></b><p>\n" +
"<p>The table shows a list of root filesystem snapshots. There are three types\n" +
"of snapshots, <b>single</b>, <b>pre</b> and <b>post</b>. Single snapshots are\n" +
"used for storing the file system state in a certain time, while Pre and Post are used to define the changes done by special operation performed between taking those two snapshots. Pre and Post snapshots are coupled together in the table.</p>\n" +
"<p>Select a snapshot or snapshot couple and click <b>Show Changes</b> to see the\n" +
"new file system changes in the specified snapshot.</p>\n"
),
"show_couple" => _(
"<p><b><big>Snapshot Overview</big></b><p>\n" +
"<p>\n" +
"The tree shows all the files that were modified between creating the first ('pre') and second ('post') snapshot. On the right side, you see the description generated when the first snapshot was created and the time of creation for both snapshots.\n" +
"</p>\n" +
"<p>\n" +
"When a file is selected in the tree, you see the changes done to it. By default, changes between selected coupled snapshots are shown, but it is possible to compare the file with different versions.\n" +
"</p>\n"
),
"show_single" => _(
"<p><b><big>Snapshot Overview</big></b><p>\n" +
"<p>\n" +
"The tree shows all the files that differ in a selected snapshot and the current system. On the right side, you see the snapshot description and time of its creation.\n" +
"</p>\n" +
"<p>\n" +
"When a file is selected in the tree, you can see the its difference between snapshot version and current system.\n" +
"</p>\n"
)
}
end
|