summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index 9614855..abb7e26 100644
--- a/src/util.c
+++ b/src/util.c
@@ -34,7 +34,6 @@
#include "util.h"
#include "dispatch.h"
-#include "trg-client.h"
void add_file_id_to_array(JsonObject * args, gchar * key, gint index)
{
@@ -182,7 +181,7 @@ char *tr_strratio(char *buf, size_t buflen, double ratio,
const char *infinity)
{
if ((int) ratio == TR_RATIO_NA)
- tr_strlcpy(buf, "None", buflen);
+ tr_strlcpy(buf, _("None"), buflen);
else if ((int) ratio == TR_RATIO_INF)
tr_strlcpy(buf, infinity, buflen);
else if (ratio < 10.0)