Skip to content

Commit

Permalink
fix parantheses for translatable edit tag string
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Horowitz committed Feb 3, 2008
1 parent f53a9c8 commit ff9a266
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.5 - Pending
+ Add %D for disc tag in display formatting options

v1.4.1 - February 2, 2008
+ Remove queue support (it was removed from mpd-svn, complain to them)
+ Improved re-ordering of playlist songs (including multiple selected songs)
Expand Down
2 changes: 0 additions & 2 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ v1.5
- hiding/showing widgets (with set_no_show_all)
- combine ListStore definitions (playlists, streams, etc)
- local/remote artwork
translations
- window.set_title(_("Edit Tags" + ...))
patch 2230?
better playlist support (mpd 0.13+ only):
ability to view songs, reorder songs, remove songs, etc
Expand Down
2 changes: 1 addition & 1 deletion sonata.py
Original file line number Diff line number Diff line change
Expand Up @@ -6820,7 +6820,7 @@ def editwindow_update(self, window, tags, entries, entries_names):
entries[7].set_text(tags[self.tagnum]['mpdpath'].split('/')[-1])
entries[0].select_region(0, len(entries[0].get_text()))
entries[0].grab_focus()
window.set_title(_("Edit Tags" + " - " + str(self.tagnum+1) + " " + _("of") + " " + str(len(tags))))
window.set_title(_("Edit Tags") + " - " + str(self.tagnum+1) + " " + _("of") + " " + str(len(tags)))
self.updating_edit_entries = False
# Update text colors as appropriate:
for i in range(len(entries)-1):
Expand Down

0 comments on commit ff9a266

Please sign in to comment.