Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/constants.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-12-07 19:27:37 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-12-07 19:27:37 (GMT)
commit3cede3a183fdc621a03a74bde894b5aaffddafcd (patch)
tree5e9fe68c663b66d0f236e95216b23bf89fce6ea9 /constants.py
parentd7cc5f3ce544a5cfa445b0be0c060afa89ea8fb2 (diff)
more .po files
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@945 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'constants.py')
-rw-r--r--constants.py44
1 files changed, 39 insertions, 5 deletions
diff --git a/constants.py b/constants.py
index 133ea81..5f0055f 100644
--- a/constants.py
+++ b/constants.py
@@ -94,6 +94,7 @@ class Constants:
istrTimelapse = _('Time Lapse')
istrAnimation = _('Animation')
istrPanorama = _('Panorama')
+ istrInterview= _('Interview')
#TRANS: photo by photographer, e.g., "Photo by Mary"
istrBy = _("%(1)s by %(2)s")
istrTitle = _('Title:')
@@ -102,8 +103,14 @@ class Constants:
istrTags = _('Tags:')
istrSaving = _('Saving')
istrFinishedRecording = _("Finished recording")
- istrMinutesSecondsRemaining = _("%(1)s minutes, %(1)s seconds remaining")
+ istrHoursMinutesSecondsRemaining = _("%(1)s hours, %(2)s minutes, %(1)s seconds remaining")
+ istrMinutesSecondsRemaining = _("%(1)s minutes, %(2)s seconds remaining")
+ istrHoursRemaining = _("%(1)s hours remaining")
+ istrMinutesRemaining = _("%(1)s minutes remaining")
istrSecondsRemaining = _("%(1)s seconds remaining")
+ istrHours = _("%(1)s hours")
+ istrMinutes = _("%(1)s minutes")
+ istrSeconds = _("%(1)s seconds")
istrRemove = _("Remove")
istrStoppedRecording = _("Stopped recording")
istrCopyToClipboard = _("Copy to clipboard")
@@ -118,20 +125,47 @@ class Constants:
istrRemoveFrame = _("Remove frame")
istrFramesPerSecond = _("%(1)s frames per second")
istrQuality = _("Quality:")
- istrBestQuality = _("Best quality")
- istrHighQuality = _("High quality")
- istrLowQuality = _("Low quality")
+ istrDefault = _("Default")
+ istrBestQuality = _("Best")
+ istrHighQuality = _("High")
+ istrLowQuality = _("Low")
istrLargeFile = _("Large file")
istrSmallFile = _("Small file")
istrSilent = _("Silent")
istrRotate = _("Rotate")
+ istrWidth = _("Width")
+ istrHeight = _("Height")
istrClickToTakePicture = _("Click to take picture")
istrClickToAddPicture = _("Click to add picture")
#TRANS: Downloading Photo from Mary
istrDownloadingFrom = _("Downloading %(1)s from %(2)s")
#TRANS: Cannot download this Photo
istrCannotDownload = _("Cannot download this %(1)s")
- istrYourDiskIsFull = _("Your disk is full")
+ #TRANS: Save Photo to:
+ istrSaveTo = _("Save %(1) to:")
+ istrYourDiskIsFull = _("Your %(1)s is full")
+ istrJournal = _("Journal")
+ istrUSB = _("USB")
+ istrCompactFlash = _("SD Card")
+ istrPreferences = _("Preferences")
+ istrFreeSpace = _("Free space:")
+ #TRANS: 7 photos
+ istrNumPhotos = _("%(1)s photos")
+ istrBitrate = _("Bitrate")
+ istrMaxBitrate = _("Maximum Bitrate")
+ istrMinBitrate = _("Minumum Bitrate")
+ istrManageBitrate = _("Manage Bitrate")
+ istrBorder = _("Border")
+ istrCenter = _("Center")
+ istrFrames = _("Frames")
+ istrKeyframeAuto = _("Automatic keyframe detection")
+ istrKeyframeForce = _("Force keyframe")
+ istrKeyframeFrequency = _("Keyframe frequency")
+ istrKeyframeMinDist = _("Keyframe minimum distance")
+ istrKeyframeThreshold = _("Keyframe threshold")
+ istrNoiseSensitivity = _("Noise Sensitivity")
+ istrQuick = _("Quick")
+ istrSharpness = _("Sharpness")
mediaTypes = {}
mediaTypes[TYPE_PHOTO] = {keyName:"photo", keyMime:"image/jpeg", keyExt:"jpg", keyIstr:istrPhoto}