From cbd0509f4bcfe1b3e52f8898b1cb83d522337ab8 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 20 Sep 2008 09:52:03 +0000 Subject: Remove the palette_name, otherwise we need to include them in the sugar.pot and break the string freeze. --- 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) -- cgit v0.9.1