From baf18969f67d8152bcd40549a9ad1b42276f714f Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sun, 15 Jul 2007 02:30:03 +0000 Subject: [PATCH] translation touchup --- src/interface.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/interface.py b/src/interface.py index 888ff8868..eb26acc51 100644 --- a/src/interface.py +++ b/src/interface.py @@ -219,11 +219,12 @@ class DelugeGTK: def build_menu_radio_list(self, value_list, callback, pref_value=None, suffix=None, show_notset=False, - notset_label="Unlimited", notset_lessthan=0): + notset_label=None, notset_lessthan=0): # Build a menu with radio menu items from a list and connect them to the callback # The pref_value is what you would like to test for the default active radio item # Setting show_unlimited will include an Unlimited radio item - + if notset_label is None: + notset_label = _("Unlimited") menu = gtk.Menu() group = None