Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 25d2fd1

Browse files
committed
updating settings to use a translated timezone list
1 parent b3f7a46 commit 25d2fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/views/settingsVw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ module.exports = Backbone.View.extend({
406406
});
407407

408408
__.each(timezoneList, function(t, i){
409-
var timezone_option = $('<option value="'+t.offset+'">'+t.name+'</option>');
409+
var timezone_option = $('<option value="'+t.offset+'">'+ polyglot.t('timezones.' + t.offset) + '</option>');
410410
timezone_option.attr("selected",user.time_zone == t.offset);
411411
timezone_str += timezone_option[0].outerHTML;
412412
});

0 commit comments

Comments
 (0)