run some strings through gettext

This commit is contained in:
Damien Churchill 2009-04-02 07:14:03 +00:00
parent 1cd9f74305
commit 828a1d339a
1 changed files with 6 additions and 6 deletions

View File

@ -267,13 +267,13 @@ Deluge.Menus.Connections = new Ext.menu.Menu({
checkHandler: onLimitChanged
},{
id: '-1',
text: 'Unlimited',
text: _('Unlimited'),
group: 'max_connections_global',
checked: false,
checkHandler: onLimitChanged
},'-',{
id: 'other',
text: 'Other',
text: _('Other'),
group: 'max_connections_global',
checked: false,
checkHandler: onLimitChanged
@ -314,13 +314,13 @@ Deluge.Menus.Download = new Ext.menu.Menu({
checkHandler: onLimitChanged
},{
id: '-1',
text: 'Unlimited',
text: _('Unlimited'),
group: 'max_download_speed',
checked: false,
checkHandler: onLimitChanged
},'-',{
id: 'other',
text: 'Other',
text: _('Other'),
group: 'max_download_speed',
checked: false,
checkHandler: onLimitChanged
@ -361,13 +361,13 @@ Deluge.Menus.Upload = new Ext.menu.Menu({
checkHandler: onLimitChanged
},{
id: '-1',
text: 'Unlimited',
text: _('Unlimited'),
group: 'max_upload_speed',
checked: false,
checkHandler: onLimitChanged
},'-',{
id: 'other',
text: 'Other',
text: _('Other'),
group: 'max_upload_speed',
checked: false,
checkHandler: onLimitChanged