[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

ccsm: Changes to 'debian-unstable'



 VERSION                    |    2 +-
 ccm/Pages.py               |   10 +++++-----
 debian/changelog           |    8 ++++++++
 debian/patches/pt_BR_fixes |   22 ++++++++++++++++++++++
 debian/patches/series      |    1 +
 5 files changed, 37 insertions(+), 6 deletions(-)

New commits:
commit dae4dbc09cc80efbb1f314850f635deb08f4166a
Author: Sean Finney <seanius@debian.org>
Date:   Sat Mar 15 00:11:12 2008 +0100

    470920

diff --git a/debian/changelog b/debian/changelog
index 9ac809d..4b76a96 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+ccsm (0.6.1~git20071020.27380acc-1) unstable; urgency=low
+
+  * New upstream (git snapshot) release.
+  * Fix pt_br translation of "reinicialização" Thanks to 
+    Saulo Soares de Toledo (closes: #470920).
+
+ -- Sean Finney <seanius@debian.org>  Sat, 15 Mar 2008 00:05:02 +0100
+
 ccsm (0.6.0-4) unstable; urgency=low
 
   * Add --prefix to build target of setup.py as well as the existing install
diff --git a/debian/patches/pt_BR_fixes b/debian/patches/pt_BR_fixes
new file mode 100644
index 0000000..6d7730d
--- /dev/null
+++ b/debian/patches/pt_BR_fixes
@@ -0,0 +1,22 @@
+Index: ccsm/po/pt_BR.po
+===================================================================
+--- ccsm.orig/po/pt_BR.po
++++ ccsm/po/pt_BR.po
+@@ -113,7 +113,7 @@
+ msgstr "<b>%(plugin)s</b> é necessário para os engatos <b>%(plugin_list)s</b>."
+ 
+ msgid "Reset setting to the default value"
+-msgstr "Reinicialisação do valor padrão"
++msgstr "Reinicialização do valor padrão"
+ 
+ msgid "Browse for "
+ msgstr "Procura de "
+@@ -279,7 +279,7 @@
+ msgstr "Exportar o seu Perfile de CompizConfig"
+ 
+ msgid "Reset to defaults"
+-msgstr "Reinicialisar os Valores Padrões"
++msgstr "Reinicializar os Valores Padrões"
+ 
+ msgid "Reset your CompizConfig Profile to the global defaults"
+ msgstr ""
diff --git a/debian/patches/series b/debian/patches/series
index 0cd62aa..66db020 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 desktop-file-category
 remove-python-shebangs
+pt_BR_fixes

commit 27380accf56c6ced62e5c0a3e9e0d3998f26dc4b
Author: Patrick Niklaus <marex@opencompositing.org>
Date:   Mon Sep 17 15:48:52 2007 +0200

    Fixed using missing profiles, closes bug 176

diff --git a/ccm/Pages.py b/ccm/Pages.py
index de45d53..ce5d399 100644
--- a/ccm/Pages.py
+++ b/ccm/Pages.py
@@ -843,13 +843,13 @@ class ProfileBackendPage:
         self.ProfileComboBox.append_text(_("Default"))
         for profile in self.Context.Profiles.values():
             self.ProfileComboBox.append_text(profile.Name)
-        if self.Context.CurrentProfile.Name == '' or self.Context.CurrentProfile.Name == 'Default':
-            self.ProfileComboBox.set_active(0)
-        else:
-            name = self.Context.CurrentProfile.Name
+        self.ProfileComboBox.connect("changed", self.ProfileChanged)
+        name = self.Context.CurrentProfile.Name
+        if name in self.Context.Profiles: 
             index = self.Context.Profiles.values().index(self.Context.Profiles[name])
             self.ProfileComboBox.set_active(index+1)
-        self.ProfileComboBox.connect("changed", self.ProfileChanged)
+        else:
+            self.ProfileComboBox.set_active(0) 
         profileAdd.connect("clicked", self.AddProfile)
         profileRemove.connect("clicked", self.RemoveProfile)
         profileBox.pack_start(self.ProfileComboBox, True, True)

commit ba2f626c7a236f8f5125552a4eec3e607e92a280
Author: Guillaume Seguin <guillaume@segu.in>
Date:   Sat Oct 20 22:03:44 2007 +0200

    * Bump VERSION to 0.6.1

diff --git a/VERSION b/VERSION
index de3b1c2..161c807 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-VERSION=0.6.0
+VERSION=0.6.1


Reply to: