From: Till Theato Date: Tue, 21 Sep 2010 14:07:03 +0000 (+0000) Subject: - Go back to devel mode X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6888216a9e65c99e6e522871852f9f60518ddb07;p=kdenlive - Go back to devel mode - Make recently added strings in vectorscope translatable svn path=/trunk/kdenlive/; revision=4918 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 7846ac82..bc8be60c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 d91d495d..d607d478 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Kdenlive 0.7.8 +Kdenlive 0.7.9 by Jean-Baptiste Mardelle and the Kdenlive team Kdenlive is a video editing application for KDE 4. diff --git a/src/vectorscope.cpp b/src/vectorscope.cpp index a445265d..f8106633 100644 --- a/src/vectorscope.cpp +++ b/src/vectorscope.cpp @@ -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);