summaryrefslogtreecommitdiff
path: root/src/trg-torrent-props-dialog.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2012-01-02 00:04:22 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2012-01-02 00:04:22 +0000
commit94e9936deac2818db70d77a70d809fe16234e05e (patch)
treec0156aa9e87fb62a08f702d5121bbbaca3e97f58 /src/trg-torrent-props-dialog.c
parent6b84bc3968c7b09a7eb180a5c73d4cf3f646d759 (diff)
contributed patch to change two Kbps to the correct KB/s. also have another go at the more efficient filter refreshes.
Diffstat (limited to 'src/trg-torrent-props-dialog.c')
-rw-r--r--src/trg-torrent-props-dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trg-torrent-props-dialog.c b/src/trg-torrent-props-dialog.c
index 92c624c..1ab2f8a 100644
--- a/src/trg-torrent-props-dialog.c
+++ b/src/trg-torrent-props-dialog.c
@@ -195,7 +195,7 @@ static GtkWidget *trg_props_limitsPage(TrgTorrentPropsDialog * win,
tb = trg_json_widget_check_new(&priv->widgets, json,
FIELD_DOWNLOAD_LIMITED,
- _("Limit download speed (Kbps)"), NULL);
+ _("Limit download speed (KB/s)"), NULL);
w = trg_json_widget_spin_new(&priv->widgets, json,
FIELD_DOWNLOAD_LIMIT, tb, 0, INT_MAX,
1);
@@ -203,7 +203,7 @@ static GtkWidget *trg_props_limitsPage(TrgTorrentPropsDialog * win,
tb = trg_json_widget_check_new(&priv->widgets, json,
FIELD_UPLOAD_LIMITED,
- _("Limit upload speed (Kbps)"), NULL);
+ _("Limit upload speed (KB/s)"), NULL);
w = trg_json_widget_spin_new(&priv->widgets, json,
FIELD_UPLOAD_LIMIT, tb, 0, INT_MAX,
1);