Revert "Make revision sting show up in German translation. Also fix the Spanish one a bit."

This reverts commit 33dd9deaea.
This commit is contained in:
Daniel Molkentin
2009-07-10 12:55:44 +01:00
parent 33dd9deaea
commit f5414a4a79
4 changed files with 4 additions and 11 deletions

View File

@@ -1759,7 +1759,7 @@ Sollen sie überschrieben werden?</translation>
<location line="+11"/> <location line="+11"/>
<source>From revision %1&lt;br/&gt;</source> <source>From revision %1&lt;br/&gt;</source>
<extracomment>This gets conditionally inserted as argument %8 into the description string.</extracomment> <extracomment>This gets conditionally inserted as argument %8 into the description string.</extracomment>
<translation>Revision %1&lt;br/&gt;</translation> <translation>Revision:</translation>
</message> </message>
<message> <message>
<location line="+3"/> <location line="+3"/>

View File

@@ -1721,7 +1721,7 @@ Would you like to overwrite them?</source>
<location line="+11"/> <location line="+11"/>
<source>From revision %1&lt;br/&gt;</source> <source>From revision %1&lt;br/&gt;</source>
<extracomment>This gets conditionally inserted as argument %8 into the description string.</extracomment> <extracomment>This gets conditionally inserted as argument %8 into the description string.</extracomment>
<translation>Revisión %1&lt;br/&gt;</translation> <translation>Revisión %1</translation>
</message> </message>
<message> <message>
<location line="+3"/> <location line="+3"/>

View File

@@ -10,9 +10,7 @@ HEADERS = cmakeproject.h \
makestep.h \ makestep.h \
cmakerunconfiguration.h \ cmakerunconfiguration.h \
cmakeopenprojectwizard.h \ cmakeopenprojectwizard.h \
cmakebuildenvironmentwidget.h \ cmakebuildenvironmentwidget.h
cmakeprojectwizard.h
SOURCES = cmakeproject.cpp \ SOURCES = cmakeproject.cpp \
cmakeprojectplugin.cpp \ cmakeprojectplugin.cpp \
cmakeprojectmanager.cpp \ cmakeprojectmanager.cpp \
@@ -20,9 +18,7 @@ SOURCES = cmakeproject.cpp \
makestep.cpp \ makestep.cpp \
cmakerunconfiguration.cpp \ cmakerunconfiguration.cpp \
cmakeopenprojectwizard.cpp \ cmakeopenprojectwizard.cpp \
cmakebuildenvironmentwidget.cpp \ cmakebuildenvironmentwidget.cpp
cmakeprojectwizard.cpp
RESOURCES += cmakeproject.qrc RESOURCES += cmakeproject.qrc
FORMS += FORMS +=

View File

@@ -30,7 +30,6 @@
#include "cmakeprojectplugin.h" #include "cmakeprojectplugin.h"
#include "cmakeprojectmanager.h" #include "cmakeprojectmanager.h"
#include "cmakerunconfiguration.h" #include "cmakerunconfiguration.h"
#include "cmakeprojectwizard.h"
#include "makestep.h" #include "makestep.h"
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
@@ -60,8 +59,6 @@ bool CMakeProjectPlugin::initialize(const QStringList & /*arguments*/, QString *
addAutoReleasedObject(new CMakeManager(cmp)); addAutoReleasedObject(new CMakeManager(cmp));
addAutoReleasedObject(new MakeStepFactory()); addAutoReleasedObject(new MakeStepFactory());
addAutoReleasedObject(new CMakeRunConfigurationFactory()); addAutoReleasedObject(new CMakeRunConfigurationFactory());
addAutoReleasedObject(new CMakeProjectWizard);
return true; return true;
} }