diff options
Diffstat (limited to 'sysprep/sysprep_operation_utmp.ml')
-rw-r--r-- | sysprep/sysprep_operation_utmp.ml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysprep/sysprep_operation_utmp.ml b/sysprep/sysprep_operation_utmp.ml index cdcf01f8..c4a548d5 100644 --- a/sysprep/sysprep_operation_utmp.ml +++ b/sysprep/sysprep_operation_utmp.ml @@ -17,6 +17,7 @@ *) open Sysprep_operation +open Sysprep_gettext.Gettext module G = Guestfs @@ -31,11 +32,11 @@ let utmp_perform g root = let utmp_op = { name = "utmp"; enabled_by_default = true; - heading = "Remove the utmp file"; - pod_description = Some "\ + heading = s_"Remove the utmp file"; + pod_description = Some (s_"\ This file records who is currently logged in on a machine. In modern Linux distros it is stored in a ramdisk and hence not part of the -virtual machine's disk, but it was stored on disk in older distros."; +virtual machine's disk, but it was stored on disk in older distros."); extra_args = []; perform = utmp_perform; } |