]> git.sesse.net Git - vlc/commitdiff
minor ui changes
authorFelix Paul Kühne <fkuehne@videolan.org>
Sun, 6 Jul 2008 00:07:35 +0000 (02:07 +0200)
committerFelix Paul Kühne <fkuehne@videolan.org>
Sun, 6 Jul 2008 00:07:35 +0000 (02:07 +0200)
Removed a useless dbg msg

extras/package/macosx/Resources/English.lproj/MainMenu.nib/info.nib
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
modules/gui/macosx/playlist.m

index 2df39a726f368c1f50799065065a8853326a1519..a0812ed02fbdd86a437a4c613b00121fff5eb5a1 100644 (file)
@@ -3,7 +3,7 @@
 <plist version="1.0">
 <dict>
        <key>IBDocumentLocation</key>
-       <string>31 299 356 240 0 0 1280 778 </string>
+       <string>69 71 356 240 0 0 1280 778 </string>
        <key>IBEditorPositions</key>
        <dict>
                <key>2197</key>
        <integer>5</integer>
        <key>IBOpenObjects</key>
        <array>
-               <integer>2416</integer>
                <integer>2197</integer>
+               <integer>29</integer>
                <integer>282</integer>
                <integer>21</integer>
-               <integer>29</integer>
                <integer>915</integer>
+               <integer>2416</integer>
        </array>
        <key>IBSystem Version</key>
        <string>9E17</string>
index b51de45d2528418fd6ede0ba5efb7da6b5298991..f72c9269c5bc90ddf319613538677843e276e131 100644 (file)
Binary files a/extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib and b/extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib differ
index 7ffa25e9bd846b8aaa24632dbfeecbc83e02a953..8b02ac26b70b59ae2741541628a877b04df99fd2 100644 (file)
             }
             else
             {
-                o_value = @"-:--:--";
+                o_value = @"--:--";
             }
         }
         free( psz_artist );
     if( playlist_CurrentSize( p_playlist ) >= 2 )
     {
         [o_status_field setStringValue: [NSString stringWithFormat:
-                    _NS("%i items in the playlist"),
+                    _NS("%i items"),
                 playlist_CurrentSize( p_playlist )]];
     }
     else
         if( playlist_IsEmpty( p_playlist ) )
             [o_status_field setStringValue: _NS("No items in the playlist")];
         else
-            [o_status_field setStringValue: _NS("1 item in the playlist")];
+            [o_status_field setStringValue: _NS("1 item")];
     }
     vlc_object_release( p_playlist );
 }
     if( playlist_CurrentSize( p_playlist )  >= 2 )
     {
         [o_status_field setStringValue: [NSString stringWithFormat:
-                    _NS("%i items in the playlist"),
+                    _NS("%i items"),
              playlist_CurrentSize( p_playlist )]];
     }
     else
         }
         else
         {
-            [o_status_field setStringValue: _NS("1 item in the playlist")];
+            [o_status_field setStringValue: _NS("1 item")];
         }
     }
     vlc_object_release( p_playlist );
 
     [o_outline_dict setObject:o_value forKey:[NSString stringWithFormat:@"%p",
                                                     [o_value pointerValue]]];
-#ifndef NDEBUG
-    msg_Dbg( VLCIntf, "adding item %p", [o_value pointerValue] );
-#endif
     return o_value;
 
 }