mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
ocaml tools: Translate a few messages which were not internationalized.
This commit is contained in:
@@ -97,7 +97,7 @@ let main () =
|
||||
| `Delete_cache -> (* --delete-cache *)
|
||||
(match cache with
|
||||
| Some cachedir ->
|
||||
message "Deleting: %s" cachedir;
|
||||
message (f_"Deleting: %s") cachedir;
|
||||
Cache.clean_cachedir cachedir;
|
||||
exit 0
|
||||
| None ->
|
||||
|
||||
@@ -285,7 +285,7 @@ let perform_operations_on_filesystems ?operations g root
|
||||
List.iter (
|
||||
function
|
||||
| { name = name; perform_on_filesystems = Some fn } ->
|
||||
message "Performing %S ..." name;
|
||||
message (f_"Performing %S ...") name;
|
||||
fn g root side_effects
|
||||
| { perform_on_filesystems = None } -> ()
|
||||
) ops
|
||||
@@ -306,7 +306,7 @@ let perform_operations_on_devices ?operations g root
|
||||
List.iter (
|
||||
function
|
||||
| { name = name; perform_on_devices = Some fn } ->
|
||||
message "Performing %S ..." name;
|
||||
message (f_"Performing %S ...") name;
|
||||
fn g root side_effects
|
||||
| { perform_on_devices = None } -> ()
|
||||
) ops
|
||||
|
||||
Reference in New Issue
Block a user