[meego-commits] 7536: Changes to MeeGo:1.0:Netbook:Update:Testing/banshee-1

daihan no_reply at build.meego.com
Thu Sep 16 02:18:24 UTC 2010


Hi,
I have made the following changes to banshee-1 in project MeeGo:1.0:Netbook:Update:Testing. Please review and accept ASAP.

Thank You,
daihan

[This message was auto-generated]

---

Request #7536:

  submit:   home:daihan:branches:MeeGo:1.0:Netbook:Update:Testing/banshee-1(r2)(cleanup) -> MeeGo:1.0:Netbook:Update:Testing/banshee-1


Message:
    add patches fix BMC#877 BMC#1092  BMC#1094  BMC#5097

State:   new          2010-09-15T19:18:23 daihan
Comment: None



changes files:
--------------
--- banshee-1.changes
+++ banshee-1.changes
@@ -1,0 +2,15 @@
+Wed Sep 15 11:20:44 CST 2010 - ting.z.zhou at intel.com
+
+- Added import-video-playlist-bmc877.patch, allowing import video
+  playlist  (bmc#877)
+
+- Added trans-predefined-smart-playlists-bmc1092.patch, fixing
+  translation of 'Predefined Smart Playlsits'  (bmc#1092)
+
+- Added trans-library-bmc1094.patch, fixing translation of 
+  'Library'  (bmc#1094)
+
+- Added gapless-repeat-off-bmc5097.patch, fixing repeat off mode
+  fail to work under gapless setting  (bmc#5097)
+
+-------------------------------------------------------------------

new:
----
  gapless-repeat-off-bmc5097.patch
  import-video-playlist-bmc877.patch
  trans-library-bmc1094.patch
  trans-predefined-smart-playlists-bmc1092.patch

spec files:
-----------
--- banshee-1.spec
+++ banshee-1.spec
@@ -66,8 +66,17 @@
 Patch12:        switch-to-nowplaying-on-video-start-bmc1748.patch
 # PATCH IS MEEGO SPECIFIC (EVALUATE UPSTREAM)
 Patch13:        unload-event-handle-bmc4036.patch
-# PATCH IS MEEGO SPECIFIC (EVALUATE UPSTREAM)
+# PATCH IS UPSTREAM (stable 1.7)
 Patch14:        search-unknown-artist-album-bmc4981.patch
+# PATCH IS MEEGO SPECIFIC (EVALUATE UPSTREAM)
+Patch15:        import-video-playlist-bmc877.patch
+# PATCH IS UPSTREAM (stable 1.7)
+Patch16:        trans-predefined-smart-playlists-bmc1092.patch
+# PATCH IS UPSTREAM (stable 1.7)
+Patch17:        trans-library-bmc1094.patch
+# PATCH IS MEEGO SPECIFIC (EVALUATE UPSTREAM)
+Patch18:        gapless-repeat-off-bmc5097.patch
+
 # PATCH IS INTEL MEEGO SPECIFIC
 Patch100:       media-as-meego-icon-name.patch
 Requires:       filesystem %gconf_package
@@ -665,6 +674,10 @@
 %patch12 -p1 -b .switch-to-nowplaying-on-video-start-bmc1748
 %patch13 -p1 -b .unload-event-handle-bmc4036
 %patch14 -p1 -b .search-unknown-artist-album-bmc4981
+%patch15 -p1 -b .import-video-playlist-bmc877.patch
+%patch16 -p1 -b .trans-predefined-smart-playlists-bmc1092.patch
+%patch17 -p1 -b .trans-library-bmc1094.patch
+%patch18 -p1 -b .gapless-repeat-off-bmc5097.patch
 %if !0%{?suse_version}
 %patch100 -p1 -b .media-as-meego-icon-name
 %endif

other changes:
--------------

++++++ gapless-repeat-off-bmc5097.patch (new)
--- gapless-repeat-off-bmc5097.patch
+++ gapless-repeat-off-bmc5097.patch
+diff -Nur old/src/Backends/Banshee.GStreamer/Banshee.GStreamer/PlayerEngine.cs new/src/Backends/Banshee.GStreamer/Banshee.GStreamer/PlayerEngine.cs
+--- old/src/Backends/Banshee.GStreamer/Banshee.GStreamer/PlayerEngine.cs	2010-08-16 16:04:36.015322445 +0800
++++ new/src/Backends/Banshee.GStreamer/Banshee.GStreamer/PlayerEngine.cs	2010-08-16 16:04:43.348489125 +0800
+@@ -296,12 +296,12 @@
+                 Play ();
+                 pending_uri = null;
+             } else {
+-                // This should be unreachable - the RequestNextTrack event is delegated to the main thread
+-                // and so blocks the bus callback from delivering the EOS message.
++                // This should be reachable only for the last track in "Repeat Off" mode - the RequestNextTrack
++                // event is delegated to the main thread and so blocks the bus callback from delivering the EOS message.
+                 //
+                 // Playback should continue as normal from here, when the RequestNextTrack message gets handled.
+                 Log.Warning ("[Gapless] EndOfStream message received before the next track has been set.  " +
+-                    "If this happens frequently, please file a bug");
++                    "If this is not the last track under 'Repeat Off' mode and this happens frequently, please file a bug");
+             }
+         }
+ 
+@@ -632,9 +632,14 @@
+                         bp_set_about_to_finish_callback (handle, about_to_finish_callback);
+                     } else {
+                         bp_set_about_to_finish_callback (handle, null);
++
++                        // During non-gapless & gapless playback switch, next_track_pending should be reset as false at non-gapless setting
++                        // Otherwise, No RequestNextTrack request will be sent out after switching to non-gapless setting.
++                        next_track_pending = false;
+                     }
+                 } else {
+                     gapless_enabled = false;
++                    next_track_pending = false;
+                 }
+             }
+         }
+diff -Nur old/src/Core/Banshee.Services/Banshee.MediaEngine/PlayerEngine.cs new/src/Core/Banshee.Services/Banshee.MediaEngine/PlayerEngine.cs
+--- old/src/Core/Banshee.Services/Banshee.MediaEngine/PlayerEngine.cs	2010-08-11 13:11:02.000000000 +0800
++++ new/src/Core/Banshee.Services/Banshee.MediaEngine/PlayerEngine.cs	2010-08-16 16:07:49.000000000 +0800
+@@ -130,7 +130,9 @@
+ 
+             try {
+                 // Setting the next track doesn't change the player state.
+-                SetNextTrackUri (uri);
++                if (uri != null) {
++                    SetNextTrackUri (uri);
++                }
+             } catch (Exception e) {
+                 Log.Exception ("Failed to pre-buffer next track", e);
+             }

++++++ import-video-playlist-bmc877.patch (new)
--- import-video-playlist-bmc877.patch
+++ import-video-playlist-bmc877.patch
+diff -Nur old/src/Core/Banshee.Services/Banshee.Playlist/PlaylistFileUtil.cs new/src/Core/Banshee.Services/Banshee.Playlist/PlaylistFileUtil.cs
+--- old/src/Core/Banshee.Services/Banshee.Playlist/PlaylistFileUtil.cs	2009-11-23 00:19:34.000000000 +0800
++++ new/src/Core/Banshee.Services/Banshee.Playlist/PlaylistFileUtil.cs	2010-09-15 16:22:53.000000000 +0800
+@@ -15,6 +15,7 @@
+ using Banshee.Playlists.Formats;
+ using Banshee.Collection;
+ using Banshee.Collection.Database;
++using Banshee.Streaming;
+ 
+ namespace Banshee.Playlist
+ {
+@@ -179,7 +180,7 @@
+ 
+         public static void ImportPlaylistToLibrary (string path)
+         {
+-            ImportPlaylistToLibrary (path, ServiceManager.SourceManager.MusicLibrary, null);
++            ImportPlaylistToLibrary (path, null, null);
+         }
+ 
+         public static void ImportPlaylistToLibrary (string path, PrimarySource source, DatabaseImportManager importer)
+@@ -198,10 +199,34 @@
+                         uris.Add (((Uri)element["uri"]).LocalPath);
+                     }
+ 
+-                    ImportPlaylistWorker worker = new ImportPlaylistWorker (
+-                        parser.Title,
+-                        uris.ToArray (), source, importer);
+-                    worker.Import ();
++                    if (source == null) {
++                        if (uris.Count > 0) {
++                            // Get the media attribute of the 1st Uri in Playlist
++                            // and then determine whether the playlist belongs to Video or Music
++                            SafeUri uri1 = new SafeUri (uris[0]);
++                            var track = new TrackInfo ();
++                            StreamTagger.TrackInfoMerge (track, uri1);
++
++                            if (track.HasAttribute (TrackMediaAttributes.VideoStream)) {
++                                source = ServiceManager.SourceManager.VideoLibrary;
++                            } else {
++                                source = ServiceManager.SourceManager.MusicLibrary;
++                            }
++                        }
++                    }
++
++                    // Give source a fallback value - MusicLibrary when it's null
++                    if (source == null) {
++                        source = ServiceManager.SourceManager.MusicLibrary;
++                    }
++
++                    // Only import an non-empty playlist
++                    if (uris.Count > 0) {
++                        ImportPlaylistWorker worker = new ImportPlaylistWorker (
++                            parser.Title,
++                            uris.ToArray (), source, importer);
++                        worker.Import ();
++                    }
+                 }
+             } catch (Exception e) {
+                 Hyena.Log.Exception (e);

++++++ search-unknown-artist-album-bmc4981.patch
--- search-unknown-artist-album-bmc4981.patch
+++ search-unknown-artist-album-bmc4981.patch
@@ -1,18 +1,18 @@
-diff -Nur old/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs new/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs
---- old/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs	2010-08-10 13:09:01.036545920 +0800
-+++ new/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs	2010-08-10 13:08:41.880752270 +0800
+diff -Nur old/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs new2/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs
+--- old/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs	2010-08-30 09:23:25.832467526 +0800
++++ new2/src/Core/Banshee.Widgets/Banshee.Widgets/SearchEntry.cs	2010-08-30 09:23:42.243605890 +0800
 @@ -384,7 +384,7 @@
  
          public string Query {
              get { return entry.Text.Trim(); }
 -            set { entry.Text = value.Trim(); }
-+            set { entry.Text = String.IsNullOrEmpty (value) ? null : value.Trim(); }
++            set { entry.Text = String.IsNullOrEmpty (value) ? String.Empty : value.Trim(); }
          }
  
          public bool IsQueryAvailable {
-diff -Nur old/src/Libraries/Hyena/Hyena.Query/QueryField.cs new/src/Libraries/Hyena/Hyena.Query/QueryField.cs
---- old/src/Libraries/Hyena/Hyena.Query/QueryField.cs	2010-08-10 13:09:08.769712193 +0800
-+++ new/src/Libraries/Hyena/Hyena.Query/QueryField.cs	2010-08-10 13:08:50.484956182 +0800
+diff -Nur old/src/Libraries/Hyena/Hyena.Query/QueryField.cs new2/src/Libraries/Hyena/Hyena.Query/QueryField.cs
+--- old/src/Libraries/Hyena/Hyena.Query/QueryField.cs	2010-08-30 09:24:06.256759699 +0800
++++ new2/src/Libraries/Hyena/Hyena.Query/QueryField.cs	2010-08-30 09:23:56.082387206 +0800
 @@ -173,11 +173,14 @@
  
          public static string ToTermString (string alias, string op, string value)

++++++ trans-library-bmc1094.patch (new)
--- trans-library-bmc1094.patch
+++ trans-library-bmc1094.patch
+diff -Nur old/po/ca.po new/po/ca.po
+--- old/po/ca.po	2010-09-13 14:51:55.425460552 +0800
++++ new/po/ca.po	2010-09-13 14:52:11.104060192 +0800
+@@ -9406,3 +9406,8 @@
+ 
+ #~ msgid "Banshee - Idle"
+ #~ msgstr "Banshee - En espera"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Biblioteca"
++
+diff -Nur old/po/cs.po new/po/cs.po
+--- old/po/cs.po	2010-09-13 14:51:55.425460552 +0800
++++ new/po/cs.po	2010-09-13 14:52:11.104060192 +0800
+@@ -6543,3 +6543,6 @@
+ msgid "Unknown Podcast"
+ msgstr "Neznámý podcast"
+ 
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Knihovna"
+diff -Nur old/po/en_GB.po new/po/en_GB.po
+--- old/po/en_GB.po	2010-09-13 14:51:55.425460552 +0800
++++ new/po/en_GB.po	2010-09-13 14:52:11.104060192 +0800
+@@ -8370,3 +8370,8 @@
+ #: ../src/Extensions/Banshee.MeeGo/meego-panel-banshee.desktop.in.in.h:2
+ msgid "media"
+ msgstr "media"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Library"
++
+diff -Nur old/po/es.po new/po/es.po
+--- old/po/es.po	2010-09-13 14:51:55.425460552 +0800
++++ new/po/es.po	2010-09-13 14:52:11.140583912 +0800
+@@ -6877,3 +6877,8 @@
+ #: ../src/Extensions/Banshee.MeeGo/meego-panel-banshee.desktop.in.in.h:2
+ msgid "media"
+ msgstr "multimedia"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Colección"
++
+diff -Nur old/po/fi.po new/po/fi.po
+--- old/po/fi.po	2010-09-13 14:51:55.425460552 +0800
++++ new/po/fi.po	2010-09-13 14:52:11.140583912 +0800
+@@ -6316,3 +6316,8 @@
+ #: ../src/Extensions/Banshee.MeeGo/meego-panel-banshee.desktop.in.in.h:2
+ msgid "media"
+ msgstr "media"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Kirjasto"
++
+diff -Nur old/po/fr.po new/po/fr.po
+--- old/po/fr.po	2010-09-13 14:51:55.485826378 +0800
++++ new/po/fr.po	2010-09-13 14:52:11.140583912 +0800
+@@ -6605,3 +6605,8 @@
+ 
+ #~ msgid "Media"
+ #~ msgstr "Média"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Bibliothèque"
++
+diff -Nur old/po/gl.po new/po/gl.po
+--- old/po/gl.po	2010-09-13 14:51:55.485826378 +0800
++++ new/po/gl.po	2010-09-13 14:52:11.140583912 +0800
+@@ -5054,3 +5054,8 @@
+ 
+ #~ msgid "Now Playing Clutter"
+ #~ msgstr "Reproducindo popurrí agora"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Fonoteca"
++
+diff -Nur old/po/hu.po new/po/hu.po
+--- old/po/hu.po	2010-09-13 14:51:55.485826378 +0800
++++ new/po/hu.po	2010-09-13 14:52:11.140583912 +0800
+@@ -6518,3 +6518,7 @@
+ #: ../src/Libraries/Migo/Migo.Syndication/RssParser.cs:100
+ msgid "Unknown Podcast"
+ msgstr "Ismeretlen podcast"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Gyűjtemény"
+diff -Nur old/po/ja.po new/po/ja.po
+--- old/po/ja.po	2010-09-13 14:51:55.485826378 +0800
++++ new/po/ja.po	2010-09-13 14:52:11.201276567 +0800
+@@ -8241,8 +8241,8 @@
+ #~ "inotify(またはFAM)を使い、ライブラリの場所にあるファイルに変化があった場"
+ #~ "合にBansheeのライブラリを更新する"
+ 
+-#~ msgid "Library"
+-#~ msgstr "ライブラリ"
++msgid "Library"
++msgstr "ライブラリ"
+ 
+ #~ msgid "Unhandled Exception, ending IO Transaction safely"
+ #~ msgstr "想定外の例外が発生しました。入出力処理を終了します"
+diff -Nur old/po/pa.po new/po/pa.po
+--- old/po/pa.po	2010-09-13 14:51:55.485826378 +0800
++++ new/po/pa.po	2010-09-13 14:52:11.201276567 +0800
+@@ -8572,3 +8572,8 @@
+ 
+ #~ msgid "Recommendation plugin enabled"
+ #~ msgstr "ਸਿਫਾਰਸ਼ੀ ਪਲੱਗਇਨ ਯੋਗ ਕੀਤੀ ਗਈ ਹੈ"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "ਲਾਇਬਰੇਰੀ"
++
+diff -Nur old/po/pt_BR.po new/po/pt_BR.po
+--- old/po/pt_BR.po	2010-09-13 14:51:55.546047455 +0800
++++ new/po/pt_BR.po	2010-09-13 14:52:11.201276567 +0800
+@@ -8858,3 +8858,8 @@
+ #~ "Tentar graver esta coleção pode resultar em perda de dados. A coleção "
+ #~ "selecionada pode não caber na mídia.\n"
+ #~ "Você gostaria de continuar?"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Biblioteca"
++
+diff -Nur old/po/pt.po new/po/pt.po
+--- old/po/pt.po	2010-09-13 14:51:55.546047455 +0800
++++ new/po/pt.po	2010-09-13 14:52:11.201276567 +0800
+@@ -6567,3 +6567,8 @@
+ 
+ #~ msgid "Filter Results"
+ #~ msgstr "Filtrar Resultados"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Biblioteca"
++
+diff -Nur old/po/ru.po new/po/ru.po
+--- old/po/ru.po	2010-09-13 14:51:55.546047455 +0800
++++ new/po/ru.po	2010-09-13 14:52:11.201276567 +0800
+@@ -6566,3 +6566,8 @@
+ #: ../src/Libraries/Migo/Migo.Syndication/RssParser.cs:100
+ msgid "Unknown Podcast"
+ msgstr "Неизвестный подкаст"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Музыкальная коллекция"
++
+diff -Nur old/po/sl.po new/po/sl.po
+--- old/po/sl.po	2010-09-13 14:51:55.546047455 +0800
++++ new/po/sl.po	2010-09-13 14:52:11.263553112 +0800
+@@ -7308,3 +7308,7 @@
+ #~ msgid "Remove"
+ #~ msgstr "Odstrani"
+ 
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Knjižnica"
++
+diff -Nur old/po/sv.po new/po/sv.po
+--- old/po/sv.po	2010-09-13 14:51:55.546047455 +0800
++++ new/po/sv.po	2010-09-13 14:52:11.263553112 +0800
+@@ -8235,3 +8235,7 @@
+ #~ msgid "Extract and import songs from a CD"
+ #~ msgstr "Extrahera och importera låtar från en cd"
+ 
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "Bibliotek"
++
+diff -Nur old/po/zh_CN.po new/po/zh_CN.po
+--- old/po/zh_CN.po	2010-09-13 14:51:55.606288228 +0800
++++ new/po/zh_CN.po	2010-09-13 14:52:11.263553112 +0800
+@@ -6581,3 +6581,8 @@
+ 
+ #~ msgid "Update Podcasts"
+ #~ msgstr "更新播客"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
++msgid "Library"
++msgstr "库"
++
+diff -Nur old/po/zh_HK.po new/po/zh_HK.po
+--- old/po/zh_HK.po	2010-09-13 14:51:55.606288228 +0800
++++ new/po/zh_HK.po	2010-09-13 14:52:11.263553112 +0800
+@@ -5424,3 +5424,8 @@
+ 
+ #~ msgid "{0} KHz"
+ #~ msgstr "{0} KHz"
++
++#: ../src/Extensions/Banshee.MeeGo/Banshee.MeeGo/MediaPanelContents.cs:119
(15 more lines skipped)

++++++ trans-predefined-smart-playlists-bmc1092.patch (new)
--- trans-predefined-smart-playlists-bmc1092.patch
+++ trans-predefined-smart-playlists-bmc1092.patch
+diff -Nur old/po/ca.po new/po/ca.po
+--- old/po/ca.po	2010-03-30 01:22:40.000000000 +0800
++++ new/po/ca.po	2010-09-10 09:41:11.000000000 +0800
+@@ -6874,8 +6874,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Detalls</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Llistes de reproducció intel·ligents predefinides"
++msgid "Predefined Smart Playlists"
++msgstr "Llistes de reproducció intel·ligents predefinides"
+ 
+ #
+ #~ msgid "Current source:"
+diff -Nur old/po/de.po new/po/de.po
+--- old/po/de.po	2010-05-01 02:47:24.000000000 +0800
++++ new/po/de.po	2010-09-10 09:43:03.000000000 +0800
+@@ -6651,8 +6651,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Details</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Vordefinierte intelligente Wiedergabelisten"
++msgid "Predefined Smart Playlists"
++msgstr "Vordefinierte intelligente Wiedergabelisten"
+ 
+ #~ msgid "Home Directory"
+ #~ msgstr "Persönlicher Ordner"
+diff -Nur old/po/es.po new/po/es.po
+--- old/po/es.po	2010-05-01 02:47:24.000000000 +0800
++++ new/po/es.po	2010-09-10 09:43:45.000000000 +0800
+@@ -6570,8 +6570,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Detalles</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Listas de reproducción inteligentes predefinidas"
++msgid "Predefined Smart Playlists"
++msgstr "Listas de reproducción inteligentes predefinidas"
+ 
+ #~ msgid "Current source:"
+ #~ msgstr "Fuente actual:"
+diff -Nur old/po/ja.po new/po/ja.po
+--- old/po/ja.po	2010-02-25 05:18:56.000000000 +0800
++++ new/po/ja.po	2010-09-10 09:44:20.000000000 +0800
+@@ -6353,8 +6353,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>詳細</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "事前に定義済みのスマートプレイリスト"
++msgid "Predefined Smart Playlists"
++msgstr "事前に定義済みのスマートプレイリスト"
+ 
+ #~ msgid "Current source:"
+ #~ msgstr "現在の再生元:"
+diff -Nur old/po/lt.po new/po/lt.po
+--- old/po/lt.po	2010-05-01 02:47:24.000000000 +0800
++++ new/po/lt.po	2010-09-10 09:45:04.000000000 +0800
+@@ -6591,8 +6591,8 @@
+ #~ msgid "Import Media to Library"
+ #~ msgstr "Importuoti mediją į biblioteką"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Numatytieji išmanūs grojaraščiai"
++msgid "Predefined Smart Playlists"
++msgstr "Numatytieji išmanūs grojaraščiai"
+ 
+ #~ msgid "{0} to add, {1} to remove"
+ #~ msgstr "{0} pridėtina, {1} pašalintina"
+diff -Nur old/po/nl.po new/po/nl.po
+--- old/po/nl.po	2010-05-01 02:47:36.000000000 +0800
++++ new/po/nl.po	2010-09-10 09:46:41.000000000 +0800
+@@ -6787,8 +6787,8 @@
+ #~ msgid "Import Media to Library"
+ #~ msgstr "Media naar bibliotheek importeren"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Voorgedefinieerde slimme afspeellijsten"
++msgid "Predefined Smart Playlists"
++msgstr "Voorgedefinieerde slimme afspeellijsten"
+ 
+ #~ msgid "Manually manage this device"
+ #~ msgstr "Dit apparaat handmatig beheren"
+diff -Nur old/po/pa.po new/po/pa.po
+--- old/po/pa.po	2010-03-30 01:22:40.000000000 +0800
++++ new/po/pa.po	2010-09-10 09:47:57.000000000 +0800
+@@ -7114,8 +7114,8 @@
+ #~ msgid "Import Media to Library"
+ #~ msgstr "ਸੰਗੀਤ ਲਾਇਬਰੇਰੀ 'ਚ ਇੰਪੋਰਟ ਕਰੋ"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "ਪਹਿਲਾਂ-ਪ੍ਰੀਭਾਸ਼ਿਤ ਚੁਸਤ ਪਲੇਅ-ਲਿਸਟ"
++msgid "Predefined Smart Playlists"
++msgstr "ਪਹਿਲਾਂ-ਪ੍ਰੀਭਾਸ਼ਿਤ ਚੁਸਤ ਪਲੇਅ-ਲਿਸਟ"
+ 
+ #~ msgid "Synchronize"
+ #~ msgstr "ਸਮਕਾਲੀ"
+diff -Nur old/po/pt_BR.po new/po/pt_BR.po
+--- old/po/pt_BR.po	2010-03-23 02:12:12.000000000 +0800
++++ new/po/pt_BR.po	2010-09-10 09:48:56.000000000 +0800
+@@ -6614,8 +6614,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Detalhes</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Lista de reprodução inteligente predefinida"
++msgid "Predefined Smart Playlists"
++msgstr "Lista de reprodução inteligente predefinida"
+ 
+ #~ msgid "Current source:"
+ #~ msgstr "Fonte atual:"
+diff -Nur old/po/pt.po new/po/pt.po
+--- old/po/pt.po	2010-05-01 02:47:24.000000000 +0800
++++ new/po/pt.po	2010-09-10 09:48:35.000000000 +0800
+@@ -6559,8 +6559,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Detalhes</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Listas de Reprodução Inteligentes Predefinidas"
++msgid "Predefined Smart Playlists"
++msgstr "Listas de Reprodução Inteligentes Predefinidas"
+ 
+ #~ msgid "_Search:"
+ #~ msgstr "_Procurar:"
+diff -Nur old/po/sl.po new/po/sl.po
+--- old/po/sl.po	2010-05-01 02:47:24.000000000 +0800
++++ new/po/sl.po	2010-09-10 09:49:25.000000000 +0800
+@@ -6337,8 +6337,8 @@
+ #~ msgstr "Trenutni vir:"
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Podrobnosti</b>"
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Predloge pametnih seznamov prevajanja"
++msgid "Predefined Smart Playlists"
++msgstr "Predloge pametnih seznamov prevajanja"
+ #~ msgid "_Search:"
+ #~ msgstr "_Išči:"
+ #~ msgid "Filter Results"
+diff -Nur old/po/sr at latin.po new/po/sr at latin.po
+--- old/po/sr at latin.po	2010-03-30 01:22:40.000000000 +0800
++++ new/po/sr at latin.po	2010-09-10 09:50:41.000000000 +0800
+@@ -6572,8 +6572,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Detalji</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Unapred pripremljene pametne liste"
++msgid "Predefined Smart Playlists"
++msgstr "Unapred pripremljene pametne liste"
+ 
+ #~ msgid "Current source:"
+ #~ msgstr "Trenutni izvor:"
+diff -Nur old/po/sr.po new/po/sr.po
+--- old/po/sr.po	2010-03-30 01:22:40.000000000 +0800
++++ new/po/sr.po	2010-09-10 09:50:07.000000000 +0800
+@@ -6572,8 +6572,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Детаљи</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Унапред припремљене паметне листе"
++msgid "Predefined Smart Playlists"
++msgstr "Унапред припремљене паметне листе"
+ 
+ #~ msgid "Current source:"
+ #~ msgstr "Тренутни извор:"
+diff -Nur old/po/sv.po new/po/sv.po
+--- old/po/sv.po	2010-03-22 05:15:08.000000000 +0800
++++ new/po/sv.po	2010-09-10 09:51:21.000000000 +0800
+@@ -6322,8 +6322,8 @@
+ #~ msgstr "Filtrera resultat"
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>Detaljer</b>"
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "Fördefinierade smarta spellistor"
++msgid "Predefined Smart Playlists"
++msgstr "Fördefinierade smarta spellistor"
+ #~ msgid "Version:"
+ #~ msgstr "Version:"
+ #~ msgid "Authors:"
+diff -Nur old/po/zh_CN.po new/po/zh_CN.po
+--- old/po/zh_CN.po	2010-03-30 01:22:40.000000000 +0800
++++ new/po/zh_CN.po	2010-09-10 09:52:15.000000000 +0800
+@@ -6469,8 +6469,8 @@
+ #~ msgid "<b>Details</b>"
+ #~ msgstr "<b>详情</b>"
+ 
+-#~ msgid "Predefined Smart Playlists"
+-#~ msgstr "预设的智能播放列表"
++msgid "Predefined Smart Playlists"
++msgstr "预设的智能播放列表"
+ 
+ #~ msgid "Current source:"
+ #~ msgstr "当前源:"
+diff -Nur old/src/Core/Banshee.ThickClient/Banshee.SmartPlaylist.Gui/Editor.cs new/src/Core/Banshee.ThickClient/Banshee.SmartPlaylist.Gui/Editor.cs
+--- old/src/Core/Banshee.ThickClient/Banshee.SmartPlaylist.Gui/Editor.cs	2010-09-10 09:54:08.904028098 +0800
(10 more lines skipped)



More information about the MeeGo-commits mailing list