[mb-commits] branch, mbs-5763, updated. MBS-5763: Also translate release attributes in add release

MusicBrainz Git Server <[email protected]> Tue, 29 Jan 2013 12:28:08 +0000
Newsgroups gmane.comp.audio.musicbrainz.cvs
Message-ID <E1U0AIK-0001lt-Jc@wiley>
The branch, mbs-5763 has been updated
       via  http://git.musicbrainz.org/gitweb/?p=musicbrainz-server/core.git;a=commit;h=31640f52c2a9e63fce6b76435129c2d55e4dfa08 (commit)
      from  http://git.musicbrainz.org/gitweb/?p=musicbrainz-server/core.git;a=commit;h=cd15aab0dd7d66d0c875bc9084b7d75d734b933e (commit)

Summary of changes:
 root/edit/details/add_release.tt |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 31640f52c2a9e63fce6b76435129c2d55e4dfa08
Author: Oliver Charles <[email protected]>
Date:   Tue Jan 29 12:31:21 2013 +0000

    MBS-5763: Also translate release attributes in add release

diff --git a/root/edit/details/add_release.tt b/root/edit/details/add_release.tt
index 81b266e..8b3daba 100644
--- a/root/edit/details/add_release.tt
+++ b/root/edit/details/add_release.tt
@@ -37,21 +37,21 @@
   [% IF edit.display_data.status %]
   <tr>
     <th>[% lp('Status:', 'release status') %]</th>
-    <td>[% edit.display_data.status.name | html %]</td>
+    <td>[% edit.display_data.status.l_name | html %]</td>
   </tr>
   [% END %]
 
   [% IF edit.display_data.language %]
   <tr>
     <th>[% l('Language:') %]</th>
-    <td>[% edit.display_data.language.name | html %]</td>
+    <td>[% edit.display_data.language.l_name | html %]</td>
   </tr>
   [% END %]
 
   [% IF edit.display_data.script %]
   <tr>
     <th>[% l('Script:') %]</th>
-    <td>[% edit.display_data.script.name | html %]</td>
+    <td>[% edit.display_data.script.l_name | html %]</td>
   </tr>
   [% END %]
 
@@ -65,14 +65,14 @@
   [% IF edit.display_data.country %]
   <tr>
     <th>[% l('Country:') %]</th>
-    <td>[% edit.display_data.country.name | html %]</td>
+    <td>[% edit.display_data.country.l_name | html %]</td>
   </tr>
   [% END %]
 
   [% IF edit.display_data.packaging %]
   <tr>
     <th>[% l('Packaging:') %]</th>
-    <td>[% edit.display_data.packaging.name | html %]</td>
+    <td>[% edit.display_data.packaging.l_name | html %]</td>
   </tr>
   [% END %]
 

-----------------------------------------------------------------------


hooks/post-receive
-- 
mb_server