Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ui.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2008-02-12 23:10:48 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2008-02-12 23:10:48 (GMT)
commita7abc3d75309f2efa663f5698ae96aa87088f560 (patch)
treecc494af08ff643994aa37763bec102685517a019 /ui.py
parent1aa493910077163d3a47eea6144cdf36a51d6cfa (diff)
yourDiskIsFullB
git-svn-id: http://mediamods.com/public-svn/camera-activity/tags/53@1041 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'ui.py')
-rw-r--r--ui.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui.py b/ui.py
index aeafed3..4490123 100644
--- a/ui.py
+++ b/ui.py
@@ -800,7 +800,8 @@ class UI:
self.recordWindow.displayDiscFullText(self.ca.m.FULL)
if (self.ca.m.FULL):
self.recordWindow.shutterButton.set_sensitive( False, True)
- self.progressWindow.updateProgress( 1, Constants.istrYourDiskIsFull, "gray" )
+ fullMessage = Constants.istrYourDiskIsFull % {"1":Constants.istrJournal}
+ self.progressWindow.updateProgress( 1, fullMessage, "gray" )
else:
self.recordWindow.shutterButton.set_sensitive( not self.ca.m.UPDATING, False )
if (self.ca.m.RECORDING):
@@ -2155,7 +2156,8 @@ class RecordWindow(gtk.Window):
self.rightPanelLabel.set_text("")
self.minimize()
else:
- self.rightPanelLabel.set_text("<b><span foreground='gray'>" + Constants.istrYourDiskIsFull + "</span></b>")
+ fullMessage = Constants.istrYourDiskIsFull % {"1":Constants.istrJournal}
+ self.rightPanelLabel.set_text("<b><span foreground='gray'>" + fullMessage + "</span></b>")
self.rightPanelLabel.set_use_markup( True )
self.rightPanelLabel.set_alignment(1, 1)
self.maximize()