mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-12-08 17:44:49 +01:00
Bug 589631 - enclose literals with double quotes
Improve strings for purpose of translation. Based on a patch from Leonardo Ferreira Fontenelle.
This commit is contained in:
10
gio/gmount.c
10
gio/gmount.c
@@ -406,7 +406,7 @@ g_mount_unmount (GMount *mount,
|
|||||||
/* Translators: This is an error
|
/* Translators: This is an error
|
||||||
* message for mount objects that
|
* message for mount objects that
|
||||||
* don't implement unmount. */
|
* don't implement unmount. */
|
||||||
_("mount doesn't implement unmount"));
|
_("mount doesn't implement \"unmount\""));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -485,7 +485,7 @@ g_mount_eject (GMount *mount,
|
|||||||
/* Translators: This is an error
|
/* Translators: This is an error
|
||||||
* message for mount objects that
|
* message for mount objects that
|
||||||
* don't implement eject. */
|
* don't implement eject. */
|
||||||
_("mount doesn't implement eject"));
|
_("mount doesn't implement \"eject\""));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -565,7 +565,7 @@ g_mount_unmount_with_operation (GMount *mount,
|
|||||||
/* Translators: This is an error
|
/* Translators: This is an error
|
||||||
* message for mount objects that
|
* message for mount objects that
|
||||||
* don't implement any of unmount or unmount_with_operation. */
|
* don't implement any of unmount or unmount_with_operation. */
|
||||||
_("mount doesn't implement unmount or unmount_with_operation"));
|
_("mount doesn't implement \"unmount\" or \"unmount_with_operation\""));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -652,7 +652,7 @@ g_mount_eject_with_operation (GMount *mount,
|
|||||||
/* Translators: This is an error
|
/* Translators: This is an error
|
||||||
* message for mount objects that
|
* message for mount objects that
|
||||||
* don't implement any of eject or eject_with_operation. */
|
* don't implement any of eject or eject_with_operation. */
|
||||||
_("mount doesn't implement eject or eject_with_operation"));
|
_("mount doesn't implement \"eject\" or \"eject_with_operation\""));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -741,7 +741,7 @@ g_mount_remount (GMount *mount,
|
|||||||
/* Translators: This is an error
|
/* Translators: This is an error
|
||||||
* message for mount objects that
|
* message for mount objects that
|
||||||
* don't implement remount. */
|
* don't implement remount. */
|
||||||
_("mount doesn't implement remount"));
|
_("mount doesn't implement \"remount\""));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user