Bug 436620

Summary: Errors in msg strings
Product: [Fedora] Fedora Reporter: Francesco Tombolini <tombo>
Component: libvirtAssignee: Daniel Veillard <veillard>
Status: CLOSED UPSTREAM QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: rawhideCC: berrange
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2008-03-14 15:33:58 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Francesco Tombolini 2008-03-08 14:19:20 UTC
Description of problem:

In the libvirt.pot there are some typos:

String msgid 81
Resulting path to long for buffer in qemudInitPaths()

String msgid 638
Pool %s deleteed\n



this string is a bit confused for me:
String msgid 697
create a vol from a set of as

Comment 1 Daniel Veillard 2008-03-14 15:33:58 UTC
okay, thanks, I'm commiting the following changes:

Index: qemud/qemud.c
===================================================================
RCS file: /data/cvs/libxen/qemud/qemud.c,v
retrieving revision 1.90
diff -r1.90 qemud.c
702c702
<              "%s", _("Resulting path to long for buffer in qemudInitPaths()"));
---
>              "%s", _("Resulting path too long for buffer in qemudInitPaths()"));
Index: src/virsh.c
===================================================================
RCS file: /data/cvs/libxen/src/virsh.c,v
retrieving revision 1.137
diff -r1.137 virsh.c
3207c3207
<         vshPrint(ctl, _("Pool %s deleteed\n"), name);
---
>         vshPrint(ctl, _("Pool %s deleted\n"), name);
3593,3594c3593,3594
<     {"syntax", "create-as <pool> <name> <capacity>"},
<     {"help", gettext_noop("create a vol from a set of as")},
---
>     {"syntax", "vol-create-as <pool> <name> <capacity>"},
>     {"help", gettext_noop("create a volume from a set of args")},
3601c3601
<     {"name", VSH_OT_DATA, VSH_OFLAG_REQ, gettext_noop("name of the vol")},
---
>     {"name", VSH_OT_DATA, VSH_OFLAG_REQ, gettext_noop("name of the volume")},
3881c3881
<         vshPrint(ctl, _("Vol %s deleteed\n"), name);
---
>         vshPrint(ctl, _("Vol %s deleted\n"), name);

I pushed an updated pot file too,

   thanks for the feedback,

Daniel