Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpgritti@gmail.com>2008-09-20 09:52:03 (GMT)
committer Marco Pesenti Gritti <mpgritti@gmail.com>2008-09-20 09:52:03 (GMT)
commitcbd0509f4bcfe1b3e52f8898b1cb83d522337ab8 (patch)
treef93d7380481864ae78aef648cdba1bb405e18fb1
parent0f061f14cc6e8712c3796f0f2b1cc3b484395081 (diff)
Remove the palette_name, otherwise we need to includev0.82.8
them in the sugar.pot and break the string freeze.
-rw-r--r--src/view/home/favoriteslayout.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/view/home/favoriteslayout.py b/src/view/home/favoriteslayout.py
index 5ac23f3..937f370 100644
--- a/src/view/home/favoriteslayout.py
+++ b/src/view/home/favoriteslayout.py
@@ -103,10 +103,6 @@ class RandomLayout(FavoritesLayout):
profile_key = 'random-layout'
"""String used in profile to represent this view."""
- # TRANS: label for the freeform layout in the favorites view
- palette_name = _('Freeform')
- """String used to identify this layout in home view dropdown palette."""
-
def __init__(self):
FavoritesLayout.__init__(self)
@@ -185,9 +181,6 @@ class RingLayout(FavoritesLayout):
"""Name of icon used in home view dropdown palette."""
profile_key = 'ring-layout'
"""String used in profile to represent this view."""
- # TRANS: label for the ring layout in the favorites view
- palette_name = _('Ring')
- """String used to identify this layout in home view dropdown palette."""
def __init__(self):
FavoritesLayout.__init__(self)
@@ -330,10 +323,6 @@ class SunflowerLayout(RingLayout):
profile_key = 'spiral-layout'
"""String used in profile to represent this view."""
- # TRANS: label for the spiral layout in the favorites view
- palette_name = _('Spiral')
- """String used to identify this layout in home view dropdown palette."""
-
def __init__(self):
RingLayout.__init__(self)
self.skipped_indices = []
@@ -395,10 +384,6 @@ class BoxLayout(RingLayout):
profile_key = 'box-layout'
"""String used in profile to represent this view."""
- # TRANS: label for the box layout in the favorites view
- palette_name = _('Box')
- """String used to identify this layout in home view dropdown palette."""
-
def __init__(self):
RingLayout.__init__(self)
@@ -432,10 +417,6 @@ class TriangleLayout(RingLayout):
profile_key = 'triangle-layout'
"""String used in profile to represent this view."""
- # TRANS: label for the box layout in the favorites view
- palette_name = _('Triangle')
- """String used to identify this layout in home view dropdown palette."""
-
def __init__(self):
RingLayout.__init__(self)