]> git.sesse.net Git - kdenlive/commitdiff
- Go back to devel mode
authorTill Theato <root@ttill.de>
Tue, 21 Sep 2010 14:07:03 +0000 (14:07 +0000)
committerTill Theato <root@ttill.de>
Tue, 21 Sep 2010 14:07:03 +0000 (14:07 +0000)
- Make recently added strings in vectorscope translatable

svn path=/trunk/kdenlive/; revision=4918

CMakeLists.txt
README
src/vectorscope.cpp

index 7846ac8262dfdbaaa6ac179b8e917de45d015f07..bc8be60cc4a63bbf80f28dfea429a5ad0b993320 100644 (file)
@@ -1,9 +1,9 @@
 project(kdenlive)
 
-set(BASE_VERSION 0.7.8)
+set(BASE_VERSION 0.7.9)
 set(LIBMLT_REQUIRED_VERSION 0.5.10)
 
-option(RELEASE_BUILD "Remove compilation date from program version (use for stable releases)" ON)
+option(RELEASE_BUILD "Remove compilation date from program version (use for stable releases)" OFF)
 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
 
 # Search packages used by KDE.
diff --git a/README b/README
index d91d495da97e219202746618b22063bacd429821..d607d47840391177e205431c45555195a8c0a6f5 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Kdenlive 0.7.8
+Kdenlive 0.7.9
 by Jean-Baptiste Mardelle <jb@kdenlive.org> and the Kdenlive team
 
 Kdenlive is a video editing application for KDE 4.
index a445265d78a773e0f42a9c29d00eea69a0a48547..f81066335457ba1742d9e54e958ee3ffa0ee1e08 100644 (file)
@@ -63,7 +63,7 @@ Vectorscope::Vectorscope(Monitor *projMonitor, Monitor *clipMonitor, QWidget *pa
     ui->backgroundMode->addItem(i18n("None"), QVariant(BG_NONE));
     ui->backgroundMode->addItem(i18n("YUV"), QVariant(BG_YUV));
     ui->backgroundMode->addItem(i18n("Modified YUV (Chroma)"), QVariant(BG_CHROMA));
-    ui->backgroundMode->addItem("YPbPr", QVariant(BG_YPbPr)); // TODO translate after 0.7.8 release
+    ui->backgroundMode->addItem(i18n("YPbPr"), QVariant(BG_YPbPr));
 
     ui->sliderGain->setMinimum(0);
     ui->sliderGain->setMaximum(40);
@@ -94,11 +94,10 @@ Vectorscope::Vectorscope(Monitor *projMonitor, Monitor *clipMonitor, QWidget *pa
     m_menu->addAction(m_aAxisEnabled);
     b &= connect(m_aAxisEnabled, SIGNAL(changed()), this, SLOT(forceUpdateBackground()));
 
-    // TODO use i18n after the 0.7.8 release
-    m_menu->addSeparator()->setText("Color Space");
-    m_aColorSpace_YPbPr = new QAction("YPbPr", this);
+    m_menu->addSeparator()->setText(i18n("Color Space"));
+    m_aColorSpace_YPbPr = new QAction(i18n("YPbPr"), this);
     m_aColorSpace_YPbPr->setCheckable(true);
-    m_aColorSpace_YUV = new QAction("YUV", this);
+    m_aColorSpace_YUV = new QAction(i18n("YUV"), this);
     m_aColorSpace_YUV->setCheckable(true);
     m_agColorSpace = new QActionGroup(this);
     m_agColorSpace->addAction(m_aColorSpace_YPbPr);