summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJonathan Michalon <[email protected]>2020-01-07 18:41:47 +0100
committerraveit65 <[email protected]>2020-01-10 10:59:04 +0100
commit50079068123b0b793cb2b091342d49592ed87116 (patch)
treee274a1106090cbe7ebc02bc17e02f26eeef893ba /src
parent5374078bd1bc634ca8bb737204301151b5110cb1 (diff)
downloadcaja-50079068123b0b793cb2b091342d49592ed87116.tar.bz2
caja-50079068123b0b793cb2b091342d49592ed87116.tar.xz
Make device ejection notifications translatable
Diffstat (limited to 'src')
-rw-r--r--src/caja-places-sidebar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/caja-places-sidebar.c b/src/caja-places-sidebar.c
index 4cb4022d..12f26c49 100644
--- a/src/caja-places-sidebar.c
+++ b/src/caja-places-sidebar.c
@@ -2263,7 +2263,7 @@ volume_eject_cb (GObject *source_object,
}
else {
- caja_application_notify_unmount_show ("It is now safe to remove the drive");
+ caja_application_notify_unmount_show (_("It is now safe to remove the drive"));
}
}
@@ -2299,7 +2299,7 @@ mount_eject_cb (GObject *source_object,
}
else {
- caja_application_notify_unmount_show ("It is now safe to remove the drive");
+ caja_application_notify_unmount_show (_("It is now safe to remove the drive"));
}
}
@@ -2333,7 +2333,7 @@ do_eject (GMount *mount,
g_object_ref (sidebar->window));
}
- caja_application_notify_unmount_show ("writing data to the drive-do not unplug");
+ caja_application_notify_unmount_show (_("Writing data to the drive -- do not unplug"));
g_object_unref (mount_op);
}