diff --git a/kallithea/controllers/changelog.py b/kallithea/controllers/changelog.py --- a/kallithea/controllers/changelog.py +++ b/kallithea/controllers/changelog.py @@ -154,7 +154,7 @@ class ChangelogController(BaseRepoContro return redirect(url('changelog_home', repo_name=c.repo_name)) c.branch_name = branch_name - c.branch_filters = [('', _('All Branches'))] + \ + c.branch_filters = [('', _('None'))] + \ [(k, k) for k in c.db_repo_scm_instance.branches.keys()] if c.db_repo_scm_instance.closed_branches: prefix = _('(closed)') + ' ' diff --git a/kallithea/templates/changelog/changelog.html b/kallithea/templates/changelog/changelog.html --- a/kallithea/templates/changelog/changelog.html +++ b/kallithea/templates/changelog/changelog.html @@ -66,12 +66,12 @@ ${self.repo_context_bar('changelog', c.f %endif ## text and href of open_new_pr is controlled from javascript - ${h.select('branch_filter',c.branch_name,c.branch_filters)} + ${_("Branch filter:")} ${h.select('branch_filter',c.branch_name,c.branch_filters)} -