Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

objectinfo: adjust translator comment #1253

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions udisks/udisksobjectinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,9 +452,8 @@ udisks_client_get_object_info_for_mdraid (UDisksClient *client,
if (block != NULL)
{
/* Translators: String used for one-liner description of running RAID array w/o a name.
* The first %s is the array name (e.g. "AlphaGo").
* The second %s is the size and level (e.g. "2 TB RAID-5").
* The third %s is the special device file (e.g. "/dev/sda").
* The first %s is the size and level (e.g. "2 TB RAID-5").
* The second %s is the special device file (e.g. "/dev/sda").
*/
info->one_liner = g_strdup_printf (C_("one-liner-mdraid-no-name-running", "%s — %s"),
info->description,
Expand All @@ -463,8 +462,7 @@ udisks_client_get_object_info_for_mdraid (UDisksClient *client,
else
{
/* Translators: String used for one-liner description of non-running RAID array w/o a name.
* The first %s is the array name (e.g. "AlphaGo").
* The second %s is the size and level (e.g. "2 TB RAID-5").
* The %s is the size and level (e.g. "2 TB RAID-5").
*/
info->one_liner = g_strdup_printf (C_("one-liner-mdraid-no-name-not-running", "%s"),
info->description);
Expand Down
Loading