Opened 14 years ago
Closed 14 years ago
#645 closed Bug (fixed)
Bug in util.c (gettext is missing)
Reported by: | rubiсon | Owned by: | charles |
---|---|---|---|
Priority: | Normal | Milestone: | 1.02 |
Component: | GTK+ Client | Version: | 1.01 |
Severity: | Trivial | Keywords: | |
Cc: |
Description
http://trac.transmissionbt.com/browser/trunk/gtk/util.c?rev=2002#L84
In util.c on line 84 there is some bug.
char * ret = g_strdup_printf ("%s/s", str);
Whereas it should be something like
char * ret = g_strdup_printf ("%s/%s", str, gettext("s"));
The way it is now we, translators, are unable to translate the second part of "KiB/s", for example.
Change History (6)
comment:1 Changed 14 years ago by rubiсon
comment:2 Changed 14 years ago by charles
- Milestone changed from None Set to 1.02
- Resolution set to fixed
- Status changed from new to closed
comment:3 Changed 14 years ago by charles
- Component changed from Transmission to GTK+ Interface
comment:4 Changed 14 years ago by charles
- Resolution fixed deleted
- Status changed from closed to reopened
comment:5 Changed 14 years ago by charles
- Owner set to charles
- Status changed from reopened to new
comment:6 Changed 14 years ago by charles
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
Actually, it is on line 89; line 84 is where that function starts.