1,222 changes: 617 additions & 605 deletions i18n/qgis_de.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion python/console/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def __init__(self, parent=None):
self.saveFileButton.setToolTip(saveFileBt)
self.saveFileButton.setText(saveFileBt)
## Action for Save File As
saveAsFileBt = QCoreApplication.translate("PythonConsole", "Save As..")
saveAsFileBt = QCoreApplication.translate("PythonConsole", "Save As...")
self.saveAsFileButton = QAction(self)
self.saveAsFileButton.setCheckable(False)
self.saveAsFileButton.setEnabled(True)
Expand Down
8 changes: 6 additions & 2 deletions src/app/qgisapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6558,7 +6558,11 @@ void QgisApp::adjustBrightnessContrast( int delta, bool updateBrightness )
void QgisApp::helpContents()
{
// We should really ship the HTML version of the docs local too.
openURL( "http://docs.qgis.org/2.0/html/en/docs/user_manual/index.html", false );
openURL( QString( "http://docs.qgis.org/%1.%2/html/%3/docs/user_manual/" )
.arg( QGis::QGIS_VERSION_INT / 10000 )
.arg( QGis::QGIS_VERSION_INT / 100 % 100 )
.arg( tr( "en", "documentation language" ) ),
false );
}

void QgisApp::apiDocumentation()
Expand All @@ -6575,7 +6579,7 @@ void QgisApp::apiDocumentation()

void QgisApp::supportProviders()
{
openURL( "http://www.qgis.org/en/commercial-support.html", false );
openURL( tr( "http://www.qgis.org/en/commercial-support.html" ), false );
}

void QgisApp::helpQgisHomePage()
Expand Down