diff --git a/.gitignore b/.gitignore index e0b8239031d4..3293e566de6b 100644 --- a/.gitignore +++ b/.gitignore @@ -44,4 +44,7 @@ scripts/RelWithDebInfo qgis-test.ctest i18n/*.qm .project +.pydevproject .idea +/python/plugins/sextante/resources_rc.py +/python/plugins/sextante/about/ui_aboutdialogbase.py diff --git a/CMakeLists.txt b/CMakeLists.txt index 5db116caeb22..3385e931dc98 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,6 +55,8 @@ ENDIF (WITH_POSTGRESQL) SET (WITH_INTERNAL_QWTPOLAR TRUE CACHE BOOL "Use internal build of QwtPolar") +SET (WITH_INTERNAL_QEXTSERIALPORT TRUE CACHE BOOL "Use internal build of Qextserialport") + SET (WITH_SPATIALITE TRUE CACHE BOOL "Determines whether SPATIALITE support should be built") IF (WITH_SPATIALITE) SET (WITH_INTERNAL_SPATIALITE FALSE CACHE BOOL "Determines whether SPATIALITE support should be built internally") @@ -76,6 +78,8 @@ IF (WITH_BINDINGS) # as otherwise user has to use PYTHONPATH environemnt variable to add # QGIS bindings to package search path SET (BINDINGS_GLOBAL_INSTALL FALSE CACHE BOOL "Install bindings to global python directory? (might need root)") + SET (WITH_STAGED_PLUGINS TRUE CACHE BOOL "Stage-install core Python plugins to run from build directory? (utilities, console and installer are always staged)") + SET (WITH_PY_COMPILE FALSE CACHE BOOL "Determines whether Python modules in staged or installed locations are byte-compiled") # concatenate QScintilla2 API files SET (WITH_QSCIAPI TRUE CACHE BOOL "Determines whether the QScintilla2 API files will be updated and concatenated") ENDIF (WITH_BINDINGS) @@ -155,12 +159,18 @@ FIND_PACKAGE(GEOS) FIND_PACKAGE(GDAL) FIND_PACKAGE(Expat) FIND_PACKAGE(Spatialindex REQUIRED) - FIND_PACKAGE(Qwt REQUIRED) + IF (NOT WITH_INTERNAL_QWTPOLAR) FIND_PACKAGE(QwtPolar REQUIRED) ENDIF(NOT WITH_INTERNAL_QWTPOLAR) +IF (WITH_INTERNAL_QEXTSERIALPORT) + SET(QEXTSERIALPORT_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/src/core/gps/qextserialport) +ELSE (WITH_INTERNAL_QEXTSERIALPORT) + FIND_PACKAGE(Qextserialport REQUIRED) +ENDIF(WITH_INTERNAL_QEXTSERIALPORT) + IF (NOT WITH_INTERNAL_SPATIALITE) FIND_PACKAGE(Sqlite3) IF (NOT SQLITE3_FOUND) @@ -387,12 +397,9 @@ ELSE (WIN32) SET (DEFAULT_PLUGIN_SUBDIR ../PlugIns/qgis) SET (QGIS_PLUGIN_SUBDIR_REV ../../MacOS) SET (DEFAULT_INCLUDE_SUBDIR include/qgis) - # path for framework references - IF (ENABLE_TESTS) - SET (CMAKE_INSTALL_NAME_DIR ${CMAKE_BINARY_DIR}/output/lib) - ELSE (ENABLE_TESTS) - SET (CMAKE_INSTALL_NAME_DIR @executable_path/${QGIS_FW_SUBDIR}) - ENDIF (ENABLE_TESTS) + # path for framework references when running from build directory + # changed later to reference in-app resources upon install + SET (CMAKE_INSTALL_NAME_DIR ${CMAKE_BINARY_DIR}/output/lib) IF (WITH_GLOBE) SET (OSG_PLUGINS_PATH "" CACHE PATH "Path to OSG plugins for bundling") ENDIF (WITH_GLOBE) @@ -479,16 +486,6 @@ SET (CMAKE_LIBRARY_OUTPUT_DIRECTORY ${QGIS_OUTPUT_DIRECTORY}/${QGIS_LIB_SUBDIR}) # if run from the build directory QGIS will detect it and alter the paths FILE(WRITE ${QGIS_OUTPUT_DIRECTORY}/${QGIS_BIN_SUBDIR}/path.txt "${CMAKE_SOURCE_DIR}\n${QGIS_OUTPUT_DIRECTORY}") -# symlink extra provider plugin frameworks for Mac unit tests -IF (APPLE AND ENABLE_TESTS) - EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E create_symlink - "${CMAKE_BINARY_DIR}/Plugins/qgis/qgisgrass.framework" - "${CMAKE_BINARY_DIR}/output/lib/qgisgrass.framework") - EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E create_symlink - "${CMAKE_BINARY_DIR}/Plugins/qgis/qgissqlanyconnection.framework" - "${CMAKE_BINARY_DIR}/output/lib/qgissqlanyconnection.framework") -ENDIF (APPLE AND ENABLE_TESTS) - # manual page - makes sense only on unix systems IF (UNIX AND NOT APPLE) SET (DEFAULT_MANUAL_SUBDIR man) @@ -559,9 +556,26 @@ IF (GIT_MARKER) COMMAND ${GITCOMMAND} log -n1 --pretty=%h OUTPUT_VARIABLE REVISION ) STRING(STRIP "${REVISION}" REVISION) + # Get GIT remote and branch + EXECUTE_PROCESS( + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMAND ${GITCOMMAND} name-rev --name-only HEAD OUTPUT_VARIABLE GIT_LOCAL_BRANCH + ) + STRING(STRIP "${GIT_LOCAL_BRANCH}" GIT_LOCAL_BRANCH) + EXECUTE_PROCESS( + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMAND ${GITCOMMAND} config branch.${GIT_LOCAL_BRANCH}.remote OUTPUT_VARIABLE GIT_REMOTE + ) + STRING(STRIP "${GIT_REMOTE}" GIT_REMOTE) + EXECUTE_PROCESS( + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMAND ${GITCOMMAND} config remote.${GIT_REMOTE}.url OUTPUT_VARIABLE GIT_REMOTE_URL + ) + STRING(STRIP "${GIT_REMOTE_URL}" GIT_REMOTE_URL) ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h COMMAND echo \\\#define QGSVERSION \\\"${REVISION}\\\" >${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h + COMMAND echo \\\#define QGS_GIT_REMOTE_URL \\\"${GIT_REMOTE_URL}\\\" >>${CMAKE_CURRENT_BINARY_DIR}/qgsversion.h MAIN_DEPENDENCY ${GIT_MARKER} WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} ) @@ -606,6 +620,17 @@ ENDIF (ENABLE_TESTS) IF (APPLE) # must be last for install, so install_name_tool can do its work ADD_SUBDIRECTORY(mac) + + # allow QGIS to be run directly from build directory and to run unit tests + EXECUTE_PROCESS(COMMAND /bin/mkdir -p "${QGIS_OUTPUT_DIRECTORY}/lib") + EXECUTE_PROCESS( + COMMAND /bin/ln -fs ../../Plugins/qgis/qgisgrass.framework lib/ + WORKING_DIRECTORY "${QGIS_OUTPUT_DIRECTORY}" + ) + EXECUTE_PROCESS( + COMMAND /bin/ln -fs ../../Plugins/qgis/qgissqlanyconnection.framework lib/ + WORKING_DIRECTORY "${QGIS_OUTPUT_DIRECTORY}" + ) ENDIF (APPLE) # manual page - makes sense only on unix systems @@ -615,6 +640,10 @@ ENDIF (UNIX AND NOT APPLE) INSTALL(FILES cmake/FindQGIS.cmake DESTINATION ${QGIS_DATA_DIR}) +############################################################# +# Post-install commands +ADD_SUBDIRECTORY(postinstall) + ############################################################# # Uninstall stuff see: http://www.vtk.org/Wiki/CMake_FAQ CONFIGURE_FILE( diff --git a/README b/README index d9ea9b2949a3..05a3d3bd2f3e 100644 --- a/README +++ b/README @@ -6,7 +6,7 @@ SourceForge in June of the same year. We've worked hard to make GIS software (which is traditionally expensive commercial software) a viable prospect for anyone with basic access to a Personal Computer. QGIS currently runs on most Unix platforms, Windows, and OS X. QGIS is -developed using the Qt toolkit (http://qt.nokia.com) and C++. This +developed using the Qt toolkit (http://qt.digia.com) and C++. This means that QGIS feels snappy to use and has a pleasing, easy to use graphical user interface. diff --git a/build.xml b/build.xml deleted file mode 100644 index 94a0a0d04e35..000000000000 --- a/build.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - SEXTANTE - - - - - - - - \ No newline at end of file diff --git a/cmake/FindQextserialport.cmake b/cmake/FindQextserialport.cmake new file mode 100644 index 000000000000..27276552bfcb --- /dev/null +++ b/cmake/FindQextserialport.cmake @@ -0,0 +1,43 @@ +# Find Qextserialport +# ~~~~~~~~ +# Copyright (c) 2011, Jürgen E. Fischer +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# +# Once run this will define: +# +# QEXTSERIALPORT_FOUND = system has Qextserialport lib +# QEXTSERIALPORT_LIBRARY = full path to the Qextserialport library +# QEXTSERIALPORT_INCLUDE_DIR = where to find headers +# + + +FIND_PATH(QEXTSERIALPORT_INCLUDE_DIR NAMES qextserialport.h PATHS + /usr/include + /usr/local/include + "$ENV{LIB_DIR}/include" + "$ENV{INCLUDE}" + PATH_SUFFIXES QtExtSerialPort + ) + +FIND_LIBRARY(QEXTSERIALPORT_LIBRARY NAMES qextserialport-1.2 PATHS + /usr/lib + /usr/local/lib + "$ENV{LIB_DIR}/lib" + "$ENV{LIB}/lib" + ) + +IF (QEXTSERIALPORT_INCLUDE_DIR AND QEXTSERIALPORT_LIBRARY) + SET(QEXTSERIALPORT_FOUND TRUE) +ENDIF (QEXTSERIALPORT_INCLUDE_DIR AND QEXTSERIALPORT_LIBRARY) + +IF (QEXTSERIALPORT_FOUND) + IF (NOT QEXTSERIALPORT_FIND_QUIETLY) + MESSAGE(STATUS "Found Qextserialport: ${QEXTSERIALPORT_LIBRARY}") + ENDIF (NOT QEXTSERIALPORT_FIND_QUIETLY) +ELSE (QEXTSERIALPORT_FOUND) + IF (QEXTSERIALPORT_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could not find Qextserialport") + ENDIF (QEXTSERIALPORT_FIND_REQUIRED) +ENDIF (QEXTSERIALPORT_FOUND) diff --git a/cmake/FindQsci.py b/cmake/FindQsci.py index 3bcaef9de771..ffe6944d22bf 100644 --- a/cmake/FindQsci.py +++ b/cmake/FindQsci.py @@ -1,4 +1,30 @@ # -*- coding: utf-8 -*- +# +# Copyright (c) 2012, Larry Shaffer +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the Larry Shaffer nor the +# names of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY Larry Shaffer ''AS IS'' AND ANY +# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL Larry Shaffer BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# """Find QScintilla2 PyQt4 module version. .. note:: Redistribution and use is allowed according to the terms of the BSD diff --git a/cmake/FindSPATIALITE.cmake b/cmake/FindSPATIALITE.cmake index 7fe7a0644183..74f1a65095ca 100644 --- a/cmake/FindSPATIALITE.cmake +++ b/cmake/FindSPATIALITE.cmake @@ -11,6 +11,9 @@ # SPATIALITE_INCLUDE_DIR # SPATIALITE_LIBRARY +# This macro checks if the symbol exists +include(CheckLibraryExists) + # FIND_PATH and FIND_LIBRARY normally search standard locations # before the specified paths. To search non-standard paths first, @@ -60,6 +63,9 @@ IF (SPATIALITE_FOUND) MESSAGE(STATUS "Found SpatiaLite: ${SPATIALITE_LIBRARY}") ENDIF (NOT SPATIALITE_FIND_QUIETLY) + # Check for symbol gaiaDropTable + check_library_exists("${SPATIALITE_LIBRARY}" gaiaDropTable "" SPATIALITE_VERSION_GE_4_0_0) + ELSE (SPATIALITE_FOUND) IF (SPATIALITE_FIND_REQUIRED) diff --git a/cmake/MacBundleMacros.cmake b/cmake/MacBundleMacros.cmake index a4e007e29df7..f44eea6d70a7 100644 --- a/cmake/MacBundleMacros.cmake +++ b/cmake/MacBundleMacros.cmake @@ -75,6 +75,7 @@ FUNCTION (COPY_FRAMEWORK FWPREFIX FWNAME FWDEST) EXECUTE_PROCESS (COMMAND cp -Rfp "${FWPREFIX}/${FWNAME}.framework/Versions/${FWVER}/Resources" "${FWDEST}/${FWNAME}.framework/Versions/${FWVER}") EXECUTE_PROCESS (COMMAND ln -sfh Versions/Current/Resources "${FWDEST}/${FWNAME}.framework/Resources") ENDIF (IS_DIRECTORY "${FWPREFIX}/${FWNAME}.framework/Versions/${FWVER}/Resources") + EXECUTE_PROCESS (COMMAND install_name_tool -id "${ATEXECUTABLE}/${QGIS_FW_SUBDIR}/${FWNAME}" "${FWDEST}/${FWNAME}.framework/${FWNAME}") # debug variants SET (FWD "${FWNAME}_debug") IF ("${FWDEBUG}" STREQUAL "Debug" AND EXISTS "${FWPREFIX}/${FWNAME}.framework/Versions/${FWVER}/${FWD}") diff --git a/cmake_templates/qgsconfig.h.in b/cmake_templates/qgsconfig.h.in index 6e2a2702e20a..185724bc6aad 100644 --- a/cmake_templates/qgsconfig.h.in +++ b/cmake_templates/qgsconfig.h.in @@ -29,6 +29,8 @@ #define CMAKE_SOURCE_DIR "${CMAKE_SOURCE_DIR}" #define QSCINTILLA_VERSION_STR "${QSCINTILLA_VERSION_STR}" +//used by Mac to find system Qt plugins when bundle is run from build directory +#define QTPLUGINSDIR "${QT_PLUGINS_DIR}" #cmakedefine HAVE_POSTGRESQL diff --git a/debian/changelog b/debian/changelog index cf0e874ca14b..1fca22a9867a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,11 +8,11 @@ qgis (1.9.0) UNRELEASED; urgency=low * support DEB_BUILD_OPTIONS' parallel=n * add python-unittest2 build dependency for maverick and squeeze * disable PyQgsRectangle test on lucid (depends on unittest2) - * add python-qscintilla2 dependency to python-qgis + * add python-psycopg2 and python-qscintilla2 dependency to python-qgis * add support for ubuntu quantal * remove js files and add libjs-jquery/libjs-underscore dependency - -- Jürgen E. Fischer Tue, 18 Sep 2012 22:18:25 +0200 + -- Jürgen E. Fischer Fri, 09 Nov 2012 10:53:48 +0100 qgis (1.8.0) UNRELEASED; urgency=low diff --git a/debian/control.lucid b/debian/control.lucid index 636a4bc59585..88430abb9dd3 100644 --- a/debian/control.lucid +++ b/debian/control.lucid @@ -125,7 +125,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, python-psycopg2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} XB-Python-Version: ${python:Versions} Description: Python bindings to Quantum GIS diff --git a/debian/control.maverick b/debian/control.maverick index 18c89b6e9113..67085aa88235 100644 --- a/debian/control.maverick +++ b/debian/control.maverick @@ -127,7 +127,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} XB-Python-Version: ${python:Versions} Description: Python bindings to Quantum GIS diff --git a/debian/control.natty b/debian/control.natty index c1a4be29bb3f..69f51678ad60 100644 --- a/debian/control.natty +++ b/debian/control.natty @@ -126,7 +126,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} XB-Python-Version: ${python:Versions} Description: Python bindings to Quantum GIS diff --git a/debian/control.oneiric b/debian/control.oneiric index fd0a64121ad0..868153d570ab 100644 --- a/debian/control.oneiric +++ b/debian/control.oneiric @@ -126,7 +126,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} XB-Python-Version: ${python:Versions} Description: Python bindings to Quantum GIS diff --git a/debian/control.precise b/debian/control.precise index b05fc98d6a5c..4b08e632edc6 100644 --- a/debian/control.precise +++ b/debian/control.precise @@ -129,7 +129,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} XB-Python-Version: ${python:Versions} Description: Python bindings to Quantum GIS diff --git a/debian/control.quantal b/debian/control.quantal index b05fc98d6a5c..4b08e632edc6 100644 --- a/debian/control.quantal +++ b/debian/control.quantal @@ -129,7 +129,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} XB-Python-Version: ${python:Versions} Description: Python bindings to Quantum GIS diff --git a/debian/control.sid b/debian/control.sid index 9b6bba24ec9f..e5e9972ca741 100644 --- a/debian/control.sid +++ b/debian/control.sid @@ -130,7 +130,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-pyspatialite, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-pyspatialite, python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Description: Python bindings to Quantum GIS Quantum GIS is a Geographic Information System (GIS) which manages, analyzes and display databases of geographic information. diff --git a/debian/control.squeeze b/debian/control.squeeze index 35ec440234af..581e1864ad23 100644 --- a/debian/control.squeeze +++ b/debian/control.squeeze @@ -126,7 +126,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} XB-Python-Version: ${python:Versions} Description: Python bindings to Quantum GIS diff --git a/debian/control.wheezy b/debian/control.wheezy index 5ddb76ed2dee..dce493633649 100644 --- a/debian/control.wheezy +++ b/debian/control.wheezy @@ -130,7 +130,7 @@ Description: GRASS plugin for Quantum GIS - architecture-independent data Package: python-qgis Section: python Architecture: any -Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Depends: python-qt4 (>=4.1.0), python-sip (>= 4.5.0), python-qgis-common (= ${source:Version}), python-psycopg2, python-qscintilla2, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} Description: Python bindings to Quantum GIS Quantum GIS is a Geographic Information System (GIS) which manages, analyzes diff --git a/doc/AUTHORS b/doc/AUTHORS index 1160147fc396..5c44a2124b2d 100644 --- a/doc/AUTHORS +++ b/doc/AUTHORS @@ -49,3 +49,4 @@ René-Luc D'Hont Etienne Tourigny Larry Shaffer Victor Olaya +Dave DeHaan diff --git a/doc/TRANSLATORS b/doc/TRANSLATORS index 31a097811199..12c5eb5362ce 100755 --- a/doc/TRANSLATORS +++ b/doc/TRANSLATORS @@ -1,50 +1,52 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
LanguageFinished %Translators
German
100.0
Jürgen E. Fischer, Stephan Holl, Otto Dassau, Werner Macho
Spanish
99.1
Carlos Dávila, Javier César Aldariz, Gabriela Awad, Edwin Amado, Mayeul Kauffmann, Diana Galindo
Galician (Spain)
98.8
Xan Vieiro
Dutch
91.2
Richard Duivenvoorde, Raymond Nijssen, Carlo van Rijswijk
Italian
89.7
Paolo Cavallini, Flavio Rigolon, Maurizio Napolitano, Roberto Angeletti, Alessandro Fanna, Michele Beneventi, Marco Braida, Luca Casagrande, Luca Delucchi, Anne Gishla
Japanese
89.6
BABA Yoshihiko, Yoichi Kayama
Estonian (Estonia)
89.6
Veiko Viil
French
89.5
Eve Rousseau, Marc Monnerat, Lionel Roubeyrie, Jean Roc Morreale, Benjamin Bohard, Jeremy Garniaux, Yves Jacolin, Benjamin Lerre, Stéphane Morel, Marie Silvestre, Tahir Tamba, Xavier M, Mayeul Kauffmann, Mehdi Semchaoui, Robin Cura, Etienne Tourigny, Mathieu Bossaert
Portuguese (Brazil)
89.4
Arthur Nanni
Polish (Poland)
89.4
Robert Szczepanek, Milena Nowotarska, Borys Jurgiel, Mateusz Loskot, Tomasz Paul, Andrzej Swiader
Russian
89.3
Artem Popov
Czech (Czech Republic)
88.8
Martin Landa, Peter Antolik, Martin Dzurov, Jan Helebrant
Hungarian
87.7
Zoltan Siki
Korean (Korea, Republic of)
87.1
BJ Jang
Slovenian (Slovenia)
83.1
Jože Detečnik, Dejan Gregor
Chinese (China)
78.2
Calvin Ngei, Zhang Jun
Latvian
73.1
Maris Nartiss, Pēteris Brūns
Serbian ()
71.2
Goran Ivanković
Serbian ()
71.2
Goran Ivanković
Indonesian
61.8
Januar V. Simarmata, I Made Anombawa
Croatian (Croatia)
60.9
Zoran Jankovic
Portuguese (Portugal)
58.2
Giovanni Manghi, Joana Simoes, Duarte Carreira, Alexandre Neto, Pedro Pereira, Pedro Palheiro, Nelson Silva
Thai
55.1
Man Chao
Swedish
53.9
Lars Luthman, Magnus Homann, Victor Axbom
Turkish
48.9
Osman Yilmaz
Ukrainian
48.7
Сергей Якунин
Chinese (Taiwan, Province of China)
44.1
Nung-yao Lin
Vietnamese
42.1
Bùi Hữu Mạnh
Greek, Modern (1453-) (Greece)
40.2
Evripidis Argyropoulos, Mike Pegnigiannis, Nikos Ves
Icelandic
37.3
Thordur Ivarsson
Mongolian
35.6
Bayarmaa Enkhtur
Finnish
25.3
Marko Jarvenpaa
Danish (Denmark)
25.0
Preben Lisby
Georgian (Georgia)
23.9
Shota Murtskhvaladze, George Machitidze
Bulgarian
21.6
Захари Савов, Jordan Tzvetkov
Slovak
20.4
Lubos Balazovic
Albanian (Albania)
18.1
Lao
14.8
Anousak Souphavanh
Romanian
8.6
Lonut Losifescu-Enescu
Persian
4.7
Mola Pahnadayan
Arabic
2.0
Assem Kamal, Latif Jalil
Afrikaans
2.0
Hendrik Bosman
Lithuanian
0.8
Kestas M
German
99.8
Jürgen E. Fischer, Stephan Holl, Otto Dassau, Werner Macho
Galician (Spain)
98.2
Xan Vieiro
Spanish
96.2
Carlos Dávila, Javier César Aldariz, Gabriela Awad, Edwin Amado, Mayeul Kauffmann, Diana Galindo
Italian
90.8
Paolo Cavallini, Flavio Rigolon, Maurizio Napolitano, Roberto Angeletti, Alessandro Fanna, Michele Beneventi, Marco Braida, Luca Casagrande, Luca Delucchi, Anne Gishla
Swedish
89.7
Lars Luthman, Magnus Homann, Victor Axbom
Dutch
88.5
Richard Duivenvoorde, Raymond Nijssen, Carlo van Rijswijk
Japanese
87.0
BABA Yoshihiko, Yoichi Kayama
Estonian (Estonia)
86.9
Veiko Viil
French
86.8
Eve Rousseau, Marc Monnerat, Lionel Roubeyrie, Jean Roc Morreale, Benjamin Bohard, Jeremy Garniaux, Yves Jacolin, Benjamin Lerre, Stéphane Morel, Marie Silvestre, Tahir Tamba, Xavier M, Mayeul Kauffmann, Mehdi Semchaoui, Robin Cura, Etienne Tourigny, Mathieu Bossaert
Portuguese (Brazil)
86.8
Arthur Nanni
Polish (Poland)
86.7
Robert Szczepanek, Milena Nowotarska, Borys Jurgiel, Mateusz Loskot, Tomasz Paul, Andrzej Swiader
Russian
86.7
Artem Popov
Czech (Czech Republic)
86.1
Martin Landa, Peter Antolik, Martin Dzurov, Jan Helebrant
Hungarian
85.1
Zoltan Siki
Korean (Korea, Republic of)
84.5
BJ Jang
Slovenian (Slovenia)
80.7
Jože Detečnik, Dejan Gregor
Chinese (China)
75.9
Calvin Ngei, Zhang Jun
Latvian
70.9
Maris Nartiss, Pēteris Brūns
Serbian ()
69.1
Goran Ivanković
Serbian ()
69.1
Goran Ivanković
Portuguese (Portugal)
62.5
Giovanni Manghi, Joana Simoes, Duarte Carreira, Alexandre Neto, Pedro Pereira, Pedro Palheiro, Nelson Silva
Indonesian
60.0
Januar V. Simarmata, I Made Anombawa
Croatian (Croatia)
59.1
Zoran Jankovic
Thai
53.5
Man Chao
Ukrainian
49.4
Сергей Якунин
Turkish
47.4
Osman Yilmaz
Chinese (Taiwan, Province of China)
42.8
Nung-yao Lin
Vietnamese
40.9
Bùi Hữu Mạnh
Greek, Modern (1453-) (Greece)
39.0
Evripidis Argyropoulos, Mike Pegnigiannis, Nikos Ves
Icelandic
36.2
Thordur Ivarsson
Mongolian
34.6
Bayarmaa Enkhtur
Finnish
24.6
Marko Jarvenpaa
Danish (Denmark)
24.3
Preben Lisby
Georgian (Georgia)
23.2
Shota Murtskhvaladze, George Machitidze
Bulgarian
20.9
Захари Савов, Jordan Tzvetkov
Slovak
19.8
Lubos Balazovic
Albanian (Albania)
17.5
Lao
14.3
Anousak Souphavanh
Romanian
8.3
Lonut Losifescu-Enescu
Persian
4.5
Mola Pahnadayan
Arabic
2.0
Assem Kamal, Latif Jalil
Afrikaans
1.9
Hendrik Bosman
Lithuanian
0.7
Kestas M
Hebrew
0.1
Catalan (Spain)
0.1
Xavi
Catalan (Spain)
0.1
Xavier Roijals
Basque (Spain)
0.0
Irantzu Alvarez
Norwegian
0.0
Swahili
0.0
Yohana Mapala
Tamil
0.0
Xhosa
0.0
diff --git a/doc/msvc.t2t b/doc/msvc.t2t index 913e59180839..08d4f1c5b731 100644 --- a/doc/msvc.t2t +++ b/doc/msvc.t2t @@ -2,7 +2,7 @@ ==Building with Microsoft Visual Studio== This section describes how to build QGIS using Visual Studio on Windows. This -is currently also who the binary QGIS packages are made (earlier versions used +is currently also how the binary QGIS packages are made (earlier versions used MinGW). This section describes the setup required to allow Visual Studio to be used to @@ -56,6 +56,7 @@ For the QGIS build you need to install following packages from OSGeo4W (select - libspatialindex-devel - python-qscintilla + This will also select packages the above packages depend on. Additionally QGIS also needs the include file ``unistd.h``, which normally @@ -105,8 +106,8 @@ git clone git://github.com/qgis/Quantum-GIS.git Create a 'build' directory somewhere. This will be where all the build output will be generated. -Now run ``cmake-gui`` and in the //Where is the source code:// box, browse to -the top level QGIS directory. +Now run ``cmake-gui`` (still from ``cmd``) and in the //Where is the source code:// +box, browse to the top level QGIS directory. In the //Where to build the binaries:// box, browse to the 'build' directory you created. diff --git a/i18n/qgis_de.ts b/i18n/qgis_de.ts index 72704dfefc55..88078ca4c8c4 100644 --- a/i18n/qgis_de.ts +++ b/i18n/qgis_de.ts @@ -2,56 +2,28 @@ - AboutDialog + CharacterWidget - - <img src="qrc:/sextante/images/sextante_logo.png" /> - <h2>SEXTANTE for QGIS</h2> - <p>SEXTANTE, a geoprocessing platform for QGIS</p> - <p>A development by Victor Olaya (volayaf@gmail.com).</p> - <p>Portions of this software contributed by: - <ul> - <li>Alexander Bruy</li> - <li>Carson Farmer (fTools algorithms)</li> - <li>Julien Malik (Orfeo Toolbox connectors)</li> - <li>Evgeniy Nikulin (Original Field Pyculator code)</li> - <li>Michael Nimm (mmqgis algorithms)</li> - <li>Camilo Polymeris (Threading). Developed as part of Google - Summer of Code 2012</li> - </ul> - </p> - <p>You are currently using SEXTANTE v%1</p> - <p>This software is distributed under the terms of the GNU GPL License v2. - <p>For more information, please visit our website at - <a href="http://sextantegis.com">http://sextantegis.com</a></p> - - - <img src="qrc:/sextante/images/sextante_logo.png" /> - <h2>SEXTANTE für QGIS</h2> - <p>SEXTANTE, eine Plattform zur Geoverarbeitung für QGIS</p> - <p>Eine Entwicklung von Victor Olaya (volayaf@gmail.com).</p> - <p>Teile der Software wurden beigetragen von: - <ul> - <li>Alexander Bruy</li> - <li>Carson Farmer (fTools-Algorithmen)</li> - <li>Julien Malik (Orfeo Toolbox-Verbinder)</li> - <li>Evgeniy Nikulin (Original-Pyculator-Code)</li> - <li>Michael Nimm (mmqgis-Algorithmen)</li> - <li>Camilo Polymeris (Threading). Als Teil des Google Summer of Code 2012 entwickelt.</li> - </ul> - </p> - <p>SEXTANTE v%1 wird gerade verwendet.</p> - <p>Die Software wird unter den Bedingungen der GNU GPL Lizenz v2 zur Verfügung gestellt. - <p>Weitere Informationen sind auf der Website - <a href="http://sextantegis.com">http://sextantegis.com</a> zu finden.</p> + + <p>Character: <span style="font-size: 24pt; font-family: %1">%2</span><p>Value: 0x%3 + <p>Zeichen: <span style="font-size: 24pt; font-family: %1">%2</span><p>Wert: 0x%3 - CharacterWidget + ConfigDialog - - <p>Character: <span style="font-size: 24pt; font-family: %1%2</span><p>Value: 0x%3"> - <p>Zeichen: <span style="font-size: 24pt; font-family: %1%2</span><p>Wert: 0x%3"> + Search... + Suchen... + + + Wrong value + Falscher Wert + + + Wrong parameter value: +%1 + Falscher Parameterwert: +%1 @@ -112,6 +84,7 @@ Dialog + @@ -128,6 +101,7 @@ + Browse Durchsuchen @@ -174,6 +148,7 @@ + Output point shapefile Ausgabepunktshapedatei @@ -183,6 +158,7 @@ Geodatenverarbeitung + @@ -365,7 +341,7 @@ - + Use only selected features Nur gewählte Objekte nutzen @@ -1007,7 +983,7 @@ Folgende Feldnamen sind länger als 10 Zeichen: Grid extent - Rastergrenze + Gittergrenze von Layer @@ -1017,12 +993,12 @@ Folgende Feldnamen sind länger als 10 Zeichen: Update extents from canvas - Layergrenzen aus aktueller Ansicht aktualisieren + Layergrenzen aus aktueller Ansicht Align extents and resolution to selected raster layer - Ausmaße und Auflösung am gewählten Rasterlayer ausrichten + Ausmaße und Auflösung am gewählten Layer ausrichten @@ -1047,12 +1023,12 @@ Folgende Feldnamen sind länger als 10 Zeichen: Output grid as polygons - Raster als Polygone ausgeben + Gitter als Polygone ausgeben Output grid as lines - Raster als Linien ausgeben + Gitter als Linien ausgeben Line intersections @@ -1133,6 +1109,38 @@ Dies kann zu unerwarteten Ergebnissen führen. Created output shapefiles in folder: %1 Ausgabeshapedateien erzeugt im Ordner: +%1 + + + Selected features: %1 + Gewählte Objekte: %1 + + + Eliminate + Entfernen + + + No selection in input layer + Keine Auswahl auf Eingabelayer + + + Error creating output file + Fehler beim Erzeugen des Ausgabelayers + + + Commit error + Commit-Fehler + + + Created output shapefile: +%1 + Ausgabeshapedatei erzeugt: +%1 + + + Could not eliminate features with these ids: +%1 + Konnte Objekte mit folgenden Dateien nicht eliminieren: %1 @@ -1162,22 +1170,27 @@ Dies kann zu unerwarteten Ergebnissen führen. Eindeutige Werte auflisten - + Target field Zielfeld - + Unique values list Eindeutige Werte - + Unique value count Anzahl eindeutiger Werte - + + Save errors location + Fehlerpositionen speichern + + + Press Ctrl+C to copy results to the clipboard Strg+C drücken, um die Ergebnisse in die Zwischenablage zu kopieren @@ -1190,6 +1203,14 @@ die Zwischenablage zu kopieren Random selection within subsets Zufällige Auswahl in Untermengen + + Could not replace geometry of feature with id %1 + Konnte die Geometrie des Objektes %1 nicht ersetzen + + + Could not delete feature with id %1 + Konnte Objekt %1 nicht löschen + Please specify input vector layer Bitte Eingabevektorlayer angeben @@ -1244,11 +1265,38 @@ Soll sie dem Projekt als neuer Layer hinzugefügt werden? Vereinfachungstoleranz + + Eliminate sliver polygons + Splitterpolygone entfernen + + + + area + Fläche + + + + Selected features: + Gewählte Objekte: + + + + common boundary + Gemeinsame Umgrenzung + + + + Merge selection with the neighbouring polygon with the largest + Auswahl mit dem benachbarten Polygon mit dem größten verschmelzen + + + Save to new file In neuer Datei speichern + Add result to canvas Ergebnis der Karte hinzufügen @@ -1284,19 +1332,6 @@ Soll sie dem Projekt als neuer Layer hinzugefügt werden? Liste leeren - - DlgAbout - - - About SEXTANTE - Über SEXTANTE - - - - about:blank - about:blank - - DlgAddGeometryColumn @@ -1370,6 +1405,29 @@ Soll sie dem Projekt als neuer Layer hinzugefügt werden? -1 + + DlgConfig + + + SEXTANTE options + SEXTANTE-Optionen + + + + Enter setting name to filter list + Einstellungsname eingeben, um Liste zu filtern + + + + Setting + Einstellung + + + + Value + Wert + + DlgCreateConstraint @@ -1576,6 +1634,37 @@ Soll sie dem Projekt als neuer Layer hinzugefügt werden? Länge + + DlgHelpEdition + + + Help editor + Hilfeeditor + + + + about:blank + about:blank + + + + Select element to edit + Element zur Bearbeitung wählen + + + + Element description + Elementbeschreibung + + + + DlgHistory + + + History and log + Protokoll + + DlgImportVector @@ -1654,6 +1743,52 @@ Soll sie dem Projekt als neuer Layer hinzugefügt werden? Räumlichen Index erzeugen + + DlgModeler + + + SEXTANTE modeler + SEXTANTE-Modellierung + + + + Inputs + Eingaben + + + + Algorithms + Algorithmen + + + + Enter algorithm name to filter list + Algorithmenname eingeben, um Liste zu filtern + + + + Enter model name here + Modellname hier eingeben + + + + Enter group name here + Gruppenname eingeben + + + + DlgResults + + + Results + Ergebnisse + + + + about:blank + about:blank + + DlgSqlWindow @@ -2264,14 +2399,14 @@ Wollen Sie ihn trotzdem abbrechen? Nach Abschluss zur &Karte hinzufügen - + Edit Bearbeiten - + Reset Zurücksetzen @@ -4031,28 +4166,39 @@ GEOS-Verarbeitungsfehler: Eine oder mehrere Objekte haben ungültige Geometrie.< GlobePlugin - + Launch Globe Globus starten - + Globe Settings Globus-Einstellungen - + + Unload Globe + Globus entladen + + + Overlay data on a 3D globe Daten auf einem 3D-Globus überlagern - + Settings for 3D globe Einstellungen für den 3D-Globus - + Unload globe + Globus entladen + + + + + &Globe &Globus @@ -4249,6 +4395,37 @@ GEOS-Verarbeitungsfehler: Eine oder mehrere Objekte haben ungültige Geometrie.< Ausgabeformat + + Help + + + Dialog + Dialog + + + + about:blank + about:blank + + + + HelpEditionDialog + + Outputs + Ausgaben + + + + HistoryDialog + + Clear + Löschen + + + Clear history and log + Protokoll löschen + + LayerPropertiesWidget @@ -4315,192 +4492,192 @@ GEOS-Verarbeitungsfehler: Eine oder mehrere Objekte haben ungültige Geometrie.< Neu - + &Settings &Einstellungen - + &Plugins Er&weiterungen - + &Raster &Raster - + &Help &Hilfe - + File Datei - + Manage Layers Layer koordinieren - + Digitizing Digitalisierung - + Advanced Digitizing Erweiterte Digitalisierung - + Map Navigation Kartennavigation - + Attributes Attribute - + Plugins Erweiterungen - + Help Hilfe - + Raster Raster - + Label Beschriftung - + &New Project &Neues Projekt - + Ctrl+N Strg+N - + &Open Project... Pr&ojekt öffnen... - + Ctrl+O Strg+O - + &Save Project Projekt &speichern - + Ctrl+S Strg+S - + Save Project &As... Projekt speichern &als... - + Ctrl+Shift+S Strg+Umschalt+S - + Save as Image... Bild speichern als... - + &New Print Composer &Neue Druckzusammenstellung - + Ctrl+P Strg+P - + Exit Beenden - + Ctrl+Q Strg+Q - + &Undo &Rückgängig - + Ctrl+Z Strg+Z - + &Redo &Wiederholen - + Ctrl+Shift+Z Strg+Umschalt+Z - + Cut Features Ausgewählte Objekte ausschneiden - + Ctrl+X Strg+X - + Copy Features Objekte kopieren - + Ctrl+C Strg+C - + Paste Features Objekte einfügen - + Ctrl+V Strg+V - + Ctrl+. Strg+. @@ -4515,472 +4692,472 @@ GEOS-Verarbeitungsfehler: Eine oder mehrere Objekte haben ungültige Geometrie.< Neues Projekt aus Vorlage - + Vector Vektor - + Database Datenbank - + Web Web - + Composer Manager... Druckzusammenstellungen verwalten... - + Add Feature Objekt hinzufügen - + Move Feature(s) Objekt(e) verschieben - + Reshape Features Objekte überarbeiten - + Split Features Objekte trennen - + Delete Selected Ausgewähltes löschen - + Add Ring Ring hinzufügen - + Add Part Teil hinzufügen - + Simplify Feature Objekt vereinfachen - + Delete Ring Ring löschen - + Delete Part Teil löschen - + Node Tool Knotenwerkzeug - + Rotate Point Symbols Punktsymbole drehen - + Snapping Options... Fangoptionen... - + Pan Map Karte verschieben - + Zoom In Hineinzoomen - + Ctrl++ Strg++ - + Zoom Out Hinauszoomen - + Ctrl+- Strg+- - + Identify Features Objekte abfragen - + Ctrl+Shift+I Strg+Umschalt+I - + Measure Line Linie messen - - + + Ctrl+Shift+M Strg+Umschalt+M - + Measure Area Fläche messen - + Ctrl+Shift+J Strg+Umschalt+J - + Measure Angle Winkel messen - + Zoom Full Volle Ausdehnung - + Ctrl+Shift+F Strg+Umschalt+F - + Zoom to Layer Auf den Layer zoomen - + Zoom to Selection Zur Auswahl zoomen - + Ctrl+J Strg+J - + Zoom Last Zoom zurück - + Zoom Next Zoom vor - + Zoom Actual Size Auf tatsächliche Größe zoomen - + Zoom to Native Pixel Resolution Auf normale Pixelauflösung zoomen - + Map Tips Kartenhinweise - + Show information about a feature when the mouse is hovered over it Informationen zu einem Objekt anzeigen, wenn die Maus darüber fährt - + New Bookmark... Neues Lesezeichen... - + Ctrl+B Strg+B - + Show Bookmarks Lesezeichen anzeigen - + Ctrl+Shift+B Strg+Umschalt+B - + Refresh Aktualisieren - + Ctrl+R Strg+R - + Text Annotation Beschriftungstext - + Move Annotation Beschriftung verschieben - + Labeling Beschriftung - + Layer Labeling Options Layerbeschriftungseinstellungen - + New Shapefile Layer... Neuer Shapedatei-Layer... - + Ctrl+Shift+N Strg+Umschalt+N - + New SpatiaLite Layer ... Neuer SpatiaLite-Layer... - + Ctrl+Shift+A Neuen SpatiaLite-Layer anlegen - + Raster calculator ... Rasterrechner ... - + Add Vector Layer... Vektorlayer hinzufügen... - + Ctrl+Shift+V Strg+Umschalt+V - + Add Raster Layer... Rasterlayer hinzufügen... - + Ctrl+Shift+R Strg+Umschalt+R - + Ctrl+Shift+D Strg+Umschalt+D - + Add SpatiaLite Layer... SpatiaLite-Layer hinzufügen... - + Ctrl+Shift+L Strg+Umschalt+L - + Add MSSQL Spatial Layer... Räumlichen MSSQL-Layer hinzufügen... - + Add WMS Layer... WMS-Layer hinzufügen... - + Ctrl+Shift+W Strg+Umschalt+W - + Open Attribute Table Attributtabelle öffnen - + Toggles the editing state of the current layer Bearbeitungsstatus des aktuellen Layers umschalten - + Save edits to current layer, but continue editing Speichert Änderungen und bleibt im Bearbeitungsmodus - + Remove Layer(s) Layer löschen - + Ctrl+D Strg+D - + Set CRS of Layer(s) KBS von Layer(n) setzen - + Ctrl+Shift+C Strg+Umschalt+C - + Rotate Label Ctl (Cmd) increments by 15 deg. Beschriftung drehen Strg (Cmd) erhöht um 15 Grad. - + Style Manager... Stilmanager... - + Stretch Histogram to Full Dataset Histogramm auf den ganzen Datensatz strecken - + Embed Layers and Groups... Eingebettete Layer und Gruppen... - + &Copyright Label &Urheberrechtshinweis - + Creates a copyright label that is displayed on the map canvas. Erzeugt einen Urheberrechtshinweis auf dem Kartenbild. - + &North Arrow &Nordpfeil - + "Creates a north arrow that is displayed on the map canvas" "Erzeugt einen Nordpfeil und stellt ihn in der Karte dar" - + &Scale Bar &Maßstab - - + + Creates a scale bar that is displayed on the map canvas Erzeugt eine Maßstabsleiste, die im Kartenbild angezeigt wird - + Add WFS Layer... WFS-Layer hinzufügen... - + Add WFS Layer WFS-Layer hinzufügen - + Feature Action Objektaktion - - + + Pan Map to Selection Karte zur Auswahl verschieben - + Copy style Stil kopieren - + Paste style Stil einfügen - + Add WCS Layer... WCS-Layer hinzufügen... - + &Grid &Gitter - + Grid Gitter - + Pin/Unpin Labels Beschriftung anpinnen/lösen - + Pin/Unpin Labels Click or marquee on label to pin Shift unpins, Ctl (Cmd) toggles state @@ -4991,18 +5168,18 @@ Umschalt löst, Strg (Cmd) schalten um Funktioniert auf allen änderbaren Layern - - + + Highlight Pinned Labels Angepinnte Beschriftungen hervorheben - + Show/Hide Labels Beschriftungen anzeigen/ausblenden - + Show/Hide Labels Click or marquee on feature to show label Shift+click or marquee on label to hide it @@ -5012,325 +5189,424 @@ Objekt anklicken oder markieren, um die Beschriftung anzuzeigen Funktioniert auf allen ändernbaren Layern - - + + Html Annotation HTML-Beschriftung - - + + + Duplicate Layer(s) + Layer kopieren + + + + SVG annotation + SVG-Anmerkung + + + + + Save Edits for All Layers + Änderungen aller Layer speichern + + + + Save edits for all layers, but continue editing + Änderungen aller Layer speichern, aber mit Bearbeitung fortfahren + + + + New Blank Project Neues leeres Projekt - + Local Cumulative Cut Stretch Lokale kommulative Schnittstreckung - + Local cumulative cut stretch using current extent, default limits and estimated values. Lokale kommulative Schnittstreckung mit aktueller Ausdehnung, Vorgabegrenzen und geschätzten Werten. - + Full Dataset Cumulative Cut Stretch Kommulative Schnittstreckung über Gesamtdatensatz - + Cumulative cut stretch using full dataset extent, default limits and estimated values. Kommulative Schnittstreckung über gesamten Datensatzausdehnung, Vorgabegrenzen und geschätzten Werten. - + Properties... Eigenschaften... - + Query... Abfrage... - + Add to Overview Zur Übersicht hinzufügen - + Ctrl+Shift+O Strg+Umschalt+O - + Add All to Overview Alle zur Übersicht hinzufügen - + Merge Selected Features Gewählte Objekte verschmelzen - + Merge Attributes of Selected Features Attribute gewählter Objekte vereinen - + Select Single Feature Einzelnes Objekt wählen - + Select Features by Rectangle Objekte durch Rechteck wählen - + Select Features by Polygon Objekte durch Polygon wählen - + Select Features by Freehand Objekte freihändig wählen - + Select Features by Radius Objekte durch Radius wählen - + Deselect Features from All Layers Auswahlen aller Layer aufheben - + Form Annotation Beschriftungsformular - + Add PostGIS Layers... PostGIS-Layer hinzufügen... - + Toggle Editing Bearbeitungsstatus umschalten - + Save Edits Änderungen speichern - + Save As... Speichern als... - + Save Selection as Vector File... Auswahl als Vektordatei speichern... - + Set Project CRS from Layer Layer-KBS dem Projekt zuweisen - + Remove All from Overview Alle aus Übersicht entfernen - + Show All Layers Alle Layer anzeigen - + Ctrl+Shift+U Strg+Umschalt+U - + Hide All Layers Alle Layer ausblenden - + Ctrl+Shift+H Strg+Umschalt+H - + Manage Plugins... Erweiterungen verwalten... - + Toggle Full Screen Mode Auf Vollbildmodus schalten - + Ctrl+F Strg+F - + Project Properties... Projekteinstellungen... - + Ctrl+Shift+P Strg+Umschalt+P - + Options... Optionen... - + Custom CRS... Benutzerkoordinatenbezugssystem... - + Configure shortcuts... Tastenkürzel festlegen... - + Local Histogram Stretch Lokale Histogrammstreckung - + Stretch histogram of active raster to view extents Strecke das Histogram des aktiven Rasters um Ausdehnung zu zeigen - + Help Contents Hilfe-Übersicht - + F1 F1 - + API documentation API-Dokumentation - + QGIS Home Page QGIS-Homepage - + Ctrl+H Strg+H - + Check QGIS Version QGIS-Version überprüfen - + Check if your QGIS version is up to date (requires internet access) Aktualität Ihrer QGIS-Version überprüfen (erfordert Internetzugang) - + About Über - + QGIS Sponsors QGIS-Sponsoren - - + + Move Label Beschriftung verschieben - + Rotate Label Beschriftung drehen - + Change Label - + Run Feature Action Objektaktion ausführen - - + + Touch zoom and pan Zoomen und Verschieben durch Berührung - + Offset Curve Linie versetzen - + Python Console Python-Konsole - + Full histogram stretch Volle Histogrammstreckung - + Customization... Anpassungen... - + mActionCatchForCustomization mActionCatchForCustomization - + This is here just to avoid shortcut conflicts, the shortcut is caught in QgsCustomization Dies ist nur hier um widersprüchliche Kürzel zu vermeiden, das Kürzel wird in QgsCustomization abgefangen - + Ctrl+M Strg+M - + Embed layers and groups from other project files Eingebettete Layer und Gruppe aus anderen Projektdateien + + ModelerDialog + + Edit model help + Modellhilfe bearbeiten + + + Run + Starten + + + Execute current model + Aktuelle Modell ausführen + + + Open + Öffnen + + + Open existing model + Vorhandenes Modell öffnen + + + Save + Speichern + + + Save current model + Aktuelles Modell speichern + + + Search... + Suchen... + + + Warning + Warnung + + + Please enter group and model names before saving + Bitte Gruppen- und Modellnamen vor dem Speichern angeben + + + Save Model + Modell speichern + + + SEXTANTE models (*.model) + SEXTANTE-Modelle (*.model) + + + Model saved + Modell gespeichert + + + Model was correctly saved. + Modell wurde korrekt gespeichert. + + + Open Model + Modell öffnen + + + Could not open model + Konnte Modell nicht öffnen + + + The selected model could not be loaded. +Wrong line: %1 + Gewähltes Modell konnte nicht geladen werden. +Falsche Zeile: %1 + + + Parameters + Parameter + + OracleConnectGuiBase @@ -6376,6 +6652,10 @@ Bitte koorigieren Sie dies, da die OSM-Erweiterung nicht weiß welche Layer das Clear console Konsole leeren + + Settings + Einstellungen + Import Class Klasse importieren @@ -6424,25 +6704,25 @@ Bitte koorigieren Sie dies, da die OSM-Erweiterung nicht weiß welche Layer das QGis::UnitType - + meters Meter - + feet Fuß - - - + + + degrees Grad - + <unknown> <unbekannt> @@ -6559,167 +6839,188 @@ Bitte koorigieren Sie dies, da die OSM-Erweiterung nicht weiß welche Layer das Stunden - + Cannot convert '%1' to double Kann '%1' nicht in Fließkommazahl umwandeln - + Cannot convert '%1' to int Kann '%1' nicht in Ganzzahl umwandeln - + Cannot convert '%1' to DateTime Kann '%1' nicht in DateTime umwandeln - + Cannot convert '%1' to Date Kann '%1' nicht in Datum umwandeln - + Cannot convert '%1' to Time Kann '%1' nicht in Zeit umwandeln - + Cannot convert '%1' to Interval Kann '%1' nicht in Interval umwandeln - + Cannot convert '%1' to boolean Kann '%1' nicht in Wahrheitswert umwandeln - + Invalid regular expression '%1': %2 Ungültiger regulärer Ausdruck '%1': %2 - + Index is out of range Index außerhalb des Bereichs - - - - - - - - - - - - - + + + + + + + + + + + + + Math Mathematik - - - - - - - + + + + + + + Conversions Umwandlungen - + Conditionals Bedingungen - - - - - - - - - + + + + + + + + + Date and Time Datum und Zeit - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + String Zeichenketten - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + Geometry Geometrie - - - - + + + + Record Datensatz - + Special Speziell - - + + No root node! Parsing failed? Kein Wurzelknoten! Parsen gescheitert? - + (no root) (Keine Wurzel) - + Unary minus only for numeric values. Negatives Vorzeichen nur für nummerische Werte. - + Can't preform /, *, or % on DateTime and Interval Kann /, * or % nicht auf Daten oder Intervallen ausführen - + [unsupported type;%1; value:%2] [nicht unterstützter Typ;%1; Wert:%2] - + Column '%1' not found Spalte '%1' nicht gefunden @@ -6789,7 +7090,7 @@ Would you like to specify path (GISBASE) to your GRASS installation? - + @@ -7239,11 +7540,10 @@ Would you like to specify path (GISBASE) to your GRASS installation? - - - - - + + + + @@ -7255,12 +7555,11 @@ Would you like to specify path (GISBASE) to your GRASS installation? - - - - - - + + + + + Warning Warnung @@ -7393,73 +7692,73 @@ Would you like to specify path (GISBASE) to your GRASS installation? Version 0.001 - + Python is not enabled in QGIS. Python ist in QGIS nicht aktiviert. - - - - - - - + + + + + + + - + Plugins Erweiterungen - + Loaded %1 (package: %2) %1 geladen (Paket: %2) - + Library name is %1 Bibiliotheksname is %1 - - + + Failed to load %1 (Reason: %2) Konnte %1 nicht laden (Grund: %2) - + Attempting to resolve the classFactory function Versuche die Funktion classFactory aufzulösen - + Loaded %1 (Path: %2) %1 geladen (Pfad: %2) - + Error Loading Plugin Fehler beim Laden der Erweiterung - + There was an error loading a plugin.The following diagnostic information may help the QGIS developers resolve the issue: %1. Beim Laden einer Erweiterung trat ein Fehler auf. Die folgenden Informationen könnten den QGIS-Entwicklern bei der Lösung des Problem helfen: %1. - + Unable to find the class factory for %1. Konnte die Klassenfabrik für %1 nicht finden. - + Plugin %1 did not return a valid type and cannot be loaded Erweiterung %1 gab keinen gültigen Typ zurück und kann nicht geladen werden @@ -7469,7 +7768,7 @@ Would you like to specify path (GISBASE) to your GRASS installation? Wo ist '%1' (ursprünglicher Ort: %2)? - + Error when reading metadata of plugin %1 Fehler beim Lesen der Metadaten der Erweiterung %1 @@ -7594,7 +7893,7 @@ Would you like to specify path (GISBASE) to your GRASS installation? Kann Raster nicht abfragen - + Python error Python-Fehler @@ -7864,218 +8163,227 @@ Fehler(%2): %3 Unbekannter Geometrietyp - + OGR driver for '%1' not found (OGR error: %2) OGR-Treiber für '%1' nicht gefunden (OGR-Fehler: %2) - + trimming attribute name '%1' to ten significant characters produces duplicate column name. Kürzung des Attributnamens '%1' auf 10 signifikante Stellen führt zu doppelten Spaltennamen. - + creation of data source failed (OGR error:%1) Erzeugung der Datenquelle gescheitert (OGR-Fehler: %1) - + creation of layer failed (OGR error:%1) Layererzeugung schlug fehl (OGR-Fehler: %1) - + unsupported type for field %1 Feldtyp für %1 nicht unterstützt - + creation of field %1 failed (OGR error: %2) Erzeugung des Felds %1 gescheitert (OGR-Fehler: %2) - + created field %1 not found (OGR error: %2) Erzeugtes Feld %1 nicht gefunden (OGR-Fehler: %2) - + Invalid variant type for field %1[%2]: received %3 with type %4 Ungültiger Typ für Feld %1[%2]: %3 mit Typ %4 empfangen - - + + Feature geometry not imported (OGR error: %1) Objektgeometrie nicht importiert (OGR-Fehler: %1) - + Feature creation error (OGR error: %1) Objekterzeugungsfehler (OGR-Fehler: %1) - - + + Failed to transform a point while drawing a feature of type '%1'. Writing stopped. (Exception: %2) Transformation eines Punkts schlug beim Zeichnen eines Objekts vom Typ '%1' fehl. Schreiben beendet (Ausnahme %2) - - + + Feature write errors: Objektschreibfehler: - - + + Stopping after %1 errors Abbruch nach %1 Fehlern - + Only %1 of %2 features written. Nur %1 von %2 Objekten geschrieben. - + Arc/Info ASCII Coverage Arc/Info ASCII Coverage - + Atlas BNA Atlas BNA - + Comma Separated Value Komma-separierte Werte [CSV] - + ESRI Shapefile ESRI-Shapedatei - + FMEObjects Gateway FMEObjects Gateway - + GeoJSON GeoJSON - + GeoRSS GeoJSON - + Geography Markup Language [GML] Geography Markup Language [GML] - + Generic Mapping Tools [GMT] Generic Mapping Tools [GMT] - + GPS eXchange Format [GPX] GPS-Austauschformat [GPX] - + INTERLIS 1 INTERLIS 1 - + INTERLIS 2 INTERLIS 2 - + Keyhole Markup Language [KML] Keyhole Markup Language [KML] - + + Mapinfo TAB + Mapinfo-TAB + + + + Mapinfo MIF + Mapinfo-MIF + + Mapinfo File Mapinfo-Datei - + Microstation DGN Microstation DGN - + S-57 Base file S-57 Base-Datei - + Spatial Data Transfer Standard [SDTS] Spatial Data Transfer Standard [SDTS] - + SQLite SQLite - + + SpatiaLite + SpatiaLite + + + AutoCAD DXF AutoCAD DXF - + Geoconcept Geoconcept - + ESRI FileGDB ESRI-FileGDB - - Groups not yet supported - Gruppen noch nicht unterstützt - - - - - + + + Cannot draw raster Kann Raster nicht zeichnen @@ -8090,17 +8398,17 @@ Nur %1 von %2 Objekten geschrieben. <html>QGIS bringt's!</html> - + CRS undefined - defaulting to project CRS KBS undefiniert - Projekt-KBS wird voreingestellt - + CRS undefined - defaulting to default CRS: %1 KBS undefiniert - voreingestelltes KBS gewählt: %1 - + Reading raster Lade Raster @@ -8170,7 +8478,7 @@ Nur %1 von %2 Objekten geschrieben. Eine Erweiterung die räumliche Abfragen von Vektorlayern ermöglicht - + QGIS starting in non-interactive mode not supported. You are seeing this message most likely because you have no DISPLAY environment variable set. @@ -8316,11 +8624,11 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA OGR[%1] Fehler %2: %3 - - - + - + + + @@ -8469,28 +8777,27 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA Konnte Datei %1.qpj nicht erzeugen - - + Cannot get GDAL raster band: %1 Konnte GDAL-Rasterkanal nicht bestimmen: %1 - + Cannot open GDAL MEM dataset %1: %2 Konnte GDAL-MEM-Datensatz %1 nicht öffnen: %2 - + Cannot GDALCreateGenImgProjTransformer: GDALCreateGenImgProjTransformer-Fehler: - + Cannot inittialize GDALWarpOperation : GDALWarpOperation-Initialisierungsfehler: - + Cannot ChunkAndWarpImage: %1 ChungAndWarpImage-Fehler: %1 @@ -8521,12 +8828,12 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA Eine Erweiterung, um Anzahl, Summen und Mittel von Rastern zu jedem Polygon eines Vektorlayers zu berechnen - + Globe Globus - + Overlay data on a 3D globe Daten auf einem 3D-Globus überlagern @@ -8546,44 +8853,44 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA Laden des Layers gescheitert - + Creation error for features from #%1 to #%2. Provider errors was: %3 Objekterzeugungsfehler von #%1 bis #%2. Fehler des Datenlieferanten war: %3 - + Vector import Vektorimport - + Only %1 of %2 features written. Nur %1 von %2 Objekten geschrieben. - - + + - + Connection to database failed Verbindung zur Datenbank schlug fehl - + Creation of data source %1 failed: %2 Erzeugung der Datenquelle %1 gescheitert: %2 - + Loading of the layer %1 failed Laden des Layers %1 gescheitert - - + + Unable to delete layer %1: %2 Konnte Ebene %1 nicht löschen: @@ -8596,13 +8903,13 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA - + Unsupported type for field %1 Nicht unterstützter Typ für Feld %1 - + Creation of fields failed Erzeugung der Felder gescheitert @@ -8622,26 +8929,32 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA Erzeugung der Felder gescheitert - + Unable to initialize SpatialMetadata: Konnte räumliche Metadaten nicht initialisieren: - + Could not create a new database Konnte neue Datenbank nicht anlegen - + Unable to activate FOREIGN_KEY constraints [%1] Konnte Fremdschlüssel-Constraint nicht aktivieren [%1] - + + Unable to delete table %1 + + Konnte Tabelle %1 nicht löschen + + + Unable to delete table %1: Konnte Tabelle %1 nicht löschen: @@ -8688,17 +9001,17 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA - - - - - - - - - - - + + + + + + + + + + + Exception: %1 Ausnahme: %1 @@ -8714,23 +9027,23 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA - - - - - - - - - - - - + + + + + + + + + + + + GEOS GEOS - + GEOS prior to 3.2 doesn't support GEOSInterpolate GEOS vor 3.2 unterstützt GEOSInterpolate nicht @@ -8773,39 +9086,45 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA Lese Rasterteil %1 von %2 - + Building pyramids failed - write access denied Erzeugung der Pyramide gescheitert - Schreibzugriff verweigert - + Write access denied. Adjust the file permissions and try again. Schreibzugriff verweigert. Passen Sie die Dateizugriffsrechte an und versuchen Sie es erneut. - - - - + + + + Building pyramids failed. Erstellung der Pyramiden fehlgeschlagen. - + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. Die Datei war nicht beschreibbar. Einige Formate unterstützen Übersichtspyramiden nicht. Gucken Sie im Zweifel in die GDAL-Dokumentation. - - + + Building pyramid overviews is not supported on this type of raster. Für diese Art von Raster können keine Pyramiden erstellt werden. - + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. Erstellung von interne Pyramiden-Übersichten weder für JPEG-komprimierte Rasterlayer noch durch Ihre aktuelle libtiff-Bibliothek unterstützt. + + + + All Ramps + Alle Farbverläufe + QextSerialPort @@ -8893,412 +9212,448 @@ Diese Meldung erscheint höchstwahrscheinlich, weil die Umgebungsvariable DISPLA QgisApp - - - + + Invalid Data Source Ungültige Datenquelle - - + + No Layer Selected Keinen Layer ausgewählt - + There is a new version of QGIS available Eine neue Version von QGIS ist verfügbar - + You are running a development version of QGIS Sie verwenden eine Entwicklungsversion von QGIS - + You are running the current version of QGIS Sie verwenden die aktuelle Version von QGIS - + Would you like more information? Wollen Sie mehr Information? - - - - + + + + QGIS Version Information QGIS-Versionsinformationen - + Unable to get current version information from server Kann Informationen zu aktuellen Version nicht vom Server holen - + Connection refused - server may be down Verbindung abgelehnt - Server vielleicht heruntergefahren - + QGIS server was not found QGIS-Server nicht gefunden - + + + + Invalid Layer Ungültiger Layer - + %1 is an invalid layer and cannot be loaded. %1 ist ein ungültiger Layer und kann nicht geladen werden. - + Problem deleting features Problem beim Löschen der Objekte - + A problem occured during deletion of features Beim Löschen der Objekte ist ein Problem aufgetreten - + No Vector Layer Selected Es wurde kein Vektorlayer gewählt - + Deleting features only works on vector layers Löschen von Objekten ist nur von Vektorlayern möglich - + To delete features, you must select a vector layer in the legend Zum Löschen von Objekte zu muss ein Vektorlayer in der Legende gewählt werden - + Map legend that displays all the layers currently on the map canvas. Click on the check box to turn a layer on or off. Double click on a layer in the legend to customize its appearance and set other properties. Legende, die alle im Kartenfenster angezeigten Layer enthält. Bitte auf die Kontrollkästchen klicken, um einen Layer an- oder auszuschalten. Mit einem Doppelklick in der Legende kann die Erscheinung und sonstige Eigenschaften eines Layers festgelegt werden. - + Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas. Übersichtsfenster. Dieses Fenster kann benutzt werden um die momentane Ausdehnung des Kartenfensters darzustellen. Der momentane Ausschnitt ist als rotes Rechteck dargestellt. Jeder Layer in der Karte kann zum Übersichtsfenster hinzugefügt werden. - + Displays the current map scale Zeigt den momentanen Kartenmaßstab an - + Render Zeichnen - + When checked, the map layers are rendered in response to map navigation commands and other events. When not checked, no rendering is done. This allows you to add a large number of layers and symbolize them before rendering. Wenn angewählt, werden die Kartenlayer abhängig von der Bedienung der Navigationsinstrumente, gezeichnet. Anderenfalls werden die Layer nicht gezeichnet. Dies erlaubt es, eine große Layeranzahl hinzuzufügen und das Aussehen der Layer vor dem Zeichnen zu setzen. - + Choose a QGIS project file Eine QGIS-Projektdatei wählen - + Toggle map rendering Zeichnen der Karte einschalten - + Open a GDAL Supported Raster Data Source Öffnen einer GDAL-Rasterdatenquelle - + Choose a QGIS project file to open QGIS-Projektdatei zum Öffnen wählen - + Reading settings Lese Einstellungen - + Setting up the GUI Richte die Oberfläche ein - + Checking database Überprüfe die Datenbank - + Restoring loaded plugins Stelle die geladenen Erweiterungen wieder her - + Initializing file filters Initialisiere Dateifilter - + Restoring window state Stelle Fensterstatus wieder her - - + + QGIS Ready! QGIS ist startklar! - + Ready Fertig - + QGIS version QGIS-Version - + QGIS code revision QGIS-Codeversion - + Compiled against Qt Kompiliert gegen Qt - + Running against Qt Laufendes Qt - + GEOS Version GEOS-Version - + PostgreSQL Client Version PostgreSQL-Client-Version - - + + No support. Keine Unterstützung. - + SpatiaLite Version SpatiaLite-Version - + QWT Version QWT-Version - + This copy of QGIS writes debugging output. Diese QGIS-Kopie schreibt Debugausgaben. - + Unable to open project Kann das Projekt nicht öffnen - + + + Duplicate layer: + Layer kopieren: + + + + %1 (duplication resulted in invalid layer) + %1 (Kopieren führt zu ungültigem Layer) + + + + %1 (%2type unsupported) + %1 (Typ %2 nicht unterstützt) + + + Unknown network socket error: %1 Unbekannter Netzwerkfehler: %1 - - - + + Layer is not valid Layer ist ungültig - - + The layer is not a valid layer and can not be added to the map Der Layer ist ungültig und kann daher nicht zum Kartenfenster hinzugefügt werden - + + Project has layer(s) in edit mode with unsaved edits, which will NOT be saved! + Projekt hat Layer im Bearbeitungsmodus mit nicht gespeicherten Bearbeitungen, die NICHT gespeichert werden! + + + Save? Speichern? - + + Do you want to save the current project?%1 + Wollen Sie das aktuelle Projekt speichern?%1 + + + Current CRS: %1 (OTFR enabled) Aktuelles KBS: %1 (OTF-Reprojektion aktiv) - + Current CRS: %1 (OTFR disabled) Aktuelles KBS: %1 (OTF-Reprojektion aus) - + Extents: Ausdehnung: - + + + Error adding valid layer to map canvas + Fehler beim Hinzufügen eines gültigen Layers zur Karte + + + + + + Raster layer + Raster-Layer + + + Unsupported Data Source Nicht unterstütztes Datenformat - - - - - - - + + + + + + + + + Error Fehler - + Checking provider plugins Provider-Erweiterungen werden geprüft - + Starting Python Python wird gestartet - + Provider does not support deletion Provider unterstützt keine Löschoperationen - + Data provider does not support deleting features Der Provider hat nicht die Möglichkeit, Objekte zu löschen - - - + + + Layer not editable Der Layer kann nicht bearbeitet werden - + The current layer is not editable. Choose 'Start editing' in the digitizing toolbar. Der aktuelle Layer kann nicht bearbeitet werden. Bitte 'Bearbeitungsstatus umschalten' aus der Digitalisierwerkzeugleiste wählen. - + Scale Maßstab - + Current map scale (formatted as x:y) Aktueller Kartenmaßstab (x:y formatiert) - + Map coordinates at mouse cursor position Kartenkoordinaten beim Mauszeiger - - Do you want to save the current project? - Soll das aktuelle Projekt gespeichert werden? - - - + Current map scale Aktueller Kartenmaßstab - + Project file is older Projektdatei ist älter - + <tt>Settings:Options:General</tt> Menu path to setting options <tt>Einstellungen:Optionen:Allgemein</tt> - + Warn me when opening a project file saved with an older version of QGIS Beim Öffnen einer Projektdatei, die mit einer älteren QGIS-Version erstellt wurde, warnen - + Overview Übersicht - + Progress bar that displays the status of rendering layers and other time-intensive operations Fortschrittsanzeige für das Zeichnen von Layern und andere zeitintensive Operationen - + Stop map rendering Zeichnen der Karte abbrechen - + Map canvas. This is where raster and vector layers are displayed when added to the map Kartenansicht. Hier werden Raster- und Vektorlayer angezeigt, wenn sie der Karte hinzugefügt werden - + Toggle extents and mouse position display Ausdehnungs- und Mauspositionsanzeige umschalten - + This icon shows whether on the fly coordinate reference system transformation is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour. Diese Icon zeigt an, ob On-The-Fly-Transformation des Koordinatenbezugssystem aktiv ist. Anklicken, um dies in den Projektionseigenschaften zu ändern. - + CRS status - Click to open coordinate reference system dialog KBS-Status - Klicken um den Dialog zum Koordinatenbezugssystem zu öffnen - + Maptips require an active layer Kartentipps erfordern einen aktuellen Layer - + Multiple Instances of QgisApp Mehrere QgisApp-Instanzen - + Multiple instances of Quantum GIS application object detected. Please contact the developers. @@ -9306,191 +9661,206 @@ Please contact the developers. Bitte nehmen Sie Kontakt zu den Entwicklern auf. - + Quantum GIS Quantum GIS - + Minimize Minimieren - + Ctrl+M Minimize Window Strg+M - + Minimizes the active window to the dock Minimiert das aktive Fenster ins Dock - + Zoom Zoom - + Toggles between a predefined size and the window size set by the user Schaltet zwischen voreingestellter und vom Benutzer bestimmten Fenstergröße um - + Bring All to Front Alle in den Vordergrund bringen - + Bring forward all open windows Alle geöffneten Fenster vorholen - + Failed to open Python console: Konnte Python-Konsole nicht öffnen: - + Panels Bedienfelder - + Toolbars Werkzeugkästen - + &Database Da&tenbank - - + + Coordinate: Koordinate: - + Current map coordinate Aktuelle Kartenkoordinate - + Control rendering order Bestimmt Zeichenreihenfolge - + Layer order Layerreihenfolge - - - + + + Private qgis.db Benutzer qgis.db - + Could not open qgis.db Konnte qgis.db nicht öffnen - + Migration of private qgis.db failed. %1 Migration der Benutzer qgis.db schlug fehl. %1 - + Compiled against GDAL/OGR Kompiliert mit GDAL/OGR - + Running against GDAL/OGR Läuft mit GDAL/OGR - + %1 doesn't have any layers %1 hat keine Layer - + Select raster layers to add... Einzufügende Rasterlayer wählen... - + Cannot get MSSQL select dialog from provider. Konnte den MSSQL-Auswahldialog nicht vom Datenlieferanten holen. - - - + + + QGis files QGis-Dateien - + Labeling Beschriftung - + Cannot copy style: %1 Kann Stil nicht kopieren: %1 - + Cannot parse style: %1:%2:%3 Kann Stil nicht interpretieren: %1:%2:%3 - + Cannot read style: %1 Kann Stil nicht lesen: %1 - + + copy + Kopie + + + + Plugin layer + Erweiterungslayer + + + + Memory layer + Speicherlayer + + + Couldn't load Python support library: %1 Konnte Python-Unterstützungsbibliothek nicht laden: %1 - + Couldn't resolve python support library's instance() symbol. Konnte Symbol instance() nicht in Python-Unterstützungsbibliothek finden. - + Python support ENABLED :-) Python-Unterstützung aktiviert :-) - + QGIS - Changes since last release QGIS-Änderung seit der letzten Ausgabe - - + + To perform a full histogram stretch, you need to have a raster layer selected. Um eine volle Histogrammstreckung durchzuführen, muß ein Rasterlayer gewählt sein. - + This project file was saved by an older version of QGIS Die Projektdatei wurde mit einer älteren QGIS-Version gespeichert - + Always ignore these errors? @@ -9499,7 +9869,7 @@ Always ignore these errors? Diese Fehler immer ignorieren? - + %n SSL errors occured number of errors @@ -9508,352 +9878,357 @@ Diese Fehler immer ignorieren? - + Raster Raster - + Security warning: Sicherheitswarnung: - - macros have been disabled. - Makros wurden abgeschaltet. - - - - Enable - Einschalten - - - + Log Messages Protokoll - + QGIS starting... QGIS startet... - + Window Fenster - + Vect&or &Vektor - + &Web &Web - + Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved. It also allows editing to set the canvas center to a given position. The format is lat,lon or east,north Zeigt die Kartenkoordinate an der aktuellen Mausposition. Die Anzeige wird laufend aktualisiert während die Maus bewegt wird. Sie kann auch bearbeitet werden, um die Kartenanzeige auf eine gegebene Koordinate zu zentrieren. Das Format ist Breite,Höhe oder Ost,Nord - + Current map coordinate (lat,lon or east,north) Aktuelle Kartenkoordinaten (Breite,Höhe oder Ost,Nord) - + Map layer list that displays all layers in drawing order. Layerliste, die alle Layer in Zeichenreihenfolge anzeigt. - + [ERROR] Can not make qgis.db private copy [FEHLER] Kann private Kopie von qgis.db nicht anlegen - + Update of view in private qgis.db failed. %1 Aktualisierung der Sicht in privater qgis.db gescheitert. %1 - - + + < Blank > < Leer > - + PROJ.4 Version PROJ.4-Version - + + QScintilla2 Version + QScintilla2-Version + + + Select zip layers to add... ZIP-Layer zum Hinzufügen wählen... - + Vector Vektor - + Select vector layers to add... Einzufügende Vektorlayer wählen... - + PostgreSQL PostgreSQL - + Cannot get PostgreSQL select dialog from provider. Kann PostgreSQL-Auswahldialog des Datenlieferanten nicht bestimmen. - + %1 is an invalid layer - not loaded %1 ist ein ungültiger Layer - nicht geladen - + SpatiaLite SpatiaLite - + Cannot get SpatiaLite select dialog from provider. Kann SpatiaLite-Auswahldialog nicht vom Datenlieferanten holen. - + MSSQL MSSQL - + WMS WMS - + Cannot get WMS select dialog from provider. Konnte den WMS-Auswahldialog nicht vom Datenlieferanten holen. - + WCS WCS - + Cannot get WCS select dialog from provider. Konnte den WCS-Auswahldialog nicht vom Datenlieferanten holen. - + WFS WFS - + Cannot get WFS select dialog from provider. Konnte WFS-Auswahldialog nicht vom Datenlieferanten holen. - + Calculating... Berechne... - - + + Abort... Abbrechen... - + + project macros have been disabled. + Projektmakros wurden abgeschaltet. + + + + Enable macros + Makros aktivieren + + + Choose a file name to save the QGIS project file as Name für zu speichernden QGIS-Projektdatei wählen - + Unable to load %1 %1 kann nicht geladen werden - + Choose a file name to save the map image as Name für Datei zum Speichern des Kartenabbilds wählen - + Please select a vector layer first. Bitte wählen zur zuvor einen Layer. - + Layer labeling settings Layerbeschriftungseinstellungen - + Saving done Speichern abgeschlossen - + Export to vector file has been completed Export in Vektordatei ist abgeschlossen - + Save error Fehler beim Speichern - + Export to vector file failed. Error: %1 Export in Vektordatei schlug fehl. Fehler: %1 - + Features deleted Objekt gelöscht - + Merging features... Objekte werden verschmolzen... - + Abort Abbrechen - - + + Composer %1 Druckzusammenstellung %1 - - + + No active layer Kein aktiver Layer - - + + No active layer found. Please select a layer in the layer list Keinen aktiven Layer gefunden. Bitte einen Layer aus der Liste wählen - - + + Active layer is not vector Aktiver ist kein Vektorlayer - - + + The merge features tool only works on vector layers. Please select a vector layer from the layer list Das Verschmelzen von Objekte funktioniert nur mit Vektorlayern. Bitte einen Vektorlayer aus der Liste wählen - - + + Merging features can only be done for layers in editing mode. To use the merge tool, go to Layer->Toggle editing Objekte können nur auf Layern im Bearbeitungsmodus verschmolzen werden. Bitte mit Layer->Bearbeitungsmodus umschalten, um das Verschmelzungswerkzeug zu benutzen - - - + + + The merge tool requires at least two selected features Das Verschmelzungswerkzeug erfordert mindestens zwei gewählte Objekte - - - + + + Not enough features selected Nicht genug Objekte gewählt - + Merged feature attributes Objektattribute vereinen - - + + Merge failed Zusammenführung fehlgeschlagen - - + + An error occured during the merge operation Beim Zusammenführen trat ein Fehler auf - - + + The union operation would result in a geometry type that is not compatible with the current layer and therefore is canceled Die Vereinigungsoperation würde zu einem Geometrietyp führen, der nicht zum aktuellen Layer paßt, und wurde daher abgebrochen - + Union operation canceled Vereinigungsvorgang abgebrochen - + Merged features Objekte verschmelzen - + Features cut Objekte ausgeschnitten - + Features pasted Objekte eingefügt - + Start editing failed Bearbeitungsbeginn schlug fehl - + Provider cannot be opened for editing Lieferant kann nicht zum Bearbeiten geöffnet werden - + Stop editing Bearbeitung beenden - + Do you want to save the changes to layer %1? Sollen die Änderungen am Layer %1 gespeichert werden? - - + + Could not commit changes to layer %1 Errors: %2 @@ -9864,91 +10239,91 @@ Fehler: %2 - + Problems during roll back Probleme beim Zurücknehmen der Änderungen - + GPS Information GPS-Information - + Map coordinates for the current view extents Kartenkoordinaten für den aktuell sichtbaren Ausschnitt - + Warning Warnung - + This layer doesn't have a properties dialog. Dieser Layer hat keine Eigenschaftendialog. - + Authentication required Authentifikation erforderlich - + Proxy authentication required Proxy-Authentifikation erforderlich - + SSL errors occured accessing URL %1: SSL-Fehler beim Zugriff auf URL %1: - + Quantum GIS - %1 ('%2') Quantum GIS - %1 ('%2') - + %1 is not a valid or recognized data source %1 ist keine gültige Datenquelle oder wird nicht erkannt - - + + Saved project to: %1 Projekt in %1 gespeichert - - + + Unable to save project %1 Konnte Projekt %1 nicht speichern - + Saved map image to %1 Kartenabbild als %1 gespeichert - + Unable to communicate with QGIS Version server %1 Konnte nicht mit dem QGIS-Versionserver kommunizieren %1 - + No Raster Layer Selected Kein Rasterlayer gewählt - + The layer %1 is not a valid layer and can not be added to the map Der Layer %1 ist ungültig und kann der Karte nicht hinzugefügt werden - + %n feature(s) selected on layer %1. number of selected features @@ -9957,32 +10332,27 @@ Fehler: %2 - - %1 is not a valid or recognized raster data source - %1 ist keine gültige Rasterdatenquelle oder wird nicht erkannt - - - + %1 is not a supported raster data source %1 ist keine unterstützte Rasterdatenquelle - + <p>This project file was saved by an older version of QGIS. When saving this project file, QGIS will update it to the latest version, possibly rendering it useless for older versions of QGIS.<p>Even though QGIS developers try to maintain backwards compatibility, some of the information from the old project file might be lost. To improve the quality of QGIS, we appreciate if you file a bug report at %3. Be sure to include the old project file, and state the version of QGIS you used to discover the error.<p>To remove this warning when opening an older project file, uncheck the box '%5' in the %4 menu.<p>Version of the project file: %1<br>Current version of QGIS: %2 <p>Diese Projektdatei wurde mit einer älteren QGIS-Version gespeichert. Beim Speichern dieser Projektdatei wird QGIS es auf die aktuelle Version aktualisieren und sie damit unter Umständen für ältere QGIS-Versionen unbrauchbar machen. <p>Obwohl die QGIS-Entwickler versuchen Rückwärtskompatibilität zu erhalten, könnten dabei einige Informationen der alten Projektdatei verloren gehen. Um die Qualität von QGIS zu verbessern, würden wir es begrüßen, wenn Sie einen Fehler unter %3 melden würden. Bitte legen Sie die alte Projektdatei bei und nennen Sie die QGIS-Version mit der Sie diesen Fehler entdeckt haben. <p>Um diese Warnung in Zukunft zu unterdrücken, entfernen Sie bitte das Häkchen in '%5' im Menü %4.<p>Version der Projektdatei: %1<br>Aktuelle QGIS-Version: %2 - + Layers Layer - + Delete features Objekte löschen - + Delete %n feature(s)? number of features to delete @@ -9999,7 +10369,7 @@ Fehler: %2 QgisAppInterface - + Attributes changed Attributänderung @@ -10012,12 +10382,12 @@ Fehler: %2 Über Quantum GIS - + about:blank about:blank - + Donors Spender @@ -10047,7 +10417,12 @@ Fehler: %2 Entwickler - + + Essen (Germany), Developer meeting 2012 + Essen (Deutschland), Entwicklertreffen 2012 + + + Contributors Mitwirkende @@ -10103,7 +10478,7 @@ p, li { white-space: pre-wrap; } Qt-Bilderweiterungssuchpfade <br> - + Translators Übersetzer @@ -10188,13 +10563,54 @@ p, li { white-space: pre-wrap; } Verknüpfung im Speicher cachen + + QgsAddTabOrGroup + + + Add tab or group for %1 + Reiter oder Gruppe für %1 hinzufügen + + + + QgsAddTabOrGroupBase + + + Dialog + Dialog + + + + Create category + Kategorie erstellen + + + + as + als + + + + a tab + Reiter + + + + a group in container + als Gruppenbehälter + + QgsAnnotationWidget - + Select frame color Rahmenfarbe wählen + + + Select background color + Hintergrundfarbe wählen + QgsAnnotationWidgetBase @@ -10214,12 +10630,17 @@ p, li { white-space: pre-wrap; } Kartenmarkierung - + Frame width Rahmenstärke - + + Background color + Hintergrundfarbe + + + Frame color Rahmenfarbe @@ -10227,19 +10648,19 @@ p, li { white-space: pre-wrap; } QgsApplication - - - + + + Exception Ausnahme - + unknown exception Unbekannte Ausnahme - + Application state: QGIS_PREFIX_PATH env var: %1 Prefix: %2 @@ -10264,7 +10685,7 @@ Benutzer-DB-Pfad: %9 - + match indentation of application state @@ -10357,58 +10778,58 @@ Benutzer-DB-Pfad: %9 QgsAttributeActionDialog - + Select an action File dialog window title Eine Aktion wählen - + Insert expression Ausdruck einfügen - + Missing Information Fehlende Information - + To create an attribute action, you must provide both a name and the action to perform. Um eine Attributaktion zu erstellen, muss sowohl ein Name als auch eine auszuführende Aktion angegeben werden. - + Echo attribute's value Attributwert anzeigen - + Run an application Eine Applikation ausführen - + Get feature id Objektkennung bestimmen - + Selected field's value (Identify features tool) Gewählter Feldwert (Werkzeug "Objekte abfragen") - + Clicked coordinates (Run feature actions tool) Angeklickte Koordinate (Werkzeug "Objektaktion ausführen") - + Open file Datei öffnen - + Search on web based on attribute's value Websuche nach dem Attributwert durchführen @@ -10634,17 +11055,17 @@ Benutzer-DB-Pfad: %9 QgsAttributeDialog - + Error Fehler - + Error: %1 Fehler: %1 - + Attributes - %1 Attribute - %1 @@ -10652,22 +11073,22 @@ Benutzer-DB-Pfad: %9 QgsAttributeEditor - + Select a file Datei wählen - + Select a date Datum wählen - + (no selection) (keine Auswahl) - + ... ... @@ -10769,7 +11190,7 @@ Benutzer-DB-Pfad: %9 QgsAttributeTableAction - + Attributes changed Attribute geändert @@ -10785,12 +11206,12 @@ Benutzer-DB-Pfad: %9 QgsAttributeTableDialog - + Error during search Fehler beim Suchen - + Attribute table - %1 (%n Feature(s)) feature count @@ -10799,22 +11220,22 @@ Benutzer-DB-Pfad: %9 - + Abort Abbrechen - + Loading feature attributes... Lade Objektattribute... - + Attribute table Attributtabelle - + Attribute table - %1 :: %n / %2 feature(s) selected feature count @@ -10823,17 +11244,17 @@ Benutzer-DB-Pfad: %9 - + Parsing error Parsingfehler - + Evaluation error Auswertungsfehler - + Attribute table - %1 (%n matching features) matching features @@ -10842,54 +11263,54 @@ Benutzer-DB-Pfad: %9 - + Attribute table - %1 (No matching features) Attributtabelle - %1 (kein passendes Objekt) - + Attribute added Attribut hinzugefügt - - + + Attribute Error Attributfehler - + The attribute could not be added to the layer Das Attribute konnte dem Layer nicht hinzugefügt werden - + Deleted attribute Attribut gelöscht - + The attribute(s) could not be deleted Die Attribute konnten nicht gelöscht werden - + Geometryless feature added Geometrieloses Objekt hinzugefügt - + Run action Aktion starten - - + + Open form Formular öffnen - + %1 features loaded. %1 Objekte geladen. @@ -11088,7 +11509,7 @@ Benutzer-DB-Pfad: %9 QgsAttributeTableModel - + feature id Objektkennung @@ -11607,74 +12028,146 @@ Datenbank: %2 - QgsBrowserDockWidget + QgsBrowserDirectoryPropertiesBase - - Browser - Browser + + Dialog + Dialog - - - Refresh - Aktualisieren + + Path + Pfad + + + QgsBrowserDockWidget - - Add Selection - Auswahl hinzufügen + + Browser + Browser - - + Add Selected Layers Gewählte Layer hinzufügen - - Collapse All - Alle einklappen - - - + Add as a favourite Als Favorit hinzufügen - + Remove favourite Favoriten entfernen - + Add Layer Layer hinzufügen - + + Properties Eigenschaften - + + Filter Pattern Syntax + Filtermuster-Syntax + + + + Wildcard(s) + Platzhalter + + + + Regular Expression + Regulärer Ausdruck + + + + Fast scan this dir. + Verzeichnis schnell durchsuchen. + + + Add a directory Verzeichnis hinzufügen - + Add directory to favourites Verzeichnis zu Favoriten hinzufügen - + Error Fehler - + Layer Properties Layereigenschaften + + + Directory Properties + Verzeichniseigenschaften + + + + QgsBrowserDockWidgetBase + + + Browser + Browser + + + + + Refresh + Aktualisieren + + + + Add Selected Layers + Gewählte Layer hinzufügen + + + + Add + Hinzufügen + + + + Filter Files + Dateifilter + + + + + ... + ... + + + + Collapse All + Alle einklappen + + + + Options + Optionen + + + + Filter files + Dateien filtern + QgsBrowserLayerPropertiesBase @@ -11795,6 +12288,24 @@ Datenbank: %2 Kein Pinsel + + QgsCategorizedSymbolRendererV2Model + + + Symbol + Symbol + + + + Value + Wert + + + + Label + Beschriftung + + QgsCategorizedSymbolRendererV2Widget @@ -11809,8 +12320,6 @@ Datenbank: %2 - - Symbol Symbol @@ -11820,81 +12329,97 @@ Datenbank: %2 Farbverlauf - + Classify Klassifizieren - + Add Hinzufügen - + Delete Löschen - + Delete all Alle löschen - + Join Verbinden - + Advanced Erweitert - - - Value - Wert + + Symbol levels... + Symbolebenen... - - - Label - Beschriftung + + High number of classes! + Hohe Klassenanzahl! - - Symbol levels... - Symbolebenen... + + Classification would yield %1 entries which might not be expected. Continue? + Klassifizierung würde zu %1 Einträgen führen, was unerwartet sein könnte. Fortsetzen? - - + + Error Fehler - + There are no available color ramps. You can add them in Style Manager. Es sind keine Farbverläufe verfügbar. Im Stilmanager können welche ergänzt werden. - + The selected color ramp is not available. Der gewählte Farbverlauf ist nicht verfügbar. - + Confirm Delete Löschbestätigung - + The classification field was changed from '%1' to '%2'. Should the existing classes be deleted before classification? Das Klassifizierungsfeld wurde von '%1' auf '%2' geändert. Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? + + QgsCharacterSelectorBase + + + Character Selector + Zeichenauswahl + + + + Font: + Schriftart: + + + + Current font family and style + Aktueller Schriftartenfamilie und -stil + + QgsColorRampComboBox @@ -11940,28 +12465,28 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsComposer - + Big image Großes Bild - + SVG warning SVG-Warnung - - + + Don't show this message again Diese Nachricht nicht mehr anzeigen - + <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the <p>Die SVG-Exportfunktion in QGIS hat einige Probleme durch Fehler und Einschränkungen im - + SVG Format SVG-Format @@ -12016,155 +12541,155 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Atlas-Erzeugung - + PDF Format PDF-Format - - - + + + Empty filename pattern Dateinamenmuster leer - - - + + + The filename pattern is empty. A default one will be used. Das Dateinamenmuster ist leer. Eine Voreinstellung wird benutzt. - + Directory where to save PDF files Verzeichnis in dem PDF-Dateien gespeichert werden sollen - - - + + + Unable to write into the directory Konnte nicht in das Verzeichnis schreiben - - - + + + The given output directory is not writeable. Cancelling. Im Ausgabeverzeichnis konnte nicht geschriebene werden. Breche ab. - - - - + + + + Rendering maps... Zeichne Karten... - - - - + + + + Abort Abbrechen - - - - + + + + Atlas processing error Atlas-Verarbeitungsfehler - + To create image %1x%2 requires about %3 MB of memory. Proceed? Die Erzeugung des %1x%2 Bilds benötigt etwa %3 MB Hauptspeicher. Fortfahren? - + Choose a file name to save the map image as Namen der Datei des zu speichernden Kartenabbild wählen - - + + Choose a file name to save the map as Einen Dateinamen zum Speichern des Kartenabbilds wählen - + Save template Vorlage speichern - + Composer templates Druckvorlagen - + Composer Zusammmenstellung - + Project contains WMS layers Projekt enthält WMS-Layer - + Some WMS servers (e.g. UMN mapserver) have a limit for the WIDTH and HEIGHT parameter. Printing layers from such servers may exceed this limit. If this is the case, the WMS layer will not be printed Einige WMS-Server (z.B. UMN-Mapserver) haben Begrenzungen für die WIDTH- und HEIGHT-Parameter. Falls diese Begrenzungen beim Ausdruck überschritten werden, werden diese WMS-Layer nicht gedruckt - + Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p> Qt4-SVG-Code. Genauergesagt ist die Ausgabebegrenzung der Layer auf die Kartengrenzen ein Problem</p> - + Directory where to save image files Verzeichnis in dem Bilder gespeichert werden sollen - + Image format: Bildformat: - + If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p> Wenn die SVG-Ausgabe nicht zufriedenstellend ist, wird für vektorbasierende QGIS-Ausgabe der Druck in PostScript empfohlen.</p> - + Directory where to save SVG files Verzeichnis in dem SVG-Dateien gespeichert werden sollen - + Save error Fehler beim Speichern - + Error, could not save file Fehler, in Datei konnte nicht gespeichert werden - + Load template Vorlage laden - + Read error Lesefehler - + Error, could not read file Fehler, Datei konnte nicht gelesen werden @@ -12928,7 +13453,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsComposerLegend - + Legend Legende @@ -12957,103 +13482,120 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsComposerLegendWidget - + General Options Allgemeine Einstellungen - + Item wrapping changed Elementumbruch geändert - + Legend title changed Legendentitel geändert - + + Legend column count + Legendenspaltenanzahl + + + + Legend split layers + Layerlegende aufgeteilt + + + + Legend equal column width + Gleiche Spaltenbreite eingeschaltet + + + Legend symbol width Legendensymbolbreite - + Legend symbol height Legendensymbolhöhe - + Legend group space Legendgruppenzwischenraum - + Legend layer space Legendlayerzwischenraum - + Legend symbol space Legendensymbolzwischenraum - + Legend icon label space Legendeniconbeschriftungszwischenraum - + Title font changed Titelschriftart geändert - + Legend group font changed Legendgruppenschriftart geändert - + Legend layer font changed Legendenlayerschriftart geändert - + Legend item font changed Legendenelementschriftart geändert - + + Legend box space Legendenrahmenzwischenraum - + Legend map changed Legendenkarte geändert - + Legend item edited Legendenelement bearbeitet - - + + + Legend updated Legende aktualisiert - + Legend group added Legendengruppe hinzugefügt - + Map %1 Karte %1 - + None Keine @@ -13071,108 +13613,139 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Allgemein - + &Title &Titel - + Title Font... Titelschrift... - + Group Font... Gruppenschrift... - + Layer Font... Layerschrift... - + Item Font... Elementschrift... - + Symbol width Symbolbreite - - - - - - - + + + + + + + + mm mm - + Symbol height Symbolhöhe - + Layer space Layerraum - + Symbol space Symbolraum - + Icon label space Iconbeschriftungsraum - + Box space Rahmenabstand - + Map Karte - + Group Space Gruppenzwischenraum - + Wrap text on Textumbruch ein - + + Column count + Spaltenanzahl + + + + Allow to split layer items into multiple columns. + Aufteilung der Layerelemente in mehrere Spalten erlauben. + + + + Split layers + Layer aufteilen + + + + Equal column widths + Gleiche Spaltenbreite + + + + Column space + Spaltenabstand + + + Auto Update Automatisch aktualisieren - + All Alle - + Add group Gruppe hinzufügen - + + Show feature count for each class of vector layer. + Objektanzahl für jede Vektorlayerklasse anzeigen. + + + Update Aktualisieren - + Legend items Legendenelemente @@ -13236,13 +13809,13 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsComposerMap - + Map will be printed here Karte wird hier gedruckt - - + + Map %1 Karte %1 @@ -13256,72 +13829,72 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - - + + Cache Cache - - + + Rectangle Rechteck - + Solid Ausgefüllt - - + + Cross Kreuz - + No frame Kein Rahmen - - + + Zebra Zebra - - - + + + Inside frame Im Rahmen - - + + Outside frame Außerhalb des Rahmens - - - + + + Horizontal Horizontal - - + + Vertical Vertikal - + Change item width Elementbreite geändert @@ -13341,132 +13914,131 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Grad, Minute, Sekunde - + Change item height Elementhöhe geändert - + Map scale changed Kartenmaßstab geändert - + Map rotation changed Kartendrehung geändert - - + + Map extent changed Kartenausmaß geändert - + Canvas items toggled Kartenelement umgeschaltet - - - + + + None Keine - + Grid checkbox toggled Gitterstatus geändert - - + + Grid interval changed Gitterintervall geändert - - + + Grid offset changed Gitterabstand geändert - - + Grid pen changed Gitterstift geändert - + Grid type changed Gittertyp geändert - + Grid cross width changed Gitterkreuzbreite geändert - + Annotation font changed Beschriftungsschriftart geändert - + Annotation distance changed Beschriftungsabstand geändert - + Annotation format changed Beschriftungsformat geändert - + Changed grid frame style Gitterrahmenstil geändert - + Changed grid frame width Gitterrahmenbreite geändert - - - + + + Disabled deaktiviert - + Annotation position changed Beschriftungsposition geändert - + Map %1 Karte %1 - + Annotation toggled Beschriftung umgeschaltet - + Changed annotation direction Beschriftungsrichtung geändert - + Changed annotation precision Beschriftungsgenauigkeit geändert - - + + Render Zeichnen @@ -13554,27 +14126,17 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Gitter&typ - + Interval X X-Intervall - + Offset X X-Versatz - - Line width - Linienbreite - - - - Line color - Linienfarbe - - - + Interval Y Y-Intervall @@ -13614,77 +14176,87 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Ändern... - + Frame style Rahmenstil - + Frame width Rahmenstärke - + + Line style + Linienstil + + + + change... + ändern... + + + Draw annotation Beschriftung zeichnen - + Annotation position left side Beschriftungsposition linke Seite - + Annotation position right side Beschriftungsposition rechte Seite - + Annotation position top side Beschriftungsposition obere Seite - + Annotation position bottom side Beschriftungsposition untere Seite - + Annotation direction left side Beschriftungsrichtung linke Seite - + Annotation direction right side Beschriftungsrichtung rechte Seite - + Annotation direction top side Beschriftungsrichtung obere Seite - + Annotation direction bottom side Beschriftungsrichtung untere Seite - + Annotation format Beschriftungsformat - + Font... Schriftart... - + Distance to map frame Abstand zum Kartenrahmen - + Coordinate precision Koordinatengenauigkeit @@ -13826,12 +14398,12 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsComposerScaleBar - + km km - + m m @@ -15083,12 +15655,12 @@ Fehler: %5 QgsCptCityBrowserModel - + Name Name - + Info Information @@ -15096,27 +15668,27 @@ Fehler: %5 QgsCptCityColorRampItem - + colors Farben - + continuous Fortlaufend - + continuous (multi) Fortlaufend (mehrere) - + discrete Diskret - + variants Varianten @@ -15124,17 +15696,17 @@ Fehler: %5 QgsCptCityColorRampV2Dialog - + %1 directory details Verzeichnisdetails %1 - + %1 gradient details Detail der Gradiente %1 - + Error - cpt-city gradient files not found. You have two means of installing them: @@ -15158,23 +15730,28 @@ Diese Datei ist zu finden unter [%2] und aktuelle Datei istt [%3] - + Selections by theme nach Themen - + All by author Alle nach Autor - + You can download a more complete set of cpt-city gradients by installing the "Color Ramp Manager" plugin (you must enable Experimental plugins in the plugin manager). Sie können einen umfangreicheren Satz von Cpt-City-Gradienten durch Herunterladen der "Color-Ramp-Manager"-Erweiterung (Experimentelle Erweiterungen müssen im Erweiterungsmanager aktiviert sein). + + + All Ramps (%1) + Alle Farbverläufe (%1) + QgsCptCityColorRampV2DialogBase @@ -15193,6 +15770,11 @@ und aktuelle Datei istt [%3] Path Pfad + + + Save as standard gradient + Als Standardgradiente speichern + Palette @@ -15464,34 +16046,34 @@ und aktuelle Datei istt [%3] QgsCustomizationDialog - + Object name Objektname - + Label Beschriftung - + Description Beschreibung - - + + Choose a customization INI file INI-Datei für Anpassung wählen - - + + Customization files (*.ini) Anpassungsdatei (*.ini) - + Widgets Bedienelement @@ -15504,52 +16086,57 @@ und aktuelle Datei istt [%3] Anpassung - + + Enable customization + Anpassungen einschalten + + + toolBar toolBar - + Catch Fangen - + Switch to catching widgets in main application Umschalten um Bedienelemente der Hauptapplikation zu fangen - + Save Speichern - + Save to file In Datei speichern - + Load Laden - + Load from file Aus Datei laden - + Expand All Alle ausklappen - + Collapse All Alle einklappen - + Select All Alle wählen @@ -16261,22 +16848,22 @@ p, li { white-space: pre-wrap; } Bitte vor dem Hinzufügen des Layers zur Karte einen Layernamen eingeben - + Choose a delimited text file to open Textdatei zum Öffnen wählen - + Text files Textdateien - + Well Known Text files Well-Known-Text-Dateien - + All files Alle Dateien @@ -16597,37 +17184,37 @@ p, li { white-space: pre-wrap; } Der Diagrammtyp '%1' ist unbekannt. Ein vordefinierter Typ wurde gewählt. - + Transparency: %1% Transparenz: %1% - + Background color Hintergrundfarbe - + Pen color Stiftfarbe - + No attributes added. Keine Attribute hinzugefügt. - + You did not add any attributes to this diagram layer. Please specify the attributes to visualize on the diagrams or disable diagrams. Die haben keine Attribute zu diesem Diagrammlayer hinzugefügt. Bitte anzuzeigende Attribute festlegen oder Diagramme abschalten. - + No attribute value specified Kein Attributwert angegeben - + You did not specify a maximum value for the diagram size. Please specify the attribute and a reference value as a base for scaling in the Tab Diagram / Size. Es wurde keine Maximalgröße für das Diagramm angegeben. Bitte das Attribut und einen Referenzwert als Skalierungsbasis auf dem Reiter Diagramm / Größe festlegen. @@ -16875,59 +17462,59 @@ p, li { white-space: pre-wrap; } QgsDirectoryParamWidget - - + + Name Name - - + + Size Größe - - + + Date Datum - - + + Permissions Zugriffsrechte - - + + Owner Besitzer - - + + Group Gruppe - - + + Type Typ - + folder Ordner - + file Datei - + link Verknüpfung @@ -16974,76 +17561,133 @@ p, li { white-space: pre-wrap; } QgsEngineConfigDialog - + Dialog Beschriftungseinstellungen - + Search method Suchmethode - + Chain (fast) Kette (schnell) - + Popmusic Tabu Popmusik Tabu - + Popmusic Chain Popmusik Kette - + Popmusic Tabu Chain Popmusik Tabu-Kette - + FALP (fastest) FALP (schnellste) - + Number of candidates Kandidatenanzahl - + Point Punkt - + Line Linie - + Polygon Polygon - + Show all labels and features for all layers Alle Objekte und Beschriftungen aller Layer anzeigen - + Show candidates (for debugging) Kandidaten anzeigen (zur Fehlersuche) - + + Save settings with project + Einstellungen im Projekt speichern + + + (i.e. including colliding objects) (d.h. inkl. kollidierender Objekten) + + QgsErrorDialog + + + Error + Fehler + + + + QgsErrorDialogBase + + + Dialog + Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Summary</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Zusammenfassung</p></body></html> + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detailed report.</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Genauer Bereich.</p></body></html> + + + + Always show details + Details immer anzeigen + + + + Details >> + Details >> + + QgsExpressionBuilderDialogBase @@ -17114,52 +17758,52 @@ p, li { white-space: pre-wrap; } Felder und Werte - + Parser Error Parsingfehler - + Eval Error Auswertungsfehler - + Expression is invalid <a href=more>(more info)</a> Ausdruck ist ungültig <a href=more>(mehr Information)</a> - + More info on expression error Mehr Informations zum Ausdrucksfehler - + Load top 10 unique values Die ersten zehn eindeutigen Werte laden - + Load all unique values Alle eindeutigen Werte laden - + <h3>Oops! QGIS can't find help for this function.</h3>The help file for %1 was not found.<br> <h3>Hoppla! QGIS kann die Hilfe für die Funktion nicht finden</h3>Die Hilfedatei für %1 wurde nicht gefunden.<br> - + (Showing English version as there was no help available in your language (%1). If you would like to create it, contact the QGIS translation team).<br> (Weil keine Version in Ihrer Sprache (%1) vorhanden war, wird die englische Version angezeigt. Wenden Sie sich bitte an das QGIS-Übersetzungsteam, wenn Sie eine ergänzen möchen).<br> - + It was neither available in your language (%1) nor English. Sie war weder in Ihrer (%1) noch in englischer Sprache verfügbar. - + <br>If you would like to create it, contact the QGIS development team. <br>Wenden Sie sich an das QGIS-Entwicklerteam, falls Sie eine ergänzen möchten. @@ -17274,45 +17918,45 @@ p, li { white-space: pre-wrap; } QgsFieldCalculator - - + + Not available for layer Nicht für Layer verfügbar - + Evaluation error Auswertungsfehler - + Provider error Provider Fehler - + Could not add the new field to the provider. Konnte neues Feld nicht hinzufügen. - + Error Fehler - + An error occured while evaluating the calculation string: %1 Ein Fehler trat bei der Auswertung des Rechenausdrucks auf: %1 - + Please enter a field name Bitte geben Sie den Feldname an - + The expression is invalid see (more info) for details @@ -17367,6 +18011,271 @@ Der Ausdruck ist ungültig (siehe (mehr Information) für Näheres)Genauigkeit + + QgsFieldsProperties + + + Label + Beschriftung + + + + Id + Id + + + + Name + Name + + + + Type + Typ + + + + Length + Länge + + + + Precision + Genauigkeit + + + + Comment + Kommentar + + + + Edit widget + Bearbeitungselement + + + + Alias + Alias + + + + + Name conflict + Namenskonflikt + + + + + The attribute could not be inserted. The name already exists in the table. + Das Attribut konnte nicht eingefügt werden, da der Name bereits vorhanden ist. + + + + Added attribute + Attribut hinzugefügt + + + + + Deleted attribute + Attribut gelöscht + + + + Line edit + Eingabezeile + + + + Unique values + Eindeutige Werte + + + + Unique values editable + Eindeutige Werte (bearbeitbar) + + + + Classification + Klassifikation + + + + Value map + Wertabbildung + + + + Edit range + Eingabezeile mit Bereich + + + + Slider range + Schieberbereich + + + + Dial range + Drehreglerbereich + + + + File name + Dateiname + + + + Enumeration + Aufzählung + + + + Immutable + Unveränderbar + + + + Hidden + Versteckt + + + + Checkbox + Kontrollkästchen + + + + Text edit + Texteditor + + + + Calendar + Kalender + + + + Value relation + Wertbeziehung + + + + UUID generator + UUID-Generator + + + + Select edit form + Bearbeitungsformular wählen + + + + UI file + UI-Dateien + + + + QgsFieldsPropertiesBase + + + Field calculator + Feldrechner + + + + + Click to toggle table editing + Anklicken um den Tabellenbearbeitungsmodus umzuschalten + + + + Toggle editing mode + Bearbeitungsmodus umschalten + + + + New column + Neue Spalte + + + + Ctrl+N + Strg+N + + + + Delete column + Spalte löschen + + + + Ctrl+X + Strg+X + + + + ... + ... + + + + Init function + Initialisierungsfunktion + + + + Edit UI + UI zur Bearbeitung + + + + + + + + + + + - + - + + + + > + > + + + + ^ + ^ + + + + v + + + + + Autogenerate + Automatisch erzeugen + + + + Drag and drop designer + Mit Drag&Drop zusammenstellen + + + + Provide ui-file + UI-Datei verwenden + + + + Attribute editor layout: + Attributeditorzusammenstellung: + + QgsFormAnnotationDialog @@ -17384,8 +18293,8 @@ Der Ausdruck ist ungültig (siehe (mehr Information) für Näheres)QgsFormAnnotationDialogBase - Dialog - Dialog + Form annotation + Formularbemerkung @@ -18618,6 +19527,11 @@ Bitte wählen Sie eine gültige Datei. None Keine + + + Cannot get GDAL raster band: %1 + Konnte GDAL-Rasterkanal nicht bestimmen: %1 + Average @@ -19447,7 +20361,7 @@ p, li { white-space: pre-wrap; } - + All files Alle Dateien @@ -19472,12 +20386,12 @@ p, li { white-space: pre-wrap; } Wollen Sie die Datenquelle trotzdem hinzufügen? - + Model files Modell-Dateien - + Open 3D model file 3D-Modelldatei öffnen @@ -19683,6 +20597,24 @@ p, li { white-space: pre-wrap; } Klassenanzahl + + QgsGraduatedSymbolRendererV2Model + + + Symbol + Symbol + + + + Value + Wert + + + + Label + Beschriftung + + QgsGraduatedSymbolRendererV2Widget @@ -19697,7 +20629,6 @@ p, li { white-space: pre-wrap; } - Symbol Symbol @@ -19742,61 +20673,54 @@ p, li { white-space: pre-wrap; } Schöne Unterbrechungen - + Classify Klassifizieren - + Add class Klasse hinzufügen - - Delete class - Klasse löschen - - - - Advanced - Erweitert + + Delete + Löschen - - - Range - Bereich + + Delete all + Alle löschen - - - Label - Beschriftung + + Advanced + Erweitert - + Symbol levels... Symbolebenen... - - - + + + Error Fehler - + There are no available color ramps. You can add them in Style Manager. Es sind keine Farbverläufe verfügbar. Sie können sie im Stilmanager ergänzen. - + The selected color ramp is not available. Der gewählte Farbverlauf ist nicht verfügbar. - + Renderer creation has failed. Darstellungserzeugung gescheitert. @@ -20933,13 +21857,13 @@ in Zeile %2, Spalte %3 QgsGrassModule - - + + Run Los - + Stop Stopp @@ -20948,39 +21872,39 @@ in Zeile %2, Spalte %3 - - - - - - - + + + + + + + Warning Warnung - - + + Cannot get input region Konnte Eingabe-'region' nicht finden - + Use Input Region Eingabe-'region' benutzen - + <B>Successfully finished</B> <B>Erfolgreich beendet</B> - + <B>Finished with error</B> <B>Mit Fehler beendet</B> - + <B>Module crashed or killed</B> <B>Modul abgestürzt oder abgebrochen</B> @@ -21015,44 +21939,44 @@ in Zeile %2, Spalte %3 Handbuchseite zu %1 nicht gefunden - + Not available, description not found (%1) Nicht verfügbar, Beschreibung nicht gefunden (%1) - + Not available, cannot open description (%1) Nicht verfügbar, Beschreibung konnte nicht geöffnet werden (%1) - + Not available, incorrect description (%1) Nicht verfügbar, fehlerhafte Beschreibung (%1) - + Input %1 outside current region! Eingabe %1 außerhalb der aktuellen Region! - + Cannot find module %1 Modul %1 nicht gefunden - + Cannot start module: %1 Kann Modul %1 nicht starten - + Cannot read module file (%1) Kann Moduldatei %1 nicht lesen - + %1 at line %2 column %3 @@ -21061,7 +21985,7 @@ at line %2 column %3 in Zeile %2, Spalte %3 - + Output %1 exists! Overwrite? Ausgabe %1 existiert! Überschreiben? @@ -21112,17 +22036,17 @@ in Zeile %2, Spalte %3 QgsGrassModuleField - + Attribute field Attributfeld - + Warning Warnung - + 'layer' attribute in field tag with key= %1 is missing. 'layer'-Attribut im Feldtag mit key= %1 fehlt. @@ -21130,17 +22054,17 @@ in Zeile %2, Spalte %3 QgsGrassModuleFile - + File Datei - + %1:&nbsp;missing value %1:&nbsp;Fehlender Wert - + %1:&nbsp;directory does not exist %1&nbsp;Verzeichnis existiert nicht @@ -21148,44 +22072,44 @@ in Zeile %2, Spalte %3 QgsGrassModuleGdalInput - - - + + + Warning Warnung - + PostGIS driver in OGR does not support schemas!<br>Only the table name will be used.<br>It can result in wrong input if more tables of the same name<br>are present in the database. Der PostGIS-Treiber in OGR unterstützt keine Schemata!<br>Nur der Tabellenname wird benutzt.<br>Die kann zu falschen Eingaben führen, wenn mehrere Tabellen gleichen Namens<br>in der Datenbank vorkommen. - + Cannot find layeroption %1 Kann Layeroption %1 nicht finden - + OGR/PostGIS/GDAL Input OGR/PostGIS/GDAL-Quelle - + Cannot find whereoption %1 Kann Where-Option %1 nicht finden - + Password Passwort - + Select a layer Einen Layer wählen - + %1:&nbsp;no input %1&nbsp;keine Eingabe @@ -21193,50 +22117,50 @@ in Zeile %2, Spalte %3 QgsGrassModuleInput - - - - + + + + Warning Warnung - + Use region of this map Karten-'region' benutzen - + Cannot find typeoption %1 Kann Typoption %1 nicht finden - + Cannot find values for typeoption %1 Kann Wert für Typoption %1 nicht finden - + Cannot find layeroption %1 Kann Layeroption %1 nicht finden - + GRASS element %1 not supported GRASS-Element %1 nicht unterstützt - + Select a layer Einen Layer wählen - + %1:&nbsp;no input %1:&nbsp;keine Eingabe - + Input Eingabe @@ -21244,23 +22168,23 @@ in Zeile %2, Spalte %3 QgsGrassModuleOption - - + + Warning Warnung - + Cannot parse version_min %1 Konnte version_min %1 nicht interpretieren - + Cannot parse version_max %1 Konnte version_max %1 nicht interpretieren - + %1:&nbsp;missing value %1&nbsp;Fehlender Wert @@ -21268,7 +22192,7 @@ in Zeile %2, Spalte %3 QgsGrassModuleSelection - + Selected categories Gewählte Kategorien @@ -21276,37 +22200,37 @@ in Zeile %2, Spalte %3 QgsGrassModuleStandardOptions - + Item with key %1 not found Element mit Schlüssel %1 fehlt - + << Hide advanced options << Fortgeschrittene Optionen ausblenden - + Show advanced options >> Fortgeschrittene Optionen einblenden >> - - - - - - - - + + + + + + + + Warning Warnung - - + + Cannot get current region Kann die aktuelle 'region' nicht ermitteln @@ -21316,32 +22240,32 @@ in Zeile %2, Spalte %3 Modul %1 nicht gefunden - + Cannot find key %1 Kann Schlüssel %1 nicht finden - + Item with id %1 not found Element mit Id %1 nicht gefunden - + Cannot check region of map %1 Konnte Region der Karte %1 nicht überprüfen - + Cannot set region of map %1 Kann Region der Karte %1 nicht setzen - + Cannot read module description (%1): Kann Modulbeschreibung (%1) nicht lesen: - + %1 at line %2 column %3 @@ -22033,6 +22957,19 @@ p, li { white-space: pre-wrap; } GRASS-Vektorkarte %1 hat keine Topologie. Topologie erzeugen? + + QgsGrassRasterProvider + + + cellhd file %1 does not exist + cellhd-Datei %1 existiert nicht + + + + Groups not yet supported + Gruppen noch nicht unterstützt + + QgsGrassRegion @@ -22664,107 +23601,112 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsIdentifyResults - - + + (Derived) (abgeleitet) - + Identify Results Abfrageergebnisse - + Feature Objekt - + Value Wert - + (Actions) (Aktionen) - - - + + + Edit feature form Objektformular bearbeiten - - - + + + View feature form Objektformular anzeigen - + + Print + Drucken + + + Clear results Ergebnisse löschen - + Clear highlights Hervorhebungen löschen - + Highlight all Alle hervorheben - + Highlight layer Layer hervorheben - + Layer properties... Layereigenschaften... - + Attribute changes Attributänderungen - + Could not open url Konnte URL nicht öffnen - + Could not open URL '%1' Konnte die URL '%1' nicht öffnen - + Zoom to feature Zum Objekt zoomen - + Copy attribute value Attributwert kopieren - + Copy feature attributes Objektattribute kopieren - + Expand all Alle ausklappen - + Collapse all Alle einklappen @@ -22776,6 +23718,34 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.Identify Results Identifikationsergebnis + + + Expand tree. + Baum ausklappen. + + + + + + + ... + ... + + + + Collapse tree. + Baum einklappen. + + + + New results will be expanded by default. + Neue Ergebnisse erscheinen automatisch ausgeklappt. + + + + Print selected HTML response. + Gewählte HTML-Antwort drucken + QgsImageWarper @@ -22789,13 +23759,13 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.QgsInterpolationDialog - + Triangular interpolation (TIN) Unregelmäßiges Dreiecksnetz (TIN) - + Inverse Distance Weighting (IDW) Inverse Distanzgewichtung (IDW) @@ -22821,23 +23791,23 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. - + Break lines Bruchkanten - + Structure lines Strukturlinien - + Points Punkte - + Save interpolated raster as... Interpoliertes Raster speichern unter... @@ -22960,6 +23930,11 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.Output file Ausgabedatei + + + Add result to project + Ergebnis zum Projekt hinzufügen + QgsInterpolationPlugin @@ -23333,18 +24308,18 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsLabelPropertyDialog - - + + Label font Schriftart - + Font color Schriftfarbe - + Buffer color Pufferfarbe @@ -23369,72 +24344,82 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. - + Size Größe - + Display Anzeigen - + Show label Beschriftung anzeigen - + Max Max - + Min Min - + Scale-based Maßstabsbezogen - + + Ignores priority and permits collisions/overlaps + Prioritäten ignorieren und Kollisionen/Überschneidungen erlauben + + + + Always show (exceptions above) + Immer anzeigen (Ausnahmen oben) + + + Buffer Puffer - + Position Position - + Label distance Beschriftungsabstand - + X Coordinate X-Koordinate - + Y Coordinate Y-Koordinate - + Horizontal alignment Horizontale Ausrichtung - + Vertical alignment Vertikale Ausrichtung - + Rotation Drehung @@ -23442,52 +24427,52 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsLabelingGui - + (not found!) (nicht gefunden!) - + Sample @ %1 pts (using map units) Beispiel @ %1 Punkten (in Karteneinheiten) - + Sample @ %1 pts (using map units, BUFFER IN MILLIMETERS) Beispiel @ %1 Punkten (in Karteneinheiten, Puffer in mm) - + Sample Beispiel - + Sample (BUFFER NOT SHOWN, in map units) Beispiel (in Karteneinheiten, Puffer nicht angezeigt) - + Expression based label Ausdrucksbeschriftung - + Mixed Case Gemischte Groß-/Kleinschreibung - + All Uppercase Nur Großbuchstaben - + All Lowercase Nur Kleinbuchstaben - + Title Case Titelform @@ -23520,109 +24505,111 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.Beispielhintergrundfarbe - + Multiple lines Mehrzeilig - + Wrap on character Bei Zeichen umbrechen - + Line height spacing for multi-line text Zeilenhöhe bei mehrzeiligem Text - + Alignment Ausrichtung - + Paragraph style alignment of multi-line text Absatzstilausrichtung mehrzeiligen Texts - + Available typeface styles Verfügbare Schriftartstile - + Underlined Text Unterstrichener Text - + Strikeout text Durchgestrichener Text - - + + Space in pixels or map units, relative to size unit choice Abstand in Pixel oder Karteneinheiten relativ zur Größeneinheitenwahl - + Type case Schriftart Groß-/Kleinschreibung - + Capitalization style of text Großschreibungstil des Texts - + + Minimum Minimum - + + Maximum Maximum - + Formatted numbers Zahlenformatierung - + Decimal places Dezimalstellen - + Show plus sign Plus-Vorzeichen anzeigen - - + + mm mm - - - + + + map units Karteneinheiten - - - + + + Transparency Transparenz - - + + % % @@ -23637,147 +24624,143 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.Beispieltext zurücksetzen - + line Zeile - - + + Left Links - + Center Zentriert - - + + Right Rechts - + Multi-line align Mehrzeilig ausrichten - - + + Line height Linienhöhe - - + + Letter spacing Zeichensperrung - - + + Word spacing Wortsperrung - + Style Stil - + points Punkte - + U U - + S S - + Pen Join style Stiftübergangsstil - + Color area inside of pen stroke Farbbereich im Stiftstrich - + Advanced Erweitert - + Options Optionen - + Label every part of multi-part features Alle Teile mehrteiliger Objekte beschriften - + Merge connected lines to avoid duplicate labels Anschließende Linien verbinden, um doppelte Beschriftungen zu vermeiden - - Add direction symbol - Richtungssymbol hinzufügen - - - + Features don't act as obstacles for labels Objekte sind kein Hindernis für Beschriftungen - + + Placement Platzierung - - - + + + Label distance Beschriftungsabstand - - - + + + Rotation Drehung - - + + degrees Grad - + Capitalization Großschreibung - + Add label columns to attribute table Beschriftungespalten zur Attributetabelle hinzufügen - + About data defined values Über datendefinierte Werte @@ -23787,17 +24770,17 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.Layer beschriften mit - + Text style Textstil - + Font Schriftart - + TextLabel Textbeschriftung @@ -23805,33 +24788,35 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. - - - + + + + + ... ... - - - + + + Color Farbe - + Buffer Puffer - - - + + + Size Größe - + mm mm @@ -23847,309 +24832,415 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten.Lorom Ipsum - - + + In map units In Karteneinheiten - + Priority Priorität - + Low Niedrig - + High Hoch - + Scale-based visibility Maßstabsabhängige Darstellung - + Suppress labeling of features smaller than Objekte nicht beschriften, wenn kürzer als - - + + In mm In mm - + + Pixel size-based visibility + Pixelgrößenabhängige Sichtbarkeit + + + + Labels will not show if larger than this on screen + Größere Beschriftungen werden nicht angezeigt + + + + + px + px + + + + Labels will not show if smaller than this on screen + Kleinere Beschriftungen werden nicht angezeigt + + + + + + + + < + < + + + + Label in Map Units + Beschriftung in Karteneinheiten + + + + + Label + Beschriftung + + + + Line direction symbols + Linienrichtungssymbol + + + + Symbol(s) + Symbol(e) + + + + > + > + + + + left/right + links/rechts + + + + above + über + + + + below + unter + + + + Reverse direction + Rückwärts + + + Line orientation dependent position Linienrichtungsabhängige Position - + Data defined settings Datendefinierte Einstellungen - + Buffer transparency Puffertransparenz - + Uncheck to write labeling engine derived rotation on pin and NULL on unpin Abhaken, um den berechneten Winkel der Beschriftungsfunktion beim Anpinnen und NULL beim Lösen zu speichern - + Preserve existing rotation values during label pin/unpin operations Vorhandene Drehwinkel über Anpinnen/Lösen erhalten - + Display properties Anzeigeeigenschaften - + Minimum scale Minimalmaßstab - + Show label Beschriftung anzeigen - + Maximum scale Minimalmaßstab - + Font properties Schriftarteigenschaften - + Bold Fett - + Italic Kursiv - + Underline Unterstrichen - + Font family Schriftfamilie - + Position Position - + Automated placement settings Einstellung der automatischen Plazierung - - Show all labels for this layer (i.e. including colliding labels) - Alle Beschriftungen anzeigen (d.h. inkl. kollidierender) - - - + Around point Um Punkt - + Offset from point Abstand vom Punkt - + Parallel Parallel - + Curved Gebogen - + Horizontal Horizontal - + Offset from centroid Abstand vom Zentrum - + Around centroid Um Zentrum - + Horizontal (slow) Horizontal (langsam) - + Free (slow) Frei (langsam) - + Using perimeter Nach Umfang - + Centroid of Zentroid von - + visible polygon sichtbarem Polygon - + whole polygon ganzem Polygon - + Above line Über Linie - + On line Auf Linie - + Below line Unter Linie - + + outside + außen + + + + inside + innen + + + + Maximum angle between curved characters + Größter Winkel zwischen Zeichen auf Kurven + + + X X - + Y Y - + Above Right Oben rechts - + Above Left Oben links - + Over Über - + Above Oben - + Below Left Unten links - + Below Unten - + Below Right Unten rechts - + + Show all labels for this layer (including colliding labels) + Alle Beschriftungen auf diesem Layer anzeigen (einschließlich kollidierender) + + + Show upside-down labels Kopfstehende Beschriftungen anzeigen - + never nie - + when rotation defined bei definiertem Winkel - + always immer - + + Limit number of features to be labeled to + Obergrenze der zu beschriftenden Objekte + + + + Number of features sent to labeling engine, though not all may be labeled + Anzahl der Objekte, die die Beschriftung durchlaufen, aber evtl. nicht beschriftet werden + + + X Coordinate X-Koordinate - + Y Coordinate Y-Koordinate - + Horizontal alignment Horizontale Ausrichtung - + Vertical alignment Vertikale Ausrichtung - + + Always show + Immer anzeigen + + + Strikeout Durchgestrichen - + Buffer properties Puffereigenschaften - + Buffer size Puffergröße - + Buffer color Pufferfarbe @@ -24165,79 +25256,79 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsLegend - - + + group Gruppe - + &Make to Toplevel Item In oberste Ebene &bringen - + Zoom to Group Zur Gruppe zoomen - + &Remove &Entfernen - + &Set Group CRS KBS für Gruppe &setzen - + &Group Selected &Gewählte gruppieren - + Copy Style Stil kopieren - + Paste Style Stil einfügen - + &Add New Group &Neue Gruppe hinzufügen - + &Expand All Alles ausklapp&en - + &Collapse All &Alles zusammenfalten - + &Update Drawing Order &Zeichenreihenfolge aktualisieren - + Legend context Legendenkontext - + Re&name Umbe&nennen - - + + sub-group Untergruppe @@ -24245,80 +25336,83 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsLegendLayer - + &Remove &Entfernen - + &Query... &Abfrage... - + &Zoom to Layer Extent Auf die Layerausdehnung &zoomen - + &Zoom to Best Scale (100%) &Auf besten Maßstab zoomen (100%) - + &Stretch Using Current Extent Auf aktuelle Ausdehnung &strecken - + &Show in Overview &In der Übersicht anzeigen - + + &Duplicate + &Kopieren + + + &Set Layer CRS KBS für Layer &setzen - + Set &Project CRS from Layer Layer-KBS dem &Projekt zuweisen - + &Open Attribute Table &Attributtabelle öffnen - - + + Save As... Speichern als... - + Save Selection As... Auswahl speichern als... - + Show Feature Count Objektanzahl anzeigen - + &Properties &Eigenschaften - - + Updating feature count for layer %1 Objektanzahl des Layers %1 aktualsieren - - + Abort Abbrechen @@ -24485,14 +25579,14 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsMapCanvas - + Could not draw %1 because: %2 Konnte %1 nicht zeichnen, weil: %2 - + Could not draw %1 because: %2 COMMENTED OUT @@ -24539,99 +25633,99 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsMapLayer - - - + + + %1 at line %2 column %3 %1 in Zeile %2, Spalte %3 - + Error: qgis element could not be found in %1 Fehler: qgis element konnte nicht in %1 gefunden werden - + User database could not be opened. Benutzerdatenbank konnte nicht geöffnet werden. - + The style table could not be created. Die Stiltabelle konnte nicht angelegt werden. - + The style %1 was saved to database Der Stil %1 wurde in der Datenbank gespeichert - + The style %1 was updated in the database. Der Stil %1 wurde in der Datenbank aktualisiert. - + The style %1 could not be updated in the database. Der Stil %1 konnte nicht in der Datenbank aktualisiert werden. - + The style %1 could not be inserted into database. Der Stil %1 konnte nicht in der Datenbank gespeichert werden. - + ERROR: Failed to created SLD style file as %1. Check file permissions and retry. FEHLER: Konnte SLD-Stildatei %1 nicht erstellen. Prüfen Sie bitte die Berechtigungen und wiederholen Sie den Versuch. - + Unable to open file %1 Konnte Datei %1 nicht öffnen - + style not found in database Stil nicht in der Datenbank gefunden - - + + Specify CRS for layer %1 KBS für Layer %1 angeben - - + + Loading style file %1 failed because: %2 Stildatei %1 konnte nicht geladen werden, weil: %2 - - - + + + Could not save symbology because: %1 Konnte Darstellung nicht speichern, weil: %1 - - + + The directory containing your dataset needs to be writable! Der Ordner mit den Daten muss beschreibbar sein! - - + + Created default style file as %1 Vorgabestildatei als %1 gespeichert - + ERROR: Failed to created default style file as %1. Check file permissions and retry. FEHLER: Konnte die Datei %1 für den voreingestellten Stil nicht erzeugen. Bitte überprüfen Sie die Zugriffsrechte vor einem erneuten Versuch. @@ -25011,90 +26105,85 @@ Die könnte auf ein Netzwerkproblem oder ein Problem des WMS-Server hindeuten. QgsMapToolIdentify - - + + (clicked coordinate) (Angeklickte Koordinate) - + No active layer Kein aktiver Layer - + To identify features, you must choose an active layer by clicking on its name in the legend Um Objekte zu identifizieren müssen Sie einen Layer in der Legende auswählen - + Identifying on %1... %1 wird abgefragt... - + Identifying done. Abfrage beendet. - + No features at this position found. Kein Objekt an dieser Position gefunden. - + Length Länge - + firstX attributes get sorted; translation for lastX should be lexically larger than this one erstesX - + firstY erstesY - + lastX attributes get sorted; translation for firstX should be lexically smaller than this one letztesX - + lastY letztesY - + Area Fläche - + + Perimeter + Umfang + + + feature id Objektkennung - + new feature Neues Objekt - - WMS layer - WMS-Layer - - - - Feature info - Objektinformation - - - + Raster Raster @@ -25634,57 +26723,57 @@ http://meine.kiste.com/cgi-bin/mapserv.exe QgsMeasureDialog - + &New &Neu - + The calculations are based on: Die Berechnungen basieren auf: - + Project CRS transformation is turned off. KBS-Transformation im Projekt deaktiviert. - + Canvas units setting is taken from project properties setting (%1). Karteneinheiten werden aus Projekteigenschaften übernommen (%1) - + Ellipsoidal calculation is not possible, as project CRS is undefined. Ellipsoide Berechnung wegen undefiniertem Projekt-KBS nicht möglich. - + Project CRS transformation is turned on and ellipsoidal calculation is selected. Projekt-KBS-Transformation aktiv und ellipsoide Berechnung gewählt. - + The coordinates are transformed to the chosen ellipsoid (%1), and the result is in meters Die Koordinaten werden auf den gewählten Ellipsoiden (%1) transformiert und die Ergebniseinheit ist Meter - + Project CRS transformation is turned on but ellipsoidal calculation is not selected. Projekt-KBS-Transformation aktiv, aber ellipsoide Berechnung ist nicht gewählt. - + The canvas units setting is taken from the project CRS (%1). Die Karteneinheiten werden dem Projekt-KBS entnommen (%1). - + Finally, the value is converted from %2 to %3. Schließlich wird der Wert von %1 zu %3 umgewandelt. - + Segments [%1] Segmente [%1] @@ -25810,9 +26899,24 @@ http://meine.kiste.com/cgi-bin/mapserv.exe QgsMessageBar + Remaining messages + Verbleibende Nachrichten + + + + Close all + Alle schließen + + + Close Schließen + + + more + mehr + QgsMessageLogViewer @@ -28046,317 +29150,301 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein QgsOptions - - - + + + Semi transparent circle Teiltransparenter Kreis - - - + + + Cross Kreuz - + Detected active locale on your system: %1 Festgestellte Spracheinstellung des Systems: %1 - + Current layer Aktueller Layer - + Top down, stop at first Von oben nach unten, beim ersten halten - + Top down Von oben nach unten - + Show all features Alle Objekte anzeigen - + Show selected features Alle gewählten Objekte anzeigen - + Show features in current canvas Alle Objekte des aktuellen Kartenausschnitts anzeigen - + Always Immer - + If needed Wenn nötig - + Never Nie - + Load all Alle laden - + Check file contents Dateiinhalt prüfen - + Check extension Erweiterung prüfen - + No Nein - + Basic scan Grundsuche - + Full scan Vollsuche - + No Stretch Kein Strecken - + Stretch To MinMax Strecken auf MinMax - + Stretch And Clip To MinMax Strecken und Zuschneiden auf MinMax - + Clip To MinMax Zuschneiden auf MinMax - + To vertex Zum Stützpunkt - + None / Planimetric Keine / Planar - - + + Cumulative pixel count cut Kommulativer Pixelanzahl-Schnitt - + Minimum / maximum Minimum / Maximum - + Mean +/- standard deviation Mittlere +/- Standardabweichung - + To segment Zum Segment - + To vertex and segment Zum Stützpunkt und Segment - - - + + + None Keine - + Off Aus - + QGIS QGIS - + GEOS GEOS - + Round Rund - + Mitre Eckig - + Bevel Abgerundet - - - + + + Save default project Als Vorgabeprojekt speichern - + You must set a default project Sie müssen ein Vorgabeprojekt setzen - + Current project saved as default Aktuelles Projekt als Vorgabe gespeichert - + Error saving current project as default Konnte aktuelles Projekt nicht als Vorgabe speichern - + Choose a directory to store project template files Wählen Sie ein Verzeichnis für die Speicherung von Projektvorlagedateien - + Selection color Auswahlfarbe - + Create Options - %1 Driver Erzeugungsoptionen - %1 Treiber - + Create Options - pyramids Erzeugungsoptionen - Pyramiden - - Parameters : - Parameter : - - - - - + + + Choose a directory Verzeichnis wählen - + Enter scale Maßstab angeben - + Scale denominator Maßstabsnenner - + Load scales Maßstäbe laden - - + + XML files (*.xml *.XML) XML-Dateien (*.xml *.XML) - + Save scales Maßstäbe speichern - - - Parameters: - Parameter: - - - - Can only use ellipsoidal calculations when CRS transformation is enabled - Ellipsoide Berechnungen nur bei eingeschalteter KBS-Transformation möglich - - - - + + map units Karteneinheiten - - + + pixels Pixel - + Central point (fastest) Zentrum (am schnellsten) - + Chain (fast) Kette (schnell) - + Popmusic tabu chain (slow) Popmusik-Tabu-Kette (langsam) - + Popmusic tabu (slow) Popmusik-Tabu (langsam) - + Popmusic chain (very slow) Popmusik-Kette (sehr langsam) @@ -28420,37 +29508,37 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Nichts - + Locale Sprache - + Locale to use instead Stattdessen folgende Spracheinstellungen benutzen - + Additional Info Ergänzende Informationen - + Detected active locale on your system: Festgestellte aktive Spracheinstellung: - + Rubberband Gummiband - + Line width in pixels Linienbreite in Pixel - + Snapping Objektfang @@ -28770,17 +29858,7 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Anzahl von Objekten nach deren Zeichnung die Anzeige aktualisiert werden soll - - Semi-minor - Nebenachse - - - - Semi-major - Hauptachse - - - + Default expiration period for WMS-C/WMTS tiles (hours) Verfallszeitraumvorgabe für WMS-C-/WMTS-Kacheln (Stunden) @@ -28810,32 +29888,32 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Suchpfad(e) für SVG-Symbole (Scalable Vector Graphic) - + Decimal places Dezimalstellen - + Keep base unit Basiseinheit beibehalten - + Overlays Überlagern - + Reuse last entered attribute values Letzte Attributwerteingaben wiederverwenden - + Network Netzwerk - + Timeout for network requests (ms) Zeitüberschreitung bei Netzwerkanfragen (ms) @@ -28845,7 +29923,7 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Kompatibilität - + Digitizing Digitalisierung @@ -28940,22 +30018,22 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Standardabweichungsfaktor - + Preferred angle units Bevorzugtes Winkelmaß - + Degrees Grad - + Radians Bogenmaß - + Gon Gon @@ -28975,83 +30053,83 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Vordefinierte Maßstäbe - + Placement algorithm Platzierungsalgorithmus - + Other settings Weitere Einstellungen - + Validate geometries Geometrien prüfen - + Join style for curve offset Verbindungsstil für Linienversatz - + Quadrantsegments for curve offset Quadrantensegmente für Linienversatz - + Miter limit for curve offset Eckengrenze für Linienversatz - + Default Coordinate Reference System for new projects Koordinatensystemvorgabe für neue Projekte - - + + Select... Wählen... - + Always start new projects with this CRS Neue Projekte immer in diesem KBS beginnen - + Automatically enable 'on the fly' reprojection if CRS of a new added layer differ from CRS of layer(s) already present. CRS of present layer(s) will be used. 'On-The-Fly'-Reprojektion automatisch einschalten, wenn das KBS eines neu hinzugefügten Layers vom dem der bereits vorhandenen Layer abweicht. KBS der vorhandenen Layer wird benutzt. - + Automatically enable 'on the fly' reprojection if layers have different CRS 'On-The-Fly'-Reprojektion automatisch aktivieren, wenn die Layer unterschiedliche KBS haben - + Coordinate Reference System for new layers Koordinatenbezugssystem für neue Layer - + When a new layer is created, or when a layer is loaded that has no Coordinate Reference System (CRS) Wenn ein neuer Layer erzeugt wird oder ein Layer geladen wird der kein Koordinatenbezugssystem hat - + Exclude URLs (starting with) URL ausschließen, die beginnen mit - + Cache settings Cache-Einstellungen - + Directory Verzeichnis @@ -29061,23 +30139,23 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein - + ... ... - + Size Größe - + Clear Löschen - + WMS search address WMS-Suchadresse @@ -29087,27 +30165,22 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Objektformular öffnen, wenn ein einzelnes Objekt abgefragt wird - + Rubberband color Gummibandfarbe - - Ellipsoid for distance calculations - Ellipsoid für Abstandsberechnungen - - - + Preferred measurements units Bevorzugte Maßeinheiten - + Meters Meter - + Feet Fuß @@ -29132,154 +30205,154 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Modus - + Line width Linienbreite - + Default snap mode Voreingestellter Fangmodus - + Vertex markers Stützpunktmarken - + Line color Linienfarbe - + Show markers only for selected features Markierungen nur für gewählte Objekte anzeigen - + Marker style Markierungsstil - + Marker size Markierungsgröße - + Override system locale System-Locale überschreiben - + <b>Note:</b> Enabling / changing overide on local requires an application restart <b>Note:</b> Einschalten/Änderung der Locale-Überschreibung erfordert einen Anwendungsneustart - + Use proxy for web access Proxy für Webzugriff benutzen - + Host Host - + Port Port - + User Benutzer - - + + Leave this blank if no proxy username / password are required Lassen Sie Benutzer/Passwort leer, wenn sie nicht benötigt werden - + Password Passwort - + CRS KBS - + Default snapping tolerance Voreingestellte Fangtoleranz - + Search radius for vertex edits Suchradius für Stützpunktbearbeitung - + Suppress attributes pop-up windows after each created feature Eingabe der Attributwerte bei der Erstellung neuer Objekte unterdrücken - + Enable 'on the &fly' reprojection by default 'On-The-&Fly'-Reprojektion voreinstellen - + Prompt for &CRS &KBS abfragen - + Use &project CRS KBS des &Projekts benutzen - + Use default CRS displa&yed below &Folgendes KBS benutzen - + Proxy type Proxytyp - + Add Hinzufügen - + Remove Entfernen - + Position Position - - + + map units Karteneinheiten - - + + pixels Pixel @@ -29865,6 +30938,7 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein + Postgres/PostGIS Provider PostgreSQL/PostGIS-Datenlieferant @@ -29874,7 +30948,12 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Konnte den PostgreSQL/PostGIS-Datenlieferanten nicht öffnen - + + No accessible tables or views found. Check the message log for possible errors. + Keine zugreifbaren Tabellen oder Sichten gefunden. Bitte Protokoll auf mögliche Fehler prüfen. + + + Connect Verbinden @@ -29900,52 +30979,57 @@ Immer Netzwerk: immer aus dem Netzwerk laden und nicht prüfen, ob im Cache ein Tabelle - - Type - Typ - - - - Geometry column - Geometriespalte - - - + SRID SRID - - Primary key column - Primärschlüsselspalte - - - + Select at id Abfrage nach ID - + Sql SQL - + Detecting... Prüfe... - + Enter... Eingeben... - + Select... Wählen... - + + Column + Spalte + + + + Data Type + Datentyp + + + + Spatial Type + Räuml. Typ + + + + Primary Key + Primärschlüssel + + + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). Funktion 'Schneller Objektzugriff nach ID' abschalten, damit die Attributtabelle im Speicher gehalten wird (z.B. bei teuren Ansichten). @@ -30803,7 +31887,7 @@ p, li { white-space: pre-wrap; } QgsPluginManager - + No Plugins Keine Erweiterungen @@ -30819,7 +31903,7 @@ p, li { white-space: pre-wrap; } - + Plugins Erweiterungen @@ -30830,22 +31914,22 @@ p, li { white-space: pre-wrap; } - + Installed in %1 menu/toolbar In Menü/Werkzeugkasten %1 installiert - + No QGIS plugins found in %1 Keine QGIS-Erweiterung in %1 gefunden - + Error Fehler - + Failed to open plugin installer! Erweiterungsinstallation konnte nicht geöffnet werden! @@ -30853,32 +31937,32 @@ p, li { white-space: pre-wrap; } QgsPluginManagerBase - + QGIS Plugin Manager QGIS-Erweiterungsmanager - + To enable / disable a plugin, click its checkbox or description Kontrollkästchen oder Beschreibung anklicken, um eine Erweiterungen zu (de-)aktivieren - + &Filter &Filter - + Plugin Directory: Erweiterungsverzeichnis: - + Directory Verzeichnis - + Plugin Installer Erweiterungsinstallation @@ -31008,24 +32092,24 @@ p, li { white-space: pre-wrap; } - - - - - - - - - - - - - - - + + + + + + + + + - - + + + + + + + + PostGIS PostGIS @@ -31061,12 +32145,12 @@ Fehler:%3 - + Database connection was successful, but the accessible tables could not be determined. Die Datenbankverbindung war erfolgreich, jedoch konnten die zugänglichen Tabellen nicht bestimmt werden. - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 @@ -31075,93 +32159,113 @@ Fehler:%3 - + Database connection was successful, but no accessible tables were found. Please verify that you have SELECT privilege on a table carrying PostGIS geometry. Die Datenbankverbindung war erfolgreich, jedoch wurden keine zugänglichen Tabellen gefunden. Bitte stellen Sie sicher, dass Sie das SELECT-Recht für eine Tabelle mit PostGIS-Geometrie haben. - + Unable to get list of spatially enabled tables from the database Konnte Liste der räumlichen Tabellen der Datenbank nicht bestimmen - + Retrieval of postgis version failed Bestimmen der PostGIS-Version schlug fehl - + Could not parse postgis version string '%1' Unverständliche PostGIS-Version '%1' - + Connection error: %1 returned %2 [%3] Verbindungsfehler: %1 ergab %2 [%3] - + Erroneous query: %1 returned %2 [%3] Fehlerhafte Abfrage: %1 ergab %2 [%3] - + Point Punkt - + Line Linie - + Polygon Polygon - + No Geometry Ohne Geometrie - - + + None + Keine + + + + Geometry + Geometrie + + + + Geography + Geographie + + + + TopoGeometry + Topo-Geometrie + + + + Query could not be canceled [%1] Abfrage konnte nicht abgebrochen werden [%1] - + PQgetCancel failed PQgetCancel gescheitert - + Multipoint Multipunkt - + Multiline Multilinie - + Multipolygon Multipolygon - + Unknown Geometry Unbekannte Geometrie - + Query: %1 returned %2 [%3] Abfrage: %1 ergab %2 [%3] - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 @@ -31170,21 +32274,21 @@ Die Fehlermeldung der Datenbank war: %1 - + Query failed: %1 Error: no result buffer Abfrage gescheitert: %1 Fehler: kein Ergebnispuffer - + Not logged query failed: %1 Error: no result buffer Nicht protokollierte Abfrage gescheitert: %1 Fehler: Kein Ergebnispuffer - + %1 cursor states lost. SQL: %2 Result: %3 (%4) @@ -31193,27 +32297,27 @@ SQL: %2 Ergebnis: %3 (%4) - + resetting bad connection. Schlechte Verbindung wird zurückgesetzt. - + retry after reset succeeded. Erneuter Versuch nach Rücksetzung erfolgreich. - + retry after reset failed again. Erneuter Versuch nach Rücksetzung schlug wieder fehl. - + connection still bad after reset. Verbindung nach Rücksetzung immer noch schlecht. - + bad connection, not retrying. Schlechte Verbindung, keine neuen Versuche. @@ -31221,7 +32325,7 @@ Ergebnis: %3 (%4) QgsPostgresProvider - + Unable to access the %1 relation. The error message from the database was: %2. @@ -31232,7 +32336,7 @@ Der Error den die Datenbank lieferte war: SQL: %3 - + Unable to determine table access privileges for the %1 relation. The error message from the database was: %2. @@ -31254,21 +32358,21 @@ SQL: %3 - - - - - - + + + + + - - - - + + + + - - - + + + + @@ -31278,7 +32382,8 @@ SQL: %3 - + + PostGIS PostGIS @@ -31308,8 +32413,8 @@ SQL: %3 Text, feste Länge (char) - - + + Fetching from cursor %1 failed Database error: %2 Laden aus Cursor %1 gescheitert @@ -31326,66 +32431,70 @@ Datenbankfehler: %2 Unerwarteter Relationstyp '%1'. - + result of extents query invalid: %1 Ergebnis der Ausmaßabfrage ungültig: %1 - + Editing and adding disabled for 2D+ layer (%1; %2) Ändern und Hinzufügen auf 2D+-Layern abgeschaltet (%1; %2) - + Couldn't get the feature geometry in binary form Objektgeometrie konnte nicht in binärer Form abgerufen werden - + Read attempt on an invalid postgresql data source Leseversuch auf eine ungültige PostgreSQL-Datenquelle - + nextFeature() without select() nextFeature() ohne select() - + feature %1 not found Objekt %1 nicht gefunden - + found %1 features instead of just one. %1 Objekte statt nur einem gefunden. - + FAILURE: Field %1 not found. FEHLER: Feld %1 nicht gefunden. - - + + unexpected formatted field type '%1' for field %2 Unerwarteter formatierter Feldtyp '%1' für Feld %2 - - + Field %1 ignored, because of unsupported type %2 Feld %1 ignoriert, weil von nicht unterstütztem Typ %2 + Field %1 ignored, because of unsupported type type %2 + Feld %1 mit nicht unterstützten Datentyp-Art %2 ignoriert + + + Duplicate field %1 found Doppelter Feldname %1 gefunden - + PostgreSQL is still in recovery after a database crash (or you are connected to a (read-only) slave). Write accesses will be denied. @@ -31435,42 +32544,47 @@ SQL: %2 Kein Schlüsselfeld für Abfrage gegeben. - + + Could not find topology of layer %1.%2.%3 + Konnte Topologie des Layers %1.%2.%3 nicht finden + + + PostGIS error while adding features: %1 PostGIS-Fehler beim Attributhinzufügen: %1 - + PostGIS error while deleting features: %1 PostGIS-Fehler beim Objektlöschen: %1 - + PostGIS error while adding attributes: %1 PostGIS-Fehler beim Attributhinzufügen: %1 - + PostGIS error while deleting attributes: %1 PostGIS-Fehler beim Attributlöschen: %1 - + PostGIS error while changing attributes: %1 PostGIS-Fehler beim Attributändern: %1 - + PostGIS error while changing geometry values: %1 PostGIS-Fehler beim Geometrieändern: %1 - + Geometry type and srid for empty column %1 of %2 undefined. Geometrietyp und SRID für leere Spalte %1 in %2 undefiniert. - + Feature type or srid for %1 of %2 could not be determined or was not requested. Objekttyp oder SRID für %1 aus %2 konnte nicht festgestellt werden und wurde nicht festgelegt. @@ -31601,124 +32715,140 @@ Choose ignore to continue loading without the missing layers. Choose cancel to r QgsProjectProperties - + Layer Layer - + Type Typ - + Identifiable Abfragbar - + Vector Vektor - + WMS WMS - + Raster Raster - - + + Coordinate System Restriction Koordinatensystemeinschränkung - + No coordinate systems selected. Disabling restriction. Kein Koordinatensystem gewählt. Einschränkung aufgehoben. - + Selection color Auswahlfarbe - + CRS %1 was already selected KBS %1 war bereits gewählt - + Coordinate System Restrictions Koordinatensystemeinschränkung - + The current selection of coordinate systems will be lost. Proceed? Die aktuelle Koordinatensystemauswahl wird verloren gehen. Fortfahren? - + Select print composer Druckzusammenstellung wählen - + Composer Title Titel der Druckzusammenstellung - + Select restricted layers and groups Eingeschränkte Layer und Gruppen wählen - + Enter scale Maßstab eingeben - + Scale denominator Maßstabsnenner - + Load scales Maßstäbe laden - - + + XML files (*.xml *.XML) XML-Dateien (*.xml *.XML) - + Save scales Maßstäbe speichern - + Transparency %1% Transparenz %1% - + Select a valid symbol Ein gültiges Symbol wählen - + Invalid symbol : Ungültiges Symbil : + + + Parameters : + Parameter : + + + + + Parameters: + Parameter: + + + + Can only use ellipsoidal calculations when CRS transformation is enabled + Ellipsoide Berechnungen nur bei eingeschalteter KBS-Transformation möglich + QgsProjectPropertiesBase @@ -31733,310 +32863,345 @@ Fortfahren? Allgemeine Einstellungen - + + Measure tool + Messwerkzeug + + + + Ellipsoid for distance calculations + Ellipsoid für Abstandsberechnungen + + + + Semi-minor + Nebenachse + + + + Semi-major + Hauptachse + + + Canvas units Karteneinheiten - + Meters Meter - + Feet Fuß - + Degree Grad - + Degree display Gradanzeige - + Decimal degrees Dezimal Grad - + Degrees, Minutes Grad, Minuten - + Degrees, Minutes, Seconds Grad, Minuten, Sekunden - + Project scales Projektmaßstäbe - - - - - - - - + + + + + + + + ... ... - + Identifiable layers Abfragbare Layer - - + + Layer Layer - + Type Typ - + Identifiable Abfragbar - + Default Styles Vorgabestile - + Default Symbols Vorlagesymbole - + Marker Markierung - + Line Linie - + Fill Füllung - + Color Ramp Farbverlauf - + Style Manager Stilmanager - + Options Optionen - + Assign random colors to symbols Den Symbolen zufällige Farben zuordnen - + Opacity Deckkraft - + OWS Server OWS Server - + Service Capabilitities Diensteigenschaften - + Title Titel - + Person Person - + Phone Telefon - + Abstract Zusammenfassung - + E-Mail E-Mail - + Organization Organisation - + Online resource Online-Quelle - + + Fees + Gebühren + + + + Access constraints + Zugriffsbeschränkungen + + + + Keyword list + Schlüsselwortliste + + + WMS Capabilitities WMS-Capabilities - + Advertised Extent Angezeigte Ausmasse - + Min. X Min. X - + Min. Y Min. Y - + Max. X Max. X - + Max. Y Max. Y - + Use Current Canvas Extent Aktuelle Anzeigegrenzen übernehmen - + Exclude composers Druckzusammenstellungen ausschließen - + Exclude layers Layer ausschließen - + Update Aktualisieren - + Insert Einfügen - + Delete Löschen - + Unselect all Alle abwählen - + Select all Alle wählen - + Macros Makros - + Python macros Python-Makros - + Coordinate Systems Restrictions Koordinatensystemeinschränkungen - + Add Hinzufügen - + Remove Entfernen - + Used Benutzte - + Add WKT geometry to feature info response WKT-Geometrie in Objektinformationen einschließen - + Used when CRS transformation is turned off Wird benutzt, wenn KBS-Transformation abgeschaltet ist - + Advertised WMS url Angezeigte WMS-Url - + Maximum width Maximale Breite - + Maximum height Maximale Höhe - + WFS Capabilitities WFS-Capabilities - + Published Veröffentlich @@ -32066,44 +33231,44 @@ Fortfahren? Pfade speichern - + Automatic Automatisch - + Automatically sets the number of decimal places in the mouse position display Setzt automatisch die Anzahl Dezimalstellen in der Mauspositionsanzeige - + The number of decimal places that are used when displaying the mouse position is automatically set to be enough so that moving the mouse by one pixel gives a change in the position display Die Anzahl Dezimalstellen, die beim Anzeigen der Mausposition benutzt werden, wird automatisch so gesetzt, dass eine Mausbewegung um einen Pixel zu einer Änderung in der Positionsanzeige führt - + Manual Manuell - - + + Sets the number of decimal places to use for the mouse position display Setzt die Anzahl Dezimalstellen für die Mauspositionsanzeige - - + + The number of decimal places for the manual option Setzt die Anzahl Dezimalstellen für die manuelle Option - + decimal places Dezimalstellen - + Precision Genauigkeit @@ -32128,12 +33293,12 @@ Fortfahren? Hintergrundfarbe - + Coordinate Reference System (CRS) Koordinatenbezugssystem (KBS) - + Enable 'on the fly' CRS transformation 'On-The-Fly'-KBS-Transformation aktivieren @@ -32746,37 +33911,37 @@ p, li { white-space: pre-wrap; } Objektinformation - + Band Kanal - + Average Mittlere - + Nearest Neighbour Nächster Nachbar - + Gauss Gauß - + Cubic Kubisch - + Mode Modus - + None Keine @@ -33078,238 +34243,230 @@ Klicken Sie auf den Hilfeknopf, um die gültigen Optionen für dies Format zu er QgsRasterLayer - - - - - + + + + + Not Set Nicht gesetzt - + Retrieving stats for %1 Lade Statistik für %1 - + Could not reproject view extent: %1 Konnte Anzeigegrenzen nicht transformieren: %1 - + Could not reproject layer extent: %1 Konnte Layergrenzen nicht transformieren: %1 - + Cannot read data Kann Daten nicht lesen - + null (no data) Null (keine Daten) - + Driver: Treiber: - + Pyramid overviews: Pyramidenübersichten: - + Layer Extent (layer original source projection): Layerausdehnung (in urspünglicher Projektion des Layers): - - + + Band Kanal - + Band No Kanal Nr - + No Stats Keine Statistik - + No stats collected yet Noch keine Statistik gesammelt - + Min Val Minimalwert - + Max Val Maximalwert - + Range Bereich - + Mean Durchschnitt - + Sum of squares Summe der Quadrate - + Standard Deviation Standardabweichung - + Sum of all cells Summe aller Zellen - + Cell Count Zellenanzahl - - Failed to load provider %1 (Reason: %2) - Konnte Lieferanten %1 nicht laden (Grund: %2) + + Cannot instantiate the '%1' data provider + Konnte Datenlieferanten '%1' nicht erzeugen - - - - - - - - Raster - Raster - - - - Cannot resolve the classFactory function - Konnte die classFactory-Funktion nicht auflösen + + Provider is not valid (provider: %1, URI: %2 + Datenlieferant ist ungültig (Lieferant: %1, URI: %2) - - Cannot instantiate the data provider - Konnte Datenlieferanten nicht erzeugen + + + + + Raster + Raster - + <maplayer> not found. <maplayer> nicht gefunden. - + GDAL data type %1 is not supported GDAL-Datentyp %1 ist nicht unterstützt - + Data Type: Datentyp: - + GDT_Byte - Eight bit unsigned integer GDT_Byte - Eight bit unsigned integer - + GDT_UInt16 - Sixteen bit unsigned integer GDT_UInt16 - Sixteen bit unsigned integer - + GDT_Int16 - Sixteen bit signed integer GDT_Int16 - Sixteen bit signed integer - + GDT_UInt32 - Thirty two bit unsigned integer GDT_UInt32 - Thirty two bit unsigned integer - + GDT_Int32 - Thirty two bit signed integer GDT_Int32 - Thirty two bit signed integer - + GDT_Float32 - Thirty two bit floating point GDT_Float32 - Thirty two bit floating point - + GDT_Float64 - Sixty four bit floating point GDT_Float64 - Sixty four bit floating point - + GDT_CInt16 - Complex Int16 GDT_CInt16 - Complex Int16 - + GDT_CInt32 - Complex Int32 GDT_CInt32 - Complex Int32 - + GDT_CFloat32 - Complex Float32 GDT_CFloat32 - Complex Float32 - + GDT_CFloat64 - Complex Float64 GDT_CFloat64 - Complex Float64 - + Could not determine raster data type. Konnte Rasterdatentyp nicht erkennen. - + Layer Spatial Reference System: Referenzsystem des Layers: - + No Data Value Leerwert - + NoDataValue not set Leerwert nicht gesetzt - + Project Spatial Reference System: Projektkoordinatenbezugssystem: - + QgsRasterLayer created QgsRasterLayer erzeugt @@ -33317,37 +34474,37 @@ Klicken Sie auf den Hilfeknopf, um die gültigen Optionen für dies Format zu er QgsRasterLayerProperties - + Columns: Spalten: - + Rows: Zeilen: - - + + No-Data Value: LeerWert: + - - - + + n/a n/a - - + + Write access denied Schreibzugriff verweigert - + Write access denied. Adjust the file permissions and try again. @@ -33355,185 +34512,185 @@ Klicken Sie auf den Hilfeknopf, um die gültigen Optionen für dies Format zu er - - - - + + + + Building pyramids failed. Erstellung von Pyramiden fehlgeschlagen. - - + + Building pyramid overviews is not supported on this type of raster. Für diese Art von Raster können keine Pyramiden erstellt werden. - + Description Beschreibung - + Large resolution raster layers can slow navigation in QGIS. Hochaufgelöste Raster können das Navigieren in QGIS verlangsamen. - + By creating lower resolution copies of the data (pyramids) performance can be considerably improved as QGIS selects the most suitable resolution to use depending on the level of zoom. Durch das Erstellen geringer aufgelöster Kopien der Daten (Pyramiden), kann die Darstellung beschleunigt werden, da QGIS die optimale Auflösung entsprechend der gewählten Zoomeinstellung aussucht. - + You must have write access in the directory where the original data is stored to build pyramids. Sie brauchen Schreibrecht in dem Ordner mit den Originaldaten, um Pyramiden zu erstellen. - + Layer Properties - %1 Layereigenschaften - %1 - - + + Nearest neighbour Nächster Nachbar - - + + Bilinear Bilinear - - + + Cubic Kubisch - - + + Average Mittlere - + None Keine - - + + Red Rot - - + + Green Grün - - + + Blue Blau - - - + + + + - Percent Transparent Prozent Transparenz - - + + Gray Grau - - + + Indexed Value Indizierter Wert - + From Von - + To Nach - + not defined undefiniert - + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. Erstellung von interne Pyramiden-Übersichten weder für JPEG-komprimierte Rasterlayer noch durch Ihre aktuelle libtiff-Bibliothek unterstützt. - + Save file Datei speichern - + Load layer properties from style file Layereigenschaften aus Stildatei laden - - + + QGIS Layer Style File QGIS-Layerstildatei - + Save layer properties as style file Layereigenschaften als Stildatei speichern - + Filter Filter - + Bands Kanäle - + QGIS Generated Transparent Pixel Value Export File QGIS-erzeugte Export-Datei für transparente Pixelwerte - + Open file Datei öffnen - + Import Error Importfehler - + Read access denied Lesezugriff verweigert - + Read access denied. Adjust the file permissions and try again. @@ -33545,60 +34702,60 @@ Klicken Sie auf den Hilfeknopf, um die gültigen Optionen für dies Format zu er Nicht gesetzt - - + + Default Style Vorgabestil - + Please note that building internal pyramids may alter the original data file and once created they cannot be removed! Bitte beachten Sie, dass der Aufbau von internen Pyramiden die Originaldatei ändern kann und einmal angelegt nicht gelöscht werden kann! - + Please note that building internal pyramids could corrupt your image - always make a backup of your data first! Bitte beachten sie, dass der Aufbau von internen Pyramiden ihr Bild beschädigen kann - bitte sichern Sie Ihre Daten zuvor! - + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. Die Datei war nicht beschreibbar. Einige Formate unterstützen Übersichtspyramiden nicht. Gucken Sie im Zweifel in die GDAL-Dokumentation. - - + + Saved Style Gespeicherter Stil - + Columns: %1 Spalten: %1 - + Rows: %1 Zeilen: %1 - + No-Data Value: %1 Kein-Datum-Wert: %1 - + Write access denied. Adjust the file permissions and try again. Schreibzugriff verweigert. Passen Sie die Dateizugriffsrechte an und versuchen Sie es erneut. - - + + Textfile Textdatei - + The following lines contained errors %1 @@ -33615,343 +34772,376 @@ Klicken Sie auf den Hilfeknopf, um die gültigen Optionen für dies Format zu er Rasterlayereigenschaften - - - - - - + + + + + + ... ... - + Original data source no data value, if exists. Urspünglicher Leerwert der Quelle, falls vorhanden. - + <src no data value> <quellleerwert> - - + + Additional user defined no data value. Zusätzlicher benutzerdefinierter Leerwert. - + Additional no data value Zusätzlicher Leerwert - + + + Maximum scale, i.e. minimum scale denominator. This limit is inclusive, that means the layer will be displayed on this scale. + Größter Maßstab (d.h. kleinster Maßstabsnenner). Diese Grenze ist einschließlich, d.h. der Layer wird bis zu diesem Maßstab angezeigt. + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Maximum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inclusive)</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Größter Maßstab</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inklusive)</p></body></html> + + + + + Minimum scale, i.e. maximum scale denominator. This limit is exclusive, that means the layer will not be displayed on this scale. + Kleinster Maßstab, d.h. größter Maßstabsnenner. Die Grenze ist ausschließlich, d.h. der Layer wird bei diesem Maßstab nicht mehr angezeigt. + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Minimum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exclusive)</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Kleinster Maßstab</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exklusive)</p></body></html> + + + Title Titel - + Abstract Zusammenfassung - + Transparency Transparenz - + Global transparency Globale Transparenz - + None Keine - + 00% 00% - + <p align="right">Full</p> <p align="right">Voll</p> - + No data value Leerwert - + Custom transparency options Benutzerdefinierte Transparenzeinstellung - + Style mRendererTab Stil - + Resampling Abtastung - + Zoomed in Hinein gezoomt - + Zoomed out Heraus gezoomt - + Render type Darstellungsart - - Invert color map - Farbtabelle invertieren - - - + Oversampling Überabtastung - + Transparency band Transparenzkanal - + Transparent pixel list Transparente Pixelliste - + Add values manually Werte manuell hinzufügen - + Add Values from display Werte aus Anzeige ergänzen - + Remove selected row Gewählte Zeile löschen - + Default values Vorgabewerte - + Import from file Aus Datei importieren - + Export to file In Datei exportieren - + Use original source no data value. Den ursprünglichen Leerwert benutzen. - + No data value: Leerwert: - + General Allgemein - + Display name Anzeigename - + Layer source Layerquelle - + Scale dependent visibility Maßstabsabhängige Sichtbarkeit - + + + Current + Aktuell + + + Coordinate reference system Koordinatenbezugssystem - - + + Specify the coordinate reference system of the layer's geometry. Koordinatenbezugsssystem der Geometrie des Layers angeben. - + Specify... Angeben... - + Thumbnail Thumbnail - + Legend Legende - + Palette Palette - + Metadata Metadaten - + Pyramids Pyramiden - + Notes Hinweise - + Pyramid resolutions Pyramidenauflösungen - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> + + + Resampling method Abtastungsmethode - + Average Durchschnitt - + Nearest Neighbour Nächster Nachbar - + Build pyramids Pyramiden erzeugen - + Histogram Histogramm - + Columns Spalten - + Rows Zeilen - + No Data Leerwert - - Less than: - Weniger als: - - - - More than or equal to: - Mehr als oder gleich: - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> - - - + Overview format Übersichtsformat - + External Extern - + Internal (if possible) Intern (wenn möglich) - + External (Erdas Imagine) Extern (Erdas Imagine) - + Pipe Pipeline - + Restore Default Style Vorgabestil wiederherstellen - + Save As Default Als Vorgabe speichern - + Load Style ... Stil laden... - + Save Style ... Stil speichern... @@ -34515,77 +35705,77 @@ p, li { white-space: pre-wrap; } Ergebnis zum Projekt hinzufügen - + Illumination Beleuchtung - + Azimuth (horizontal angle) Azimuth (horizontaler Winkel) - + Vertical angle Vertikaler Winkel - + Relief colors Relief-Farben - + Create automatically Automatisch erzeugen - + Export distribution... Verteilung exportieren... - + Up Auf - + Down Ab - + + + - + - - - + Lower bound Untere Begrenzung - + Upper bound Obere Begrenzung - + Color Farbe - + Export colors... Farben exportieren... - + Import colors... Farben importieren... @@ -34680,7 +35870,7 @@ p, li { white-space: pre-wrap; } - + Filter Filter @@ -34726,24 +35916,24 @@ p, li { white-space: pre-wrap; } Symbol - + Error Fehler - + Filter expression parsing error: Filterausdrucksfehler: - + Evaluation error Auswertungsfehler - + Filter returned %n feature(s) number of filtered features @@ -34897,109 +36087,149 @@ p, li { white-space: pre-wrap; } QgsRuleBasedRendererV2Model - + (no filter) (kein Filter) - + + <li><nobr>%1 features also in rule %2</nobr></li> + <li><nobr>%1 Objekte auch in Regel %2</nobr></li> + + + Label Beschriftung - + Rule Regel - + Min. scale Min. Maßstab - + Max.scale Max. Maßstab + + + Count + Anzahl + + + + Duplicate count + Doppelte + + + + Number of features in this rule. + Anzahl der Objekte in dieser Regel. + + + + Number of features in this rule which are also present in other rule(s). + Anzahl von Objekten in dieser Regel, die auch in anderen Regeln vorkommen. + QgsRuleBasedRendererV2Widget - + Add Hinzufügen - + + Count features + Objektanzahl + + + Rendering order... Zeichenreihenfolge... - + Edit Bearbeiten - + Remove Entfernen - + Refine current rules Aktuelle Regeln verfeinern - + Add scales to rule Maßstabe zur Regel hinzufügen - + Add categories to rule Kategroien zur Regel hinzufügen - + Add ranges to rule Bereiche zur Regel hinzufügen - + Refine a rule to categories Eine Regel für Kategorien präzisieren - + Refine a rule to ranges Eine Regel für Maßstäbe präzisieren - - + + Scale refinement Eine Regel für Maßstäbe präzisieren - + Parent rule %1 must have a symbol for this operation. Für diese Operation muß die Elterregel %1 ein Symbol haben. - + Please enter scale denominators at which will split the rule, separate them by commas (e.g. 1000,5000): Bitte geben Sie einen Maßstabsnenner an bei dem die Regel aufgeteilt werden soll. Trennen Sie sie durch Kommata (z.B. 1000,5000): - + Error Fehler - + "%1" is not valid scale denominator, ignoring it. "%1" wird als ungültiger Nenner ignoriert. + + + Calculating feature count. + Objektanzahl wird berechnet. + + + + Abort + Abbrechen + QgsRunProcess @@ -35154,7 +36384,7 @@ p, li { white-space: pre-wrap; } QgsSVGFillSymbolLayerWidget - + Select svg texture file SVG-Texturdatei wählen @@ -35388,22 +36618,32 @@ Der Fehler war: QgsSingleBandGrayRendererWidget - + + Black to white + Schwarz nach Weiß + + + + White to black + Weiß nach Schwarz + + + No enhancement Keine Erweiterung - + Stretch to MinMax Strecken auf MinMax - + Stretch and clip to MinMax Auf MinMax strecken und zuschneiden - + Clip to MinMax Zuschneiden auf MinMax @@ -35435,32 +36675,37 @@ Der Fehler war: Max Max + + + Color gradient + Farbverlauf + QgsSingleBandPseudoColorRendererWidget - - - + + + Discrete Diskret - - - - + + + + Linear Linear - - + + Exact Genau @@ -35476,33 +36721,33 @@ Der Fehler war: Benutzerdefinierte Farbabbildungseintrag - + Load Color Map QGIS-Farbabbildung laden - + The color map for band %1 failed to load Die Farbabbildung für den Kanal %1 konnte nicht geladen werden - + Open file Datei öffnen - - + + Textfile (*.txt) Textdatei (*.txt) - + Import Error Importfehler - + The following lines contained errors @@ -35510,12 +36755,12 @@ Der Fehler war: - + Read access denied Lesezugriff verweigert - + Read access denied. Adjust the file permissions and try again. @@ -35523,22 +36768,22 @@ Der Fehler war: - + Save file Datei speichern - + QGIS Generated Color Map Export File QGIS-Farbabbildungsexportdatei - + Write access denied Schreibzugriff verweigert - + Write access denied. Adjust the file permissions and try again. @@ -35653,6 +36898,11 @@ Der Fehler war: Min / Max origin Min- / Max-Ursprung + + + Invert colors order + Farbreihenfolge umkehren + Classify @@ -35904,113 +37154,171 @@ Der Fehler war: QgsSpatiaLiteConnection - - - + + obsolete libspatialite: connecting to this DB requires using v.4.0 (or any subsequent) + Veraltete libspatialite: Ein Verbindung zu dieser Datenbank ist v4.0 oder höher erforderlich + + + + + + unknown error cause unbekannte Fehlerursache + + + obsolete libspatialite: AbstractInterface is unsupported + Veraltete libspatialite: AbstractInterface ist nicht unterstützt + + + + UNKNOWN + UNBEKANNT + + + + GEOMETRY + GEOMETRIE + + + + POINT + PUNKT + + + + LINESTRING + Linie + + + + POLYGON + Polygon + + + + MULTIPOINT + Multipunkt + + + + MULTILINESTRING + Multilinie + + + + MULTIPOLYGON + Multipolygon + + + + GEOMETRYCOLLECTION + Geometriesammlung + QgsSpatiaLiteProvider - + Text Text - + Binary object (BLOB) Binärobjekt (BLOB) - + Decimal number (double) Dezimalzahl (double) - + Whole number (integer) Ganzzahl (integer) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + SQLite error: %2 SQL: %1 SQLite-Fehler:%2 SQL: %1 - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + SpatiaLite SpatiaLite - - - - - - - - - + + + + + + + + + unknown cause unbekannte Ursache - + SQLite error getting feature: %1 SQLite-Fehler beim Objektladen: %1 - + FAILURE: Field %1 not found. FEHLER: Feld %1 nicht gefunden. @@ -36028,80 +37336,106 @@ SQL: %1 Datenbanken - + &Build Query &Abfrage erstellen - + &Add &Hinzufügen - - + + &Update statistics + &Statistik aktualisieren + + + + Wildcard Platzhalter - - + + RegExp RegAusdr - - + + All Alle - - + + Table Tabelle - - + + Type Typ - - + + Geometry column Geometriespalte - - + + Sql SQL - + + Confirm Update Statistics + Statistikaktualisierung bestätigen + + + + + Update Statistics + Statistikaktualisierung + + + + Internal statistics successfully updated for: %1 + Interne Statistik für %1 erfolgreich aktualisiert. + + + + Error while updating internal statistics for: %1 + Fehler bei Aktualisierung der Statistik für %1 + + + SpatiaLite DB SpatiaLite DB - + All files Alle Dateien - - + + SpatiaLite DB Open Error SpatiaLite-DB-Fehler beim Öffnen - + Database does not exist: %1 Datenbank existiert nicht: %1 - + Failure while connecting to: %1 %2 @@ -36110,12 +37444,12 @@ SQL: %1 %2 - + SpatiaLite Error SpatiaLite-Fehler - + Unexpected error when working with: %1 %2 @@ -36124,42 +37458,53 @@ SQL: %1 %2 - + @ @ - + + Are you sure you want to update the internal statistics for DB: %1? + +This could take a long time (depending on the DB size), +but implies better performance thereafter. + Sind Sie sicher, dass die die interne Statistik der DB %1 aktualisieren wollen? + +Dies kann lange dauern (abhängig von der DB-Größe), +aber führt danach zu größerer Geschwindigkeit. + + + Choose a SpatiaLite/SQLite DB to open Zu öffnende SpatiaLite/SQLite-DB wählen - + Are you sure you want to remove the %1 connection and all associated settings? Sind Sie sicher, dass Sie die Verbindung %1 und alle zugehörigen Einstellungen löschen wollen? - + Confirm Delete Löschen bestätigen - + Select Table Tabelle wählen - + You must select a table in order to add a Layer. Zum Hinzufügen eines Layers müssen Sie eine Tabelle wählen. - + SpatiaLite getTableInfo Error SpatiaLite-getTableInfo-Fehler - + Failure exploring tables from: %1 %2 @@ -37607,37 +38952,37 @@ Ersetzen? Bitte einen Farbverlauftyp wählen: - - + + Invalid Selection Ungültige Auswahl - + The parent group you have selected is not user editable. Kindly select a user defined group. Die gewählte Eltergruppe ist nicht änderbar. Bitte eine benutzerdefinierte Gruppe wählen. - + Creation of nested smart groups are not allowed Select the 'Smart Group' to create a new group. Die Erzeugung von verschachtelten schlauen Gruppe ist nicht erlaubt. Bitte die 'Schlaue Gruppe' wählen, um eine neue zu erzeugen. - + Invalid selection Ungültige Auswahl - + There was some error while editing the smart group. Es gabe einen Fehler beim Bearbeiten der schlauen Gruppe. - + Operation Not Allowed Operation nicht erlaubt @@ -37657,71 +39002,71 @@ Bitte die 'Schlaue Gruppe' wählen, um eine neue zu erzeugen.Neuer zufälliger Farbverlauf - + Color Ramp Name Farbverlaufname - + Please enter a name for new color ramp: Name für neuen Farbverlauf eingeben: - + Save Color Ramp Farbverlauf speichern - + Cannot save color ramp without name. Enter a name. Kann namenlose Farbverläufe nicht speichern. Bitte benennen. - + Save color ramp Farbverlauf speichern - + Color ramp with name '%1' already exists. Overwrite? Farbverlauf names '%1' existiert bereits. Ersetzen? - + Cannot delete system defined categories. Kindly select a group or smart group you might want to delete. Systemdefinierte Kategorien können nicht gelöscht werden. Bitte Gruppe oder schlaue Gruppe zum Löschen wählen. - + Error! Fehler! - + New group could not be created. There was a problem with your symbol database. Neue Gruppe konnte nicht erzeugt werden. Es gab ein Problem mit Ihrer Symboldatenbank. - + Database Error Datenbank-Fehler - + There was a problem with the Symbols database while regrouping. Es gab ein Problem mit der Symboldatenbank bei der Neugruppierung. - + You have not selected a Smart Group. Kindly select a Smart Group to edit. Sie haben keine schlaue Gruppe gewählt. Bitte eine zur Bearbeitung wählen. - + Database Error! Datenbank-Fehler! @@ -37754,12 +39099,12 @@ Es gab ein Problem mit Ihrer Symboldatenbank. Farbverlauf - + Add item Element hinzufügen - + Share Freigeben @@ -37769,30 +39114,77 @@ Es gab ein Problem mit Ihrer Symboldatenbank. Elemente - + Edit item Element bearbeiten - + Edit Bearbeiten - + Remove item Element löschen + + QgsSvgAnnotationDialog + + + SVG annotation + SVG-Bemerkung + + + + Delete + Löschen + + + + Select SVG file + SVG-Datei wählen + + + + SVG files + SVG-Dateien + + + + QgsSvgCache + + + SVG request failed [error: %1 - url: %2] + SVG-Abfrage gescheitert [Fehler: %1 - URL %2] + + + + + SVG + SVG + + + + SVG request error [status: %1 - reason phrase: %2] + SVG-Abfragefehler [Status: %1 - Grund: %2] + + + + %1 of %2 bytes of svg image downloaded. + %1 von %2 Bytes des SVG-Bilds geladen. + + QgsSvgMarkerSymbolLayerV2Widget - + Select SVG file SVG-Datei wählen - + SVG files SVG-Dateien @@ -37957,20 +39349,15 @@ Es gab ein Problem mit Ihrer Symboldatenbank. QgsTextAnnotationDialog - + Delete Löschen - + Select font color Schriftfarbe wählen - - - Select background color - Hintergrundfarbe wählen - QgsTextAnnotationDialogBase @@ -37989,11 +39376,6 @@ Es gab ein Problem mit Ihrer Symboldatenbank. I K - - - Background color - Hintergrundfarbe - QgsTileScaleWidget @@ -38611,18 +39993,38 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsVectorGradientColorRampV2Dialog - - - - + + Discrete + Diskret + + + + Continous + Fortlaufend + + + + Gradient file : %1 + Gradienten-Datei : %1 + + + + License file : %1 + Lizenzdatei : %1 + + + + + + Offset of the stop Versatz des Wechsels - - - - + + + + Please enter offset in percents (%) of the new stop Bitte geben sie den Versatz in Prozent (%) des neuen Wechsels an @@ -38651,32 +40053,42 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Farbe 2 - + + Type + Typ + + + Multiple stops Mehrere Wechsel - + Add stop Hinzufügen - + Remove stop Entfernen - + Color Farbe - - Offset - Versatz + + Offset (%) + Versatz (%) - + + Information + Information + + + Preview Vorschau @@ -38684,37 +40096,47 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsVectorLayer - + + Updating feature count for layer %1 + Objektanzahl des Layers %1 aktualsieren + + + + Abort + Abbrechen + + + No renderer object Kein Darstellungsobjekt - + Classification field not found Klassifikationsfeld nicht gefunden - + renderer failed to save Darstellung konnte nicht gespeichert werden - + no renderer Keine Darstellung - + ERROR: no provider FEHLER: kein Datenlieferant - + ERROR: layer not editable FEHLER: Layer ist nicht veränderbar - + SUCCESS: %n attribute(s) deleted. deleted attributes count @@ -38723,7 +40145,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + ERROR: %n attribute(s) not deleted. not deleted attributes count @@ -38732,7 +40154,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + SUCCESS: %n attribute(s) added. added attributes count @@ -38741,7 +40163,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + ERROR: %n new attribute(s) not added not added attributes count @@ -38750,17 +40172,17 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + SUCCESS: attribute %1 was added. ERFOLG: Attribut %1 hinzugefügt. - + ERROR: attribute %1 not added FEHLER: Attribut %1 nicht hinzugefügt - + SUCCESS: %n attribute value(s) changed. changed attribute values count @@ -38769,7 +40191,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + ERROR: %n attribute value change(s) not applied. not changed attribute values count @@ -38778,7 +40200,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + SUCCESS: %n feature(s) added. added features count @@ -38787,7 +40209,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + ERROR: %n feature(s) not added. not added features count @@ -38796,7 +40218,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + ERROR: %n feature(s) not added - provider doesn't support adding features. not added features count @@ -38805,7 +40227,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + SUCCESS: %n geometries were changed. changed geometries count @@ -38814,7 +40236,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + ERROR: %n geometries not changed. not changed geometries count @@ -38823,7 +40245,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + SUCCESS: %n feature(s) deleted. deleted features count @@ -38832,7 +40254,7 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + ERROR: %n feature(s) not deleted. not deleted features count @@ -38841,128 +40263,128 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? - + Provider errors: Datenlieferantenfehler: - + Commit errors: %1 Commit-Fehler: %1 - + General: Allgemein: - + Layer comment: %1 Layerkommentar: %1 - + Storage type of this layer: %1 Datenspeicher dieses Layers: %1 - + Source for this layer: %1 Quelle dieses Layers: %1 - + Geometry type of the features in this layer: %1 Geometrietyp der Objekte dieses Layers: %1 - + The number of features in this layer: %1 Anzahl der Objekte dieses Layers: %1 - + Editing capabilities of this layer: %1 Bearbeitungseigenschaften dieses Layers: %1 - + Extents: Ausdehnung: - + In layer spatial reference system units : In Bezugssystemeinheiten des Projekts : - - + + xMin,yMin %1,%2 : xMax,yMax %3,%4 xMin,yMin %1;%2 : xMax,yMax %3;%4 - + unknown extent Unbekannte Ausmaße - - + + In project spatial reference system units : In Bezugssystemeinheiten des Projekts : - + Layer Spatial Reference System: Räumliches Bezugssystem des Layers: - + Project (Output) Spatial Reference System: Räumliches Bezugssystem des Projekts (Ausgabe): - + (Invalid transformation of layer extents) (Transformation der Layerausdehnung ungültig) - + Attribute field info: Attributfeldinformationen: - + Field Feld - + Type Typ - + Length Länge - + Precision Genauigkeit - + Comment Kommentar - + Unknown renderer Unbekannte Darstellung @@ -38970,291 +40392,136 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden? QgsVectorLayerProperties - - + + Stop editing mode to enable this. Bearbeitungsmodus beenden, um dies zu aktivieren. - - Name conflict - Namenskonflikt - - - - The attribute could not be inserted. The name already exists in the table. - Das Attribut konnte nicht eingefügt werden, da der Name bereits vorhanden ist. - - - - Added attribute - Attribut hinzugefügt - - - - Deleted attribute - Attribute gelöscht - - - + Transparency: %1% Transparenz: %1% - - + + Single Symbol Einzelsymbol - - + + Graduated Symbol Abgestuftes Symbol - - + + Continuous Color Fortlaufende Farbe - - + + Unique Value Eindeutiger Wert - + Insert expression Ausdruck einfügen - - Classification - Klassifikation - - - - Dial range - Drehreglerbereich - - - - Hidden - Versteckt - - - - Checkbox - Kontrollkästchen - - - - Text edit - Texteditor - - - - Calendar - Kalender - - - - Value relation - Wertbeziehung - - - - UUID generator - UUID-Generator - - - - + + Spatial Index Räumlicher Index - + Creation of spatial index successful Räumlichen Indexes erfolgreich erstellt - + Creation of spatial index failed Erstellung des räumlichen Indexes schlug fehl - + Load layer properties from style file Layereigenschaften aus Stildatei laden - - - + + + QGIS Layer Style File QGIS-Layerstildatei - - - + + + SLD File SLD-Datei - + Load Style Stil laden - + Save layer properties as style file Layereigenschaften als Stildatei speichern - - UI file - UI-Dateien - - - + Save Style Stil speichern - + Save Style... Stil speichern... - - Type - Typ - - - - Length - Länge - - - - Precision - Genauigkeit - - - - Comment - Kommentar - - - - + + Default Style Vorgabestil - + Saved Style Gespeicherter Stil - - Select edit form - Bearbeitungsformular wählen - - - + Symbology Darstellung - + Do you wish to use the new symbology implementation for this layer? Wollen Sie die neue Darstellungsimplementierung für diesen Layer nutzen? - + This button opens the query builder and allows you to create a subset of features to display on the map canvas rather than displaying all features in the layer Dieser Knopf öffnet die Abfrageerstellung und ermöglicht, statt aller Objekte, eine Untermenge der Objekte auf dem Kartenfenster darzustellen - + Layer Properties - %1 Layereigenschaften - %1 - - Id - Id - - - - Name - Name - - - - Edit widget - Bearbeitungselement - - - - Alias - Alias - - - + The query used to limit the features in the layer is shown here. To enter or modify the query, click on the Query Builder button Die Abfrage zur Begrenzung der Anzahl der Objekte wird hier angezeigt. Klicken Sie auf auf 'Abfrageerstellung', um eine Abfrage einzugeben oder zu ändern - - - Line edit - Eingabezeile - - - - Unique values - Eindeutige Werte - - - - Unique values editable - Eindeutige Werte (bearbeitbar) - - - - Value map - Wertabbildung - - - - Edit range - Eingabezeile mit Bereich - - - - Slider range - Schieberbereich - - - - File name - Dateiname - - - - Enumeration - Aufzählung - - - - Immutable - Unveränderbar - QgsVectorLayerPropertiesBase @@ -39294,33 +40561,33 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Felder - + General Allgemein - + Options Optionen - + Create Spatial Index Räumlichen Index erstellen - - + + Specify the coordinate reference system of the layer's geometry. Koordinatenbezugsssystem der Geometrie des Layers angeben. - + Specify CRS KBS angeben - + Update Extents Ausmaße aktualisieren @@ -39330,147 +40597,122 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Beschriftung (alt) - + CRS KBS - - Less than: - Weniger als: - - - - More than or equal to: - Mehr als oder gleich: - - - + Provider-specific options Datenlieferanteneinstellungen - + Encoding Kodierung - + Display Anzeigen - + Legend display text Legendenanzeigetext - + Map Tip display text Kartentippanzeigetext - + Inserts an expression into the action Einen Ausdruck in die Aktion einfügen - + Insert expression... Ausdruck einfügen... - + The valid attribute names for this layer Die gültigen Attributnamen für diesen Layer - + Inserts the selected field into the action Fügt das gewählte Feld in die Aktion ein - + Insert field Attribut einfügen - + HTML HTML - + Field Feld - + Title Titel - + Abstract Zusammenfassung - + Joins Verknüpfungen - + Join layer Joinlayer - + Join field Verknüpfungsfeld - + Target field Zielfeld - + Diagrams Diagramme - - - Edit UI - UI zur Bearbeitung - New symbology Neue Darstellung - - ... - ... - - - - Init function - Initialisierungsfunktion - - - + Use scale dependent rendering Maßstabsabhängig zeichnen - + Subset Untermenge - + Query Builder Abfrageerstellung @@ -39485,91 +40727,98 @@ Sollen die vorhandenen Klassen vor der Klassifizierung gelöscht werden?Transparenz - - Metadata - Metadaten - - - - Labels - Beschriftungen - - - - Display labels - Beschriftungen anzeigen + + + Minimum scale, i.e. maximum scale denominator. This limit is exclusive, that means the layer will not be displayed on this scale. + Kleinster Maßstab, d.h. größter Maßstabsnenner. Die Grenze ist ausschließlich, d.h. der Layer wird bei diesem Maßstab nicht mehr angezeigt. - - Actions - Aktionen + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Minimum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exclusive)</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Kleinster Maßstab</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exklusive)</p></body></html> - - New column - Neue Spalte + + + Maximum scale, i.e. minimum scale denominator. This limit is inclusive, that means the layer will be displayed on this scale. + Größter Maßstab (d.h. kleinster Maßstabsnenner). Diese Grenze ist einschließlich, d.h. der Layer wird bis zu diesem Maßstab angezeigt. - - Ctrl+N - Strg+N + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Maximum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inclusive)</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Größter Maßstab</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inklusive)</p></body></html> - - Delete column - Spalte löschen + + + Current + Aktuell - - Ctrl+X - Strg+X + + Metadata + Metadaten - - Toggle editing mode - Bearbeitungsmodus umschalten + + Labels + Beschriftungen - - - Click to toggle table editing - Anklicken um den Tabellenbearbeitungsmodus umzuschalten + + Display labels + Beschriftungen anzeigen - - Field calculator - Feldrechner + + Actions + Aktionen QgsVectorLayerSaveAsDialog - - SpatiaLite - SpatiaLite - - - + Layer CRS Layer-KBS - + Project CRS Projekt-KBS - + Selected CRS Gewähltes KBS - + Save layer as... Layer speichern als... - + Select the coordinate reference system for the vector file. The data points will be transformed from the layer coordinate reference system. Koordinatenbezugssystem für die Vektordatei wählen. Die Datenpunkte werden vom Koordinatenbezugssystem des Layers transformiert. @@ -40424,113 +41673,107 @@ Antwort war: QgsWcsProvider - + Cannot describe coverage Konnte Coverage nicht beschreiben - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - + + WCS WCS - + Coverage not found Coverage nicht gefunden - + Cannot calculate extent Konnte Ausdehnung nicht berechnen - + Cannot get test dataset. Konnte Testdatensatz nicht laden. - + Block read OK Blocklesung OK - + Getting map via WCS. Lade Karte über WCS. - + Map request error (Status: %1; Reason phrase: %2; URL:%3) Kartenabfrage-Fehler (Status: %1; Grund:%2; URL: %3) - - + Map request error (Title:%1; Error:%2; URL: %3) Kartenabfrage-Fehler (Titel: %1; Fehler:%2; URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) Kartenabfrage-Fehler (Status: %1; Antwort:%2; URL: %3) - + Cannot find boundary in multipart content type Konnte Begrenzungen in Multipart-Content-Type nicht finden - + Map request error (Response: %1; URL:%2) Kartenabfrage-Fehler (Antwort:%1; URL: %2) - + Cannot create memory file Konnte Speicherdatei nicht erzeugen - + Map request failed [error:%1 url:%2] Kartenabfrage-Fehler [Fehler:%1; URL: %2] - + Not logging more than 100 request errors. Nicht mehr als 100 Abfragefehler werden protokolliert. - + %1 of %2 bytes of map downloaded. %1 von %2 Bytes der Karte heruntergeladen. - + Dom Exception DOM-Ausnahme - + Could not get WCS Service Exception at %1: %2 at line %3 column %4 Response was: @@ -40543,168 +41786,173 @@ Antwort war: %5 - + Request contains a format not offered by the server. Anfrage enthält ein Format, dass der Server nicht anbietet. - + Request is for a Coverage not offered by the service instance. Angefragte Coverage wird von Serverinstanz nicht angeboten. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. Wert des (optionalen) Aktualisierungssequenenzzählers der GetCapabilities-Anfrage entspricht dem aktuellen Wert des Aktualisierungssequenzzähler in den Dienstmetadaten. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. Wert des (optionalen) Aktualisierungssequenenzzählers der GetCapabilities-Anfrage ist größer als der aktuelle Wert des Aktualisierungssequenzzähler in den Dienstmetadaten. - + Request contains an invalid parameter value. Anfrage enthält einen ungültigen Parameterwert. - + No other exceptionCode specified by this service and server applies to this exception. Kein anderer Ausnahmecode des Dienstes und Servers trifft auf diese Ausnahme zu. - + Operation request contains an output CRS that can not be used within the output format. Operationsanfrage enthält ein Ausgabe-KBS, das nicht mit dem Ausgabeformat verwendet werden kann. - + Expected 2 parts, %1 received %1 statt zwei Teilen empfangen - + Received coverage has wrong extent %1 (expected %2) Empfangene Coverage hat falsche Ausdehnung %1 (erwartet %2) - + Rotating raster Raster wird gedreht - + Received coverage has wrong size %1 x %2 (expected %3 x %4) Empfangene Coverage hat die falsche Größe %1 x %2 (erwartet %3 x %4) - + + Map request error:<br>Title: %1<br>Error: %2<br>URL: <a href='%3'>%3</a>) + Kartenabfrage-Fehler:<br>Titel: %1<br>Fehler:%2<br>URL: <a href='%3'>%3</a>) + + + More than 2 parts (%1) received Mehr als 2 Teile (%1) empfangen - + Content-Transfer-Encoding %1 not supported Content-Transfer-Encoding %1 nicht unterstützt - + No data received Keine Daten empfangen - + Request does not include a parameter value, and the server instance did not declare a default value for that dimension. Anfrage enthält keinen Parameterwert, und die Serverinstanz selbst definiert auch keine Vorgabe dafür. - + Operation request specifies to "store" the result, but not enough storage is available to do this. Operationsanfrage gibt das "Speichern" des Ergebnisses vor, aber es ist nicht genügend Speicher dafür verfügbar. - + (No error code was reported) (Kein Fehlercode zurückgegeben) - + (Unknown error code) (Unbekannter Fehlercode) - + The WCS vendor also reported: Der WCS-Betreiber meldete folgendes: - + composed error message '%1'. Zusammengestellte Fehlermeldung '%1'. - - + + Property Eigenschaft - - + + Value Wert - + Name (identifier) Name (Kennung) - - + + Title Titel - - + + Abstract Zusammenfassung - + Fixed Width Feste Breite - + Fixed Height Feste Höhe - + Native CRS Natives KBS - + Native Bounding Box Native Ausdehnung - + WGS 84 Bounding Box WGS84-Ausdehnung - - + + Available in CRS Verfügbar in KBS - - + + (and %n more) crs @@ -40713,74 +41961,74 @@ Antwort war: - - + + Available in format Verfügbar im Format - - + + Coverages Coverages - + Cache Stats Cache-Statistik - + Server Properties Server-Eigenschaften - + Keywords Schlüsselworte - + Online Resource Online-Quelle - + Contact Person Kontaktperson - + Fees Gebühren - + Access Constraints Zugriffsbeschränkungen - + Image Formats Bildformate - + GetCapabilitiesUrl GetCapabilities-URL - + Get Coverage Url GetCoverage-URL - + &nbsp;<font color="red">(advertised but ignored)</font> &nbsp;<font color="red">(gemeldet, aber ignoriert)</font> - + And %1 more coverages Und %1 weitere Coverages @@ -40788,122 +42036,122 @@ Antwort war: QgsWmsProvider - + Tried URL: %1 URL %1 versucht - + Capabilities request redirected. Eigenschaften-Abfrage umgeleitet. - + empty of capabilities: %1 Eigenschaften leer: %1 - + Download of capabilities failed: %1 Eigenschaften-Abfrage gescheitert: %1 - + %1 of %2 bytes of capabilities downloaded. %1 von %2 Bytes der Eigenschaften heruntergeladen. - + %1 of %2 bytes of map downloaded. %1 von %2 Bytes der Karte heruntergeladen. - - - + + + Dom Exception DOM-Ausnahme - + Request contains a CRS not offered by the server for one or more of the Layers in the request. Anfrage verlangt ein CRS für einen oder mehrere Layer, die der Server nicht anbietet. - + Request contains a SRS not offered by the server for one or more of the Layers in the request. Anfrage enthält ein SRS für einen oder mehrere Layer, die der Server nicht anbietet. - + GetMap request is for a Layer not offered by the server, or GetFeatureInfo request is for a Layer not shown on the map. GetMap-Anfrage für einen Layer, den der Server nicht anbietet oder GetFeature-Anfrage für einen Layer, der nicht auf der Karte angezeigt wird. - + Request is for a Layer in a Style not offered by the server. Anfrage für einen Layer in einem Stil, den der Server nicht anbietet. - + GetFeatureInfo request is applied to a Layer which is not declared queryable. GetFeatureInfo-Anfrage wird auf einen Layer bezogen, der nicht als abfragbar deklariert ist. - + GetFeatureInfo request contains invalid X or Y value. GetFeatureInfo-Anfrage enthält einen ungültigen X- oder Y-Wert. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. Wert des (optionalen) Aktualisierungssequenenzzählers der GetCapabilities-Anfrage entspricht dem aktuellen Wert des Aktualisierungssequenzzähler in den Dienstmetadaten. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. Wert des (optionalen) Aktualisierungssequenenzzählers der GetCapabilities-Anfrage ist größer als der aktuelle Wert des Aktualisierungssequenzzähler in den Dienstmetadaten. - + Request does not include a sample dimension value, and the server did not declare a default value for that dimension. Anfrage enthält keinen beispielhaften Dimensionswert, und der Server selbst definiert auch keinen. - + Request contains an invalid sample dimension value. Anfrage enthält einen ungültigen beispielhaften Dimensionswert. - + Request is for an optional operation that is not supported by the server. Anfrage ist für eine optionale Operation, die der Server nicht unterstützt. - + The WMS vendor also reported: Der WMS-Betreiber meldete folgendes: - - - - + + + + Property Eigenschaft - - - - + + + + Value Wert - + (and %n more) crs @@ -40912,286 +42160,316 @@ URL %1 versucht - - + + Selected Layers Gewählte Layer - - + + Other Layers Andere Layer - + Tile Layer Properties Kachellayer-Eigenschaften - + WMS Version WMS-Version - - - + + + Title Titel - - - + + + Abstract Zusammenfassung - + Keywords Schlüsselworte - + Online Resource Online-Quelle - + Contact Person Kontaktperson - + Fees Gebühren - + Access Constraints Zugriffsbeschränkungen - + Image Formats Bildformate - + Identify Formats Abfrageformate - + Layer Count Layeranzahl - + Selected Ausgewählt - - - - + + + + Yes Ja - - - - + + + + No Nein - + Visibility Sichtbarkeit - + Number of layers and styles don't match Anzahl von Layern und Stilen stimmt nicht überein - + Getting tiles. Lade Kacheln. - + Tile request error (Title:%1; Error:%2; URL: %3) Kachelabfrage-Fehler (Titel: %1; Fehler: %2; URL: %3) - + Tile request error (Status:%1; Content-Type:%2; Length:%3; URL: %4) Kachelabfrage-Fehler (Status: %1; Content-Typ: %2; Länge: %3; URL: %4) - + Tile request failed [error:%1 url:%2] Kachelabfrage-Fehler [Fehler: %1; URL: %2] - - + + Not logging more than 100 request errors. Nicht mehr als 100 Abfragefehler werden protokolliert. - + Map request error (Status: %1; Reason phrase: %2; URL:%3) Kartenabfrage-Fehler (Status: %1; Grund:%2; URL: %3) - + Map request error (Title:%1; Error:%2; URL: %3) Kartenabfrage-Fehler (Titel: %1; Fehler:%2; URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) Kartenabfrage-Fehler (Status: %1; Antwort:%2; URL: %3) - + Map request failed [error:%1 url:%2] Kartenabfrage-Fehler [Fehler:%1; URL: %2] - + Visible Sichtbar - + Hidden Versteckt - + Can Identify Kann abgefragt werden - + Can be Transparent Kann transparent sein - + Cascade Count Kaskadiere Anzahl - + Fixed Width Feste Breite - + Fixed Height Feste Höhe - + WGS 84 Bounding Box WGS84-Ausdehnung - - + + Available in CRS Verfügbar in KBS - + Available in style Verfügbar im Stil - - + + Name Name - + Available Tilesets Verfügbare Kachelsätze - + Cache stats Cache-Statistik - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + WMS WMS - + + Cannot parse URI + Konnte URI nicht parsen + + + + Cannot calculate extent + Konnte Ausdehnung nicht berechnen + + + + Cannot set CRS + Konnte KBS nicht setzen + + + + Number of tile layers must be one + Anzahl der Kachellayer muss eins sein + + + + Tile layer not found + Kachellayer nicht gefunden + + + + Tile layer or tile matrix set not found + Kachellayer oder Kachelmatrixsatz nicht gefunden + + + Getting map via WMS. Lade Karte über WMS. - + image is NULL Bild ist NULL - + unexpected image size Unerwartete Bildgröße - + Tile request error Tile-Anfragefehler - + Status: %1 Reason phrase: %2 Status: %1 Grund: %2 - - + + Returned image is flawed [%1] Geladenes Bild ist defekt [%1] - + empty capabilities document Leeres Capabilities-Dokument - + Could not get WMS capabilities: %1 at line %2 column %3 This is probably due to an incorrect WMS Server URL. Response was: @@ -41204,7 +42482,7 @@ Antwort war: %4 - + Could not get WMS capabilities in the expected format (DTD): no %1 or %2 found. This might be due to an incorrect WMS Server URL. Tag:%3 @@ -41218,7 +42496,7 @@ Antwort war: %4 - + Could not get WMS Service Exception at %1: %2 at line %3 column %4 Response was: @@ -41231,99 +42509,104 @@ Antwort war: %5 - + Request contains a format not offered by the server. Anfrage enthält ein Format, dass der Server nicht anbietet. - + composed error message '%1'. Zusammengestellte Fehlermeldung '%1'. - + + Extent for layer %1 not found in capabilities + Ausmaße des Layers %1 nicht in den Eigenschaften gefunden + + + GetCapabilitiesUrl GetCapabilities-URL - + GetMapUrl GetMap-URL - - + + &nbsp;<font color="red">(advertised but ignored)</font> &nbsp;<font color="red">(gemeldet, aber ignoriert)</font> - + WMTS WMTS - + WMS-C WMS-C - + Available Styles Verfügbare Stile - + CRS KBS - + Bounding Box Ausdehnung - + Hits Treffer - + Misses Fehlgriffe - + Errors Fehler - + identify request redirected. Identify-Anfrage umgeleitet. - + Map getfeatureinfo error %1: %2 GetFeatureInfo-Fehler %1: %2 - + ERROR: GetFeatureInfo failed FEHLER: GetFeatureInfo gescheitert - + Map getfeatureinfo error: %1 [%2] GetFeatureInfo-Fehler %1 [%2] - + Can Zoom In Kann herangezoomt werden - - + + %n tile requests in background tile request count @@ -41332,8 +42615,8 @@ Antwort war: - - + + , %n cache hits tile cache hits @@ -41342,8 +42625,8 @@ Antwort war: - - + + , %n cache misses. tile cache missed @@ -41352,8 +42635,8 @@ Antwort war: - - + + , %n errors. errors @@ -41362,53 +42645,53 @@ Antwort war: - - + + Server Properties Server-Eigenschaften - + Tile Layer Count Kachellayeranzahl - + GetTileUrl GetTileUrl - + Tile templates Kachelvorlagen - + FeatureInfo templates FeatureInfo-Vorlagen - + Tileset Properties Tileset-Eigenschaften - + Cache Stats Cache-Statistik - + GetFeatureInfoUrl GetFeatureInfoUrl - + (No error code was reported) (Kein Fehlercode zurückgegeben) - + (Unknown error code) (Unbekannter Fehlercode) @@ -41762,15 +43045,15 @@ Antwort war: Analyse - &SEXTANTE Toolbox + &SEXTANTE toolbox &SEXTANTE-Werkzeugkasten - &SEXTANTE Modeler + &SEXTANTE modeler &SEXTANTE-Modellierung - &SEXTANTE History and log + &SEXTANTE history and log &SEXTANTE Protokoll @@ -41781,14 +43064,6 @@ Antwort war: &SEXTANTE results viewer &SEXTANTE-Ergebnisanzeige - - &SEXTANTE help - &SEXTANTE-Hilfe - - - &About SEXTANTE - &Über SEXTANTE - SaDbTableModel @@ -42256,18 +43531,57 @@ Beschreibung: %3 Unterdaten + + SettingsDialog + + + Font + Schriftart + + + + Size + Größe + + + + API file + API-Datei + + + + Browse + Durchsuchen + + + + Use preloaded API file + API-Dateien vorladen + + SextanteToolbox + SEXTANTE Toolbox &SEXTANTE-Werkzeugkasten + Click here to configure additional algorithm providers Hier klicken um die zusätzlichen Algorithmen- lieferanten zur konfigurieren + + + Enter algorithm name to filter list + Algorithmenname eingeben, um Liste zu filtern + + + Search... + Suchen... + Execute Ausführen @@ -42452,10 +43766,36 @@ lieferanten zur konfigurieren Please specify input field Bitte Eingabefeld angeben + + Please specify output shapefile + Bitte eine Shapeausgabedatei angeben + Cancel Abbruch + + Geometry + Geometrie + + + Created output shapefile: +%1 +%2 + +Would you like to add the new layer to the TOC? + Ausgabeshapedatei erzeugt: +%1 +%2 + +Soll sie dem Projekt als neuer Layer hinzugefügt werden? + + + Error loading output shapefile: +%1 + Fehler beim Laden der Ausgabeshapedatei: +%1 + Feature Objekt @@ -44027,7 +45367,7 @@ Base Path (i.e. keep only filename from attribute) Vector grid - Vektorraster + Vektorgitter Select by location @@ -44069,6 +45409,10 @@ Base Path (i.e. keep only filename from attribute) Difference Differenz + + Eliminate sliver polygons + Splitterpolygone entfernen + G&eometry Tools G&eometrie-Werkzeuge diff --git a/i18n/qgis_eu_ES.ts b/i18n/qgis_eu_ES.ts new file mode 100644 index 000000000000..0040195c3700 --- /dev/null +++ b/i18n/qgis_eu_ES.ts @@ -0,0 +1,47405 @@ + + + + + CharacterWidget + + + <p>Character: <span style="font-size: 24pt; font-family: %1">%2</span><p>Value: 0x%3 + + + + + ConfigDialog + + Search... + + + + Wrong value + + + + Wrong parameter value: +%1 + + + + + CoordinateCapture + + + + Coordinate Capture + + + + + + Click on the map to view coordinates and capture to clipboard. + + + + + &Coordinate Capture + + + + + Click to select the CRS to use for coordinate display + + + + + Coordinate in your selected CRS (lat,lon or east,north) + + + + + Coordinate in map canvas coordinate reference system (lat,lon or east,north) + + + + + Copy to clipboard + + + + + Click to enable mouse tracking. Click the canvas to stop + + + + + Start capture + + + + + Click to enable coordinate capture + + + + + Dialog + + + Eliminate sliver polygons + + + + + area + + + + + Selected features: + + + + + + + + + Input vector layer + + + + + common boundary + + + + + Merge selection with the neighbouring polygon with the largest + + + + + + Save to new file + + + + + + + + + + + + + + + + + + + + + + Browse + + + + + + Add result to canvas + + + + + Extract Nodes + + + + + Input line or polygon vector layer + + + + + + + Unique ID field + + + + + Save to new shapefile + + + + + + Output point shapefile + + + + + Tolerance + + + + + Calculate using + + + + + Calculate extent for each feature separately + + + + + + + + + Use only selected features + + + + + Geoprocessing + + + + + Intersect layer + + + + + Buffer distance + + + + + Buffer distance field + + + + + Dissolve field + + + + + Dissolve buffer results + + + + + + + + Output shapefile + + + + + Segments to approximate + + + + + Locate Line Intersections + + + + + Input line layer + + + + + + Input unique ID field + + + + + Intersect line layer + + + + + Intersect unique ID field + + + + + + + + + + + Output Shapefile + + + + + Generate Centroids + + + + + Weight field + + + + + Number of standard deviations + + + + + Std. Dev. + + + + + Merge shapefiles + + + + + Select by layers in the folder + + + + + Shapefile type + + + + + Polygon + + + + + Line + + + + + Point + + + + + Input directory + + + + + Add result to map canvas + + + + + Create Distance Matrix + + + + + Input point layer + + + + + Target point layer + + + + + Target unique ID field + + + + + Output matrix type + + + + + Linear (N*k x 3) distance matrix + + + + + Standard (N x T) distance matrix + + + + + Summary distance matrix (mean, std. dev., min, max) + + + + + Use only the nearest (k) target points + + + + + Output distance matrix + + + + + Count Points In Polygons + + + + + + Input polygon vector layer + + + + + Input point vector layer + + + + + Output count field name + + + + + PNTCNT + + + + + Generate Random Points + + + + + + Input Boundary Layer + + + + + Sample Size + + + + + Unstratified Sampling Design (Entire layer) + + + + + + + Use this number of points + + + + + Stratified Sampling Design (Individual polygons) + + + + + Use this density of points + + + + + Use value from input field + + + + + Random Selection Tool + + + + + + + Input Vector Layer + + + + + + Randomly Select + + + + + + Number of Features + + + + + + Percentage of Features + + + + + + % + + + + + Projection Management Tool + + + + + Input spatial reference system + + + + + Output spatial reference system + + + + + Use predefined spatial reference system + + + + + Choose + + + + + Import spatial reference system from existing layer + + + + + Import spatial reference system + + + + + Generate Regular Points + + + + + Area + + + + + Input Coordinates + + + + + + X Min + + + + + + Y Min + + + + + + X Max + + + + + + Y Max + + + + + Grid Spacing + + + + + Use this point spacing + + + + + Apply random offset to point spacing + + + + + Initial inset from corner (LH side) + + + + + Simplify geometries + + + + + Input line or polygon layer + + + + + Simplify tolerance + + + + + Build spatial index + + + + + Select files from disk + + + + + Select files... + + + + + Select all + + + + + Select none + + + + + Clear list + + + + + Spatial Join + + + + + Target vector layer + + + + + Join vector layer + + + + + Attribute Summary + + + + + Mean + + + + + Take summary of intersecting features + + + + + Min + + + + + Sum + + + + + Median + + + + + Max + + + + + Take attributes of first located feature + + + + + Output table + + + + + Only keep matching records + + + + + Keep all records (including non-matching target records) + + + + + Random Selection From Within Subsets + + + + + Input subset field (unique ID field) + + + + + Sum Line Length In Polygons + + + + + Output summed length field name + + + + + LENGTH + + + + + Input line vector layer + + + + + Generate Vector Grid + + + + + Grid extent + + + + + Update extents from layer + + + + + Update extents from canvas + + + + + Align extents and resolution to selected raster layer + + + + + Parameters + + + + + X + + + + + Lock 1:1 ratio + + + + + Y + + + + + Output grid as polygons + + + + + Output grid as lines + + + + + Vector Split + + + + + Output folder + + + + + List Unique Values + + + + + Target field + + + + + Unique values list + + + + + Unique value count + + + + + Save errors location + + + + + Press Ctrl+C to copy results to the clipboard + + + + Regular points + + + + Please specify input layer + + + + Please properly specify extent coordinates + + + + Please specify output shapefile + + + + Created output point shapefile: +%1 + +Would you like to add the new layer to the TOC? + + + + creating new selection + + + + adding to current selection + + + + removing from current selection + + + + Select by location + + + + Select features in: + + + + that intersect features in: + + + + Modify current selection by: + + + + Use selected features only + + + + Please specify select layer + + + + Select directory with shapefiles to merge + + + + No shapefiles found + + + + There are no shapefiles in this directory. Please select another one. + + + + Input files + + + + No output file + + + + Please specify output file. + + + + Delete error + + + + Can't delete file %1 + + + + Cancel + + + + Merging + + + + Error loading output shapefile: +%1 + + + + Close + + + + Sum line lengths + + + + Sum Line Lengths In Polyons + + + + Please specify input polygon vector layer + + + + Please specify input line vector layer + + + + Please specify output length field + + + + Created output shapefile: +%1 + +Would you like to add the new layer to the TOC? + + + + CRS warning! + + + + Warning: Input layers have non-matching CRS. +This may cause unexpected results. + + + + length field + + + + Random selection within subsets + + + + Please specify input vector layer + + + + Please specify an input field + + + + Distance matrix + + + + Create Point Distance Matrix + + + + Please specify input point layer + + + + Please specify output file + + + + Please specify target point layer + + + + Please specify input unique ID field + + + + Please specify target unique ID field + + + + Created output matrix: + + + + + Define current projection + + + + Missing or invalid CRS + + + + No input shapefile specified + + + + Please specify spatial reference system + + + + Cannot define projection for PostGIS data...yet! + + + + Identical output spatial reference system chosen + +Are you sure you want to proceed? + + + + Output spatial reference system is not valid + + + + Defined Projection For: +%1.shp + + + + Please select the projection system that defines the current layer. + + + + Layer CRS information will be updated to the selected CRS. + + + + Export to new projection + + + + No Valid CRS selected + + + + Count Points in Polygon + + + + Count Points In Polygon + + + + Please specify input point vector layer + + + + Please specify output count field + + + + Random Points + + + + No input layer specified + + + + unstratified + + + + stratified + + + + density + + + + field + + + + Unknown layer type... + + + + Mean coordinates + + + + Standard distance + + + + (Optional) Weight field + + + + (Optional) Unique ID field + + + + Coordinate statistics + + + + No input vector layer specified + + + + Selected features: %1 + + + + Eliminate + + + + No selection in input layer + + + + Error creating output file + + + + Could not replace geometry of feature with id %1 + + + + Could not delete feature with id %1 + + + + Commit error + + + + Created output shapefile: +%1 + + + + Could not eliminate features with these ids: +%1 + + + + Line intersections + + + + Please specify input line layer + + + + Please specify line intersect layer + + + + Please specify intersect unique ID field + + + + Random selection + + + + Densify geometries + + + + Vertices to add + + + + Warning + + + + Currently QGIS doesn't allow simultaneous access from + different threads to the same datasource. Make sure your layer's + attribute tables are closed. Continue? + + + + Simplify results + + + + There were %1 vertices in original dataset which +were reduced to %2 vertices after simplification + + + + Error + + + + Finished + + + + Processing completed. + + + + Join attributes by location + + + + Please specify target vector layer + + + + Please specify join vector layer + + + + Please specify at least one summary statistic + + + + Summary field + + + + Incorrect field names + + + + No output will be created. +Following field names are longer than 10 characters: +%1 + + + + Error deleting shapefile + + + + Can't delete existing shapefile +%1 + + + + Vector grid + + + + Please select a raster layer + + + + Unable to compute extents aligned on selected raster layer + + + + Please specify valid extent coordinates + + + + Invalid extent coordinates entered + + + + Split vector layer + + + + Created output shapefiles in folder: +%1 + + + + + DlgAddGeometryColumn + + + Dialog + + + + + Name + + + + + geom + + + + + Type + + + + + POINT + + + + + LINESTRING + + + + + POLYGON + + + + + MULTIPOINT + + + + + MULTILINESTRING + + + + + MULTIPOLYGON + + + + + GEOMETRYCOLLECTION + + + + + Dimensions + + + + + SRID + + + + + -1 + + + + + DlgConfig + + + SEXTANTE options + + + + + Enter setting name to filter list + + + + + Setting + + + + + Value + + + + + DlgCreateConstraint + + + Add constraint + + + + + Column + + + + + Primary key + + + + + Unique + + + + + DlgCreateIndex + + + Create index + + + + + Column + + + + + Name + + + + + DlgCreateTable + + + Create Table + + + + + Schema + + + + + + Name + + + + + Add field + + + + + Delete field + + + + + Up + + + + + Down + + + + + Primary key + + + + + Create geometry column + + + + + POINT + + + + + LINESTRING + + + + + POLYGON + + + + + MULTIPOINT + + + + + MULTILINESTRING + + + + + MULTIPOLYGON + + + + + GEOMETRYCOLLECTION + + + + + geom + + + + + Dimensions + + + + + SRID + + + + + -1 + + + + + Create spatial index + + + + + DlgDbError + + + Database Error + + + + + An error occured: + + + + + An error occured when executing a query: + + + + + Query: + + + + + DlgExportVector + + + Export to vector file + + + + + Output file + + + + + ... + + + + + Action + + + + + Create new file + + + + + Drop existing one + + + + + Append data into file + + + + + Options + + + + + Source SRID + + + + + Target SRID + + + + + Encoding + + + + + DlgFieldProperties + + + Field properties + + + + + Name + + + + + Type + + + + + Can be NULL + + + + + Default value + + + + + Length + + + + + DlgHelpEdition + + + Help editor + + + + + about:blank + + + + + Select element to edit + + + + + Element description + + + + + DlgHistory + + + History and log + + + + + DlgImportVector + + + Import vector layer + + + + + Input + + + + + ... + + + + + Update options + + + + + Output table + + + + + Schema + + + + + Table + + + + + Action + + + + + Create new table + + + + + Drop existing one + + + + + Append data into table + + + + + Options + + + + + Primary key + + + + + Geometry column + + + + + Source SRID + + + + + Target SRID + + + + + Encoding + + + + + Create single-part geometries instead of multi-part + + + + + Create spatial index + + + + + DlgModeler + + + SEXTANTE modeler + + + + + Inputs + + + + + Algorithms + + + + + Enter algorithm name to filter list + + + + + Enter model name here + + + + + Enter group name here + + + + + DlgResults + + + Results + + + + + about:blank + + + + + DlgSqlWindow + + + SQL window + + + + + SQL query: + + + + + &Execute (F5) + + + + + F5 + + + + + &Clear + + + + + Result: + + + + + Load as new layer + + + + + Column with unique +integer values + + + + + Geometry column + + + + + Retrieve +columns + + + + + Layer name (prefix) + + + + + Type + + + + + Vector + + + + + Raster + + + + + Load now! + + + + + <html><head/><body><p>Avoid selecting feature by id. Sometimes - especially when running expensive queries/views - fetching the data sequentially instead of fetching features by id can be much quicker.</p></body></html> + + + + + Avoid selecting by feature id + + + + Sorry + + + + You must fill the required fields: +geometry column - column with unique integer values + + + + + DlgTableProperties + + + Table properties + + + + + Columns + + + + + Table columns: + + + + + Add column + + + + + Add geometry column + + + + + Edit column + + + + + Delete column + + + + + Constraints + + + + + Primary, foreign keys, unique and check constraints: + + + + + Add primary key / unique + + + + + Delete constraint + + + + + Indexes + + + + + Indexes defined for this table: + + + + + Add index + + + + + Add spatial index + + + + + Delete index + + + + + DlgVersioning + + + Add versioning support to a table + + + + + Table is expected to be empty, with a primary key. + + + + + Schema + + + + + Table + + + + + create a view with current content (<TABLE>_current) + + + + + New columns + + + + + Prim. key + + + + + id_hist + + + + + Start time + + + + + time_start + + + + + End time + + + + + time_end + + + + + SQL to be executed: + + + + + GdalTools + + The process failed to start. Either the invoked program is missing, or you may have insufficient permissions to invoke the program. + + + + The process crashed some time after starting successfully. + + + + An unknown error occurred. + + + + &Input directory + + + + &Output directory + + + + The selected file is not a supported OGR format + + + + Plugin error + + + + Unable to load %1 plugin. +The required "%2" module is missing. +Install it and try again. + + + + Quantum GIS version detected: + + + + This version of Gdal Tools requires at least QGIS version 1.0.0 +Plugin will not be enabled. + + + + Projections + + + + Warp (Reproject) + + + + Warp an image into a new coordinate system + + + + Assign projection + + + + Add projection info to the raster + + + + Extract projection + + + + Extract projection information from raster(s) + + + + Conversion + + + + Rasterize (Vector to raster) + + + + Burns vector geometries into a raster + + + + Polygonize (Raster to vector) + + + + Produces a polygon feature layer from a raster + + + + Translate (Convert format) + + + + Converts raster data between different formats + + + + RGB to PCT + + + + Convert a 24bit RGB image to 8bit paletted + + + + PCT to RGB + + + + Convert an 8bit paletted image to 24bit RGB + + + + Extraction + + + + Contour + + + + Builds vector contour lines from a DEM + + + + Clipper + + + + Analysis + + + + Sieve + + + + Removes small raster polygons + + + + Near black + + + + Convert nearly black/white borders to exact value + + + + Fill nodata + + + + Fill raster regions by interpolation from edges + + + + Proximity (Raster distance) + + + + Produces a raster proximity map + + + + Grid (Interpolation) + + + + Create raster from the scattered data + + + + DEM (Terrain models) + + + + Tool to analyze and visualize DEMs + + + + Miscellaneous + + + + Build Virtual Raster (Catalog) + + + + Builds a VRT from a list of datasets + + + + Merge + + + + Build a quick mosaic from a set of images + + + + Information + + + + Lists information about raster dataset + + + + Build overviews (Pyramids) + + + + Builds or rebuilds overview images + + + + Tile index + + + + Build a shapefile as a raster tileindex + + + + GdalTools settings + + + + Various settings for Gdal Tools + + + + + GdalToolsAboutDialog + + + About Gdal Tools + + + + + GDAL Tools + + + + + Version x.x-xxxxxx + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p></body></html> + + + + + Web + + + + + Close + + + + + GdalToolsBaseBatchWidget + + Finished + + + + Operation completed. + + + + Warning + + + + The following files were not created: +%1 + + + + + GdalToolsBaseDialog + + Warning + + + + The command is still running. +Do you want terminate it anyway? + + + + Invalid parameters. + + + + + GdalToolsBasePluginWidget + + Warning + + + + No output file created. + + + + Finished + + + + Processing completed. + + + + %1 not created. + + + + + GdalToolsDialog + + + Dialog + + + + + &Load into canvas when finished + + + + + + Edit + + + + + + Reset + + + + + Extract projection + + + + + Batch mode (for processing whole directory) + + + + + &Input file + + + + + Recurse subdirectories + + + + + Create also prj file + + + + Select the input file for Rasterize + + + + Select the raster file to save the results to + + + + Output size required + + + + The output file doesn't exist. You must set up the output size to create it. + + + + Select the input file for Polygonize + + + + Select where to save the Polygonize output + + + + Select the input file for Contour + + + + Select where to save the Contour output + + + + Select the input file for Translate + + + + Select the input directory with files to Translate + + + + Select the output directory to save the results to + + + + Translate - srcwin + + + + Image coordinates (pixels) must be integer numbers. + + + + Translate - prjwin + + + + Image coordinates (geographic) must be numbers. + + + + Select the input file for convert + + + + Select the input directory with files for convert + + + + Select the files to Merge + + + + Error retrieving the extent + + + + GDAL was unable to retrieve the extent from any file. +The "Use intersected extent" option will be unchecked. + + + + Empty extent + + + + The computed extent is empty. +Disable the "Use intersected extent" option to have a nonempty output. + + + + Select where to save the Merge output + + + + Select the input directory with files to Merge + + + + Select the input file for Sieve + + + + Select the file to analyse + + + + Select the input directory with files to Assign projection + + + + Convert paletted image to RGB + + + + Warning + + + + Warning: CRS information for all raster in subfolders will be rewritten. Are you sure? + + + + Finished + + + + Processing completed. + + + + %1 not created. + + + + Assign projection + + + + This raster already found in map canvas + + + + Select the input file for Grid + + + + Select the input file for Near Black + + + + Select the files for VRT + + + + Select where to save the VRT + + + + VRT (*.vrt) + + + + Select the input directory with files for VRT + + + + Select the input directory with raster files + + + + Select where to save the TileIndex output + + + + Copy + + + + Copy all + + + + Select the input file for Warp + + + + Select the mask file + + + + Select the input directory with files to Warp + + + + Select the files to analyse + + + + Select the input directory with files + + + + Select the file for DEM + + + + Select the color configuration file + + + + Select the input file for Proximity + + + + Select the input file + + + + + GdalToolsExtentSelector + + + Select the extent by drag on canvas + + + + + or change the extent coordinates + + + + + + x + + + + + + y + + + + + 2 + + + + + 1 + + + + + Re-Enable + + + + + GdalToolsInOutSelector + + + Select... + + + + + GdalToolsOptionsTable + + + Name + + + + + Value + + + + + Add + + + + + Remove + + + + + GdalToolsSettingsDialog + + + Gdal Tools settings + + + + + Path to the GDAL executables + + + + + + + + + Browse + + + + + Path to the GDAL python modules + + + + + GDAL help path + + + + + GDAL data path + + + + + GDAL driver path + + + + A list of colon-separated (Linux and MacOS) or +semicolon-separated (Windows) paths to both binaries +and python executables. + +MacOS users usually need to set it to something like +/Library/Frameworks/GDAL.framework/Versions/1.8/Programs + + + + A list of colon-separated (Linux and MacOS) or +semicolon-separated (Windows) paths to python modules. + + + + Useful to open local GDAL documentation instead of online help +when pressing on the tool dialog's Help button. + + + + Select directory with GDAL executables + + + + Select directory with GDAL python modules + + + + Select directory with the GDAL documentation + + + + + GdalToolsWidget + + + Build Virtual Raster (Catalog) + + + + + Use visible raster layers for input + + + + + + Choose input directory instead of files + + + + + + &Input files + + + + + + + + Recurse subdirectories + + + + + + + + + + + + + + + + &Output file + + + + + &Resolution + + + + + Highest + + + + + Average + + + + + Lowest + + + + + &Source No Data + + + + + Se&parate + + + + + Allow projection difference + + + + + Clipper + + + + + + &No data value + + + + + + + &Input file (raster) + + + + + Clipping mode + + + + + + Extent + + + + + + + Mask layer + + + + + Create an output alpha band + + + + + Contour + + + + + &Output file for contour lines (vector) + + + + + I&nterval between contour lines + + + + + &Attribute name + + + + + If not provided, no elevation attribute is attached. + + + + + ELEV + + + + + Convert RGB image to paletted + + + + + + + + + + Batch mode (for processing whole directory) + + + + + + + + + + + + + &Input file + + + + + Number of colors + + + + + Band to convert + + + + + DEM (Terrain models) + + + + + &Input file (DEM raster) + + + + + &Band + + + + + Compute &edges + + + + + &Mode + + + + + Hillshade + + + + + Slope + + + + + Aspect + + + + + Color relief + + + + + TRI (Terrain Ruggedness Index) + + + + + TPI (Topographic Position Index) + + + + + Roughness + + + + + Use Zevenbergen&&Thorne formula (instead of the Horn's one) + + + + + Z factor (vertical exaggeration) + + + + + + Scale (ratio of vert. units to horiz.) + + + + + Azimuth of the light + + + + + Altitude of the light + + + + + Slope expressed as percent (instead of as degrees) + + + + + Return trigonometric angle (instead of azimuth) + + + + + Return 0 for flat (instead of -9999) + + + + + Color configuration file + + + + + Matching mode + + + + + Exact color (otherwise "0,0,0,0" RGBA) + + + + + Nearest color + + + + + Add alpha channel + + + + + + + &Creation Options + + + + + Fill Nodata + + + + + + &Input Layer + + + + + + Output format + + + + + Search distance + + + + + Smooth iterations + + + + + Band to operate on + + + + + Validity mask + + + + + Do not use the default validity mask + + + + + Grid (Interpolation) + + + + + &Z Field + + + + + &Algorithm + + + + + Inverse distance to a power + + + + + Moving average + + + + + Nearest neighbor + + + + + Data metrics + + + + + Power + + + + + Smoothing + + + + + + + + Radius1 + + + + + + + + Radius2 + + + + + Max points + + + + + + + Min points + + + + + + + + Angle + + + + + + + + + No data + + + + + Metrics + + + + + Minimum + + + + + Maximum + + + + + Range + + + + + + Resize + + + + + + + Width + + + + + + + Height + + + + + Info + + + + + Raster info + + + + + Suppress GCP printing + + + + + Suppress metadata printing + + + + + Merge + + + + + Layer stack + + + + + Use intersected extent + + + + + Grab pseudocolor table from the first image + + + + + Near Black + + + + + How &far from black (or white) + + + + + Search for nearly &white (255) pixels instead of black ones + + + + + Build overviews (Pyramids) + + + + + Resampling method + + + + + nearest + + + + + average + + + + + gauss + + + + + cubic + + + + + average_mp + + + + + average_magphase + + + + + mode + + + + + Levels (space delimited) + + + + + Remove all overviews. + + + + + Clean + + + + + In order to generate external overview (for GeoTIFF especially). + + + + + Open in read-only mode + + + + + Create external overviews in TIFF format, compressed using JPEG. + + + + + Overviews in TIFF format with JPEG compression + + + + + + For JPEG compressed external overviews, +the JPEG quality can be set. + + + + + JPEG Quality (1-100) + + + + + Alternate overview format using Erdas Imagine format, +placing the overviews in an associated .aux file +suitable for direct use with Imagine,ArcGIS, GDAL. + + + + + Use Imagine format (.aux file) + + + + + Polygonize (Raster to vector) + + + + + &Output file for polygons (shapefile) + + + + + &Field name + + + + + DN + + + + + Use mask + + + + + Assign projection + + + + + WARNING: current projection definition will be cleared + + + + + Desired SRS + + + + + Output will be: +- new GeoTiff if input file is not GeoTiff +- overwritten if input is GeoTiff + + + + + + + + Select... + + + + + Proximity (Raster distance) + + + + + &Values + + + + + &Dist units + + + + + GEO + + + + + PIXEL + + + + + &Max dist + + + + + &No data + + + + + &Fixed buf val + + + + + + 0 + + + + + Rasterize (Vector to raster) + + + + + &Input file (shapefile) + + + + + &Attribute field + + + + + &Output file for rasterized vectors (raster) + + + + + New size (required if output file doens't exist) + + + + + Sieve + + + + + &Threshold + + + + + &Pixel connections + + + + + 4 + + + + + 8 + + + + + Raster tile index + + + + + Input directory + + + + + Output shapefile + + + + + Tile index field + + + + + location + + + + + Write absolute path + + + + + Skip files with different projection ref + + + + + Translate (Convert format) + + + + + + &Target SRS + + + + + + Percentage to resize image. This will change pixel size/image resolution accordingly: 25% will create an image with pixels 4x larger. + + + + + Outsize + + + + + % + + + + + + Assign a specified nodata value to output bands. + + + + + + To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands. +Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets. +The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a color table that only contains gray levels to a gray indexed dataset. + + + + + Expand + + + + + Gray + + + + + RGB + + + + + RGBA + + + + + + Selects a subwindow from the source image for copying based on pixel/line location. (Enter Xoff Yoff Xsize Ysize) + + + + + Srcwin + + + + + + Selects a subwindow from the source image for copying (like -srcwin) but with the corners given in georeferenced coordinates. (Enter ulx uly lrx lry) + + + + + Prjwin + + + + + Copy all subdatasets of this file to individual output files. Use with formats like HDF or OGDI that have subdatasets. + + + + + Sds + + + + + Warp (Reproject) + + + + + &Source SRS + + + + + &Resampling method + + + + + Near + + + + + Bilinear + + + + + Cubic + + + + + Cubic spline + + + + + Lanczos + + + + + No data values + + + + + &Memory used for caching + + + + + MB + + + + + Use m&ultithreaded warping implementation + + + + &Output directory for contour lines (shapefile) + + + + + GeometryDialog + + Merge all + + + + Geometry + + + + Please specify input vector layer + + + + Please specify output shapefile + + + + Please specify valid tolerance value + + + + Please specify valid UID field + + + + Singleparts to multipart + + + + Output shapefile + + + + Multipart to singleparts + + + + Extract nodes + + + + Polygons to lines + + + + Input polygon vector layer + + + + Export/Add geometry columns + + + + Input vector layer + + + + Layer CRS + + + + Project CRS + + + + Ellipsoid + + + + Polygon centroids + + + + Output point shapefile + + + + Delaunay triangulation + + + + Input point vector layer + + + + Voronoi polygon + + + + Buffer region + + + + Lines to polygons + + + + Input line vector layer + + + + Polygon from layer extent + + + + Input layer + + + + Output polygon shapefile + + + + Unable to delete existing shapefile. + + + + Currently QGIS doesn't allow simultaneous access from + different threads to the same datasource. Make sure your layer's + attribute tables are closed. Continue? + + + + Cancel + + + + Error processing specified tolerance! +Please choose larger tolerance... + + + + Unable to delete incomplete shapefile. + + + + At least two features must have same attribute value! +Please choose another field... + + + + One or more features in the output layer may have invalid geometry, please check using the check validity tool + + + + + Created output shapefile: +%1 +%2 + +Would you like to add the new layer to the TOC? + + + + Error loading output shapefile: +%1 + + + + Layer '%1' updated + + + + Error writing output shapefile. + + + + + GeoprocessingDialog + + Dissolve all + + + + Geoprocessing + + + + Please specify an input layer + + + + Please specify a difference/intersect/union layer + + + + Please specify valid buffer value + + + + Please specify dissolve field + + + + Please specify output shapefile + + + + No features selected, please uncheck 'Use selected' or make a selection + + + + Buffer(s) + + + + Create single minimum convex hull + + + + Create convex hulls based on input field + + + + Convex hull(s) + + + + Dissolve + + + + Difference layer + + + + Difference + + + + Intersect layer + + + + Intersect + + + + Symetrical difference + + + + Clip layer + + + + Clip + + + + Union layer + + + + Union + + + + Unable to delete existing shapefile. + + + + Cancel + + + + Close + + + + No output created. File creation error: +%1 + + + + +Warnings: + + + + +Some output geometries may be missing or invalid. + +Would you like to add the new layer anyway? + + + + + +Would you like to add the new layer to the TOC? + + + + +Input CRS error: Different input coordinate reference systems detected, results may not be as expected. + + + + +Input CRS error: One or more input layers missing coordinate reference information, results may not be as expected. + + + + +Feature geometry error: One or more output features ignored due to invalid geometry. + + + + +GEOS geoprocessing error: One or more input features have invalid geometry. + + + + Created output shapefile: +%1 +%2%3 + + + + Error loading output shapefile: +%1 + + + + + GlobePlugin + + + Launch Globe + + + + + Globe Settings + + + + + Unload Globe + + + + + Overlay data on a 3D globe + + + + + Settings for 3D globe + + + + + Unload globe + + + + + + + &Globe + + + + + Heatmap + + + Heatmap + + + + + Creates a heatmap raster for the input point vector. + + + + + + &Heatmap + + + + + GDAL driver error + + + + + Cannot open the driver for the specified format + + + + + Raster update error + + + + + Could not open the created raster for updating. The heatmap was not generated. + + + + + Point layer error + + + + + Could not identify the vector data provider. + + + + + Heatmap generation aborted + + + + + QGIS will now load the partially-computed raster. + + + + + HeatmapGui + + + Save Heatmap as: + + + + + No valid layers found! + + + + + Advanced options cannot be enabled. + + + + + Invalid output filename + + + + + Please enter a valid output file path and name. + + + + + Layer not found + + + + + Layer %1 not found. + + + + + HeatmapGuiBase + + + Heatmap Plugin + + + + + Input Point Vector + + + + + Output Raster + + + + + ... + + + + + Output Format + + + + + Radius + + + + + 10 + + + + + + meters + + + + + + map units + + + + + Decay Ratio + + + + + 0.1 + + + + + Advanced + + + + + Row + + + + + Cell Size X + + + + + Column + + + + + Cell Size Y + + + + + Use Radius from field + + + + + Use Weight from field + + + + + Help + + + Dialog + + + + + about:blank + + + + + HelpEditionDialog + + Outputs + + + + + HistoryDialog + + Clear + + + + Clear history and log + + + + + LayerPropertiesWidget + + + Form + + + + + Symbol layer type + + + + + This layer doesn't have any editable properties + + + + + MainWindow + + + &Edit + + + + + &File + + + + + &Open Recent Projects + + + + + Print Composers + + + + + New Project From Template + + + + + &View + + + + + Select + + + + + Measure + + + + + &Decorations + + + + + &Layer + + + + + New + + + + + &Plugins + + + + + &Help + + + + + &Settings + + + + + &Raster + + + + + File + + + + + Manage Layers + + + + + Digitizing + + + + + Advanced Digitizing + + + + + Map Navigation + + + + + Attributes + + + + + Plugins + + + + + Help + + + + + Raster + + + + + Label + + + + + Vector + + + + + Database + + + + + Web + + + + + &New Project + + + + + Ctrl+N + + + + + &Open Project... + + + + + Ctrl+O + + + + + &Save Project + + + + + Ctrl+S + + + + + Save Project &As... + + + + + Ctrl+Shift+S + + + + + Save as Image... + + + + + &New Print Composer + + + + + Ctrl+P + + + + + Composer Manager... + + + + + Exit + + + + + Ctrl+Q + + + + + &Undo + + + + + Ctrl+Z + + + + + &Redo + + + + + Ctrl+Shift+Z + + + + + Cut Features + + + + + Ctrl+X + + + + + Copy Features + + + + + Ctrl+C + + + + + Paste Features + + + + + Ctrl+V + + + + + Add Feature + + + + + Ctrl+. + + + + + Move Feature(s) + + + + + Reshape Features + + + + + Split Features + + + + + Delete Selected + + + + + Add Ring + + + + + Add Part + + + + + Simplify Feature + + + + + Delete Ring + + + + + Delete Part + + + + + Merge Selected Features + + + + + Merge Attributes of Selected Features + + + + + Node Tool + + + + + Rotate Point Symbols + + + + + Snapping Options... + + + + + Pan Map + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Select Single Feature + + + + + Select Features by Rectangle + + + + + Select Features by Polygon + + + + + Select Features by Freehand + + + + + Select Features by Radius + + + + + Deselect Features from All Layers + + + + + Identify Features + + + + + Ctrl+Shift+I + + + + + Measure Line + + + + + + Ctrl+Shift+M + + + + + Measure Area + + + + + Ctrl+Shift+J + + + + + Measure Angle + + + + + Zoom Full + + + + + Ctrl+Shift+F + + + + + Zoom to Layer + + + + + Zoom to Selection + + + + + Ctrl+J + + + + + Zoom Last + + + + + Zoom Next + + + + + Zoom Actual Size + + + + + Zoom to Native Pixel Resolution + + + + + Map Tips + + + + + Show information about a feature when the mouse is hovered over it + + + + + New Bookmark... + + + + + Ctrl+B + + + + + Show Bookmarks + + + + + Ctrl+Shift+B + + + + + Refresh + + + + + Ctrl+R + + + + + Text Annotation + + + + + Form Annotation + + + + + Move Annotation + + + + + Labeling + + + + + Layer Labeling Options + + + + + New Shapefile Layer... + + + + + Ctrl+Shift+N + + + + + New SpatiaLite Layer ... + + + + + Ctrl+Shift+A + + + + + Raster calculator ... + + + + + Add Vector Layer... + + + + + Ctrl+Shift+V + + + + + Add Raster Layer... + + + + + Ctrl+Shift+R + + + + + Add PostGIS Layers... + + + + + Ctrl+Shift+D + + + + + Add SpatiaLite Layer... + + + + + Ctrl+Shift+L + + + + + Add MSSQL Spatial Layer... + + + + + Add WMS Layer... + + + + + Ctrl+Shift+W + + + + + Open Attribute Table + + + + + Toggle Editing + + + + + Toggles the editing state of the current layer + + + + + Save Edits + + + + + Save edits to current layer, but continue editing + + + + + Save As... + + + + + Save Selection as Vector File... + + + + + Remove Layer(s) + + + + + Ctrl+D + + + + + Set CRS of Layer(s) + + + + + Ctrl+Shift+C + + + + + Set Project CRS from Layer + + + + + Properties... + + + + + Query... + + + + + Add to Overview + + + + + Ctrl+Shift+O + + + + + Add All to Overview + + + + + Remove All from Overview + + + + + Show All Layers + + + + + Ctrl+Shift+U + + + + + Hide All Layers + + + + + Ctrl+Shift+H + + + + + Manage Plugins... + + + + + Toggle Full Screen Mode + + + + + Ctrl+F + + + + + Project Properties... + + + + + Ctrl+Shift+P + + + + + Options... + + + + + Custom CRS... + + + + + Configure shortcuts... + + + + + Local Histogram Stretch + + + + + Stretch histogram of active raster to view extents + + + + + Help Contents + + + + + F1 + + + + + API documentation + + + + + QGIS Home Page + + + + + Ctrl+H + + + + + Check QGIS Version + + + + + Check if your QGIS version is up to date (requires internet access) + + + + + About + + + + + QGIS Sponsors + + + + + + Move Label + + + + + Rotate Label + + + + + Rotate Label +Ctl (Cmd) increments by 15 deg. + + + + + Change Label + + + + + Style Manager... + + + + + Python Console + + + + + Full histogram stretch + + + + + Stretch Histogram to Full Dataset + + + + + Customization... + + + + + mActionCatchForCustomization + + + + + This is here just to avoid shortcut conflicts, the shortcut is caught in QgsCustomization + + + + + Ctrl+M + + + + + Embed Layers and Groups... + + + + + Embed layers and groups from other project files + + + + + &Copyright Label + + + + + Creates a copyright label that is displayed on the map canvas. + + + + + &North Arrow + + + + + "Creates a north arrow that is displayed on the map canvas" + + + + + &Scale Bar + + + + + + Creates a scale bar that is displayed on the map canvas + + + + + Add WFS Layer... + + + + + Add WFS Layer + + + + + Feature Action + + + + + Run Feature Action + + + + + + Pan Map to Selection + + + + + + Touch zoom and pan + + + + + Offset Curve + + + + + Copy style + + + + + Paste style + + + + + Add WCS Layer... + + + + + &Grid + + + + + Grid + + + + + Pin/Unpin Labels + + + + + Pin/Unpin Labels +Click or marquee on label to pin +Shift unpins, Ctl (Cmd) toggles state +Acts on all editable layers + + + + + + Highlight Pinned Labels + + + + + + New Blank Project + + + + + Local Cumulative Cut Stretch + + + + + Local cumulative cut stretch using current extent, default limits and estimated values. + + + + + Full Dataset Cumulative Cut Stretch + + + + + Cumulative cut stretch using full dataset extent, default limits and estimated values. + + + + + Show/Hide Labels + + + + + Show/Hide Labels +Click or marquee on feature to show label +Shift+click or marquee on label to hide it +Acts on currently active editable layer + + + + + + Html Annotation + + + + + + Duplicate Layer(s) + + + + + SVG annotation + + + + + + Save Edits for All Layers + + + + + Save edits for all layers, but continue editing + + + + + ModelerDialog + + Edit model help + + + + Run + + + + Execute current model + + + + Open + + + + Open existing model + + + + Save + + + + Save current model + + + + Search... + + + + Warning + + + + Please enter group and model names before saving + + + + Save Model + + + + SEXTANTE models (*.model) + + + + Model saved + + + + Model was correctly saved. + + + + Open Model + + + + Could not open model + + + + The selected model could not be loaded. +Wrong line: %1 + + + + Parameters + + + + + OracleConnectGuiBase + + + Create Oracle Connection + + + + + Name + + + + + Name of the new connection + + + + + Database instance + + + + + Username + + + + + Password + + + + + Save Password + + + + + OsmAddRelationDlg + + + Create OSM relation + + + + + Relation type: + + + + + Show type description + + + + + + Shows brief description of selected relation type. + + + + + + + + + ... + + + + + Properties + + + + + Generate tags + + + + + + Fills tag table with tags that are typical for relation of specified type. + + + + + Remove all selected tags + + + + + + Removes all selected tags. + + + + + Members + + + + + Select member on map + + + + + + Starts process of selecting next relation member on map. + + + + + Remove all selected members + + + + + + Removes all selected members. + + + + + Create + + + + + Cancel + + + + Save + + + + Edit OSM relation + + + + for grouping boundaries and marking enclaves / exclaves + + + + to put holes into areas (might have to be renamed, see article) + + + + any kind of turn restriction + + + + like bus routes, cycle routes and numbered highways + + + + traffic enforcement devices; speed cameras, redlight cameras, weight checks, ... + + + + OSM Information + + + + + OsmDownloadDlg + + + Download OSM data + + + + + Extent + + + + + Latitude: + + + + + + From + + + + + + To + + + + + Longitude: + + + + + <nothing> + + + + + + ... + + + + + Download to: + + + + + Open data automatically after download + + + + + Replace current data (current layer will be removed) + + + + + Use custom renderer + + + + + Download + + + + + Cancel + + + + OSM Download + + + + Unable to save the file %1: %2. + + + + Waiting for OpenStreetMap server ... + + + + Download process failed. OpenStreetMap server response: %1 - %2 + + + + Check your internet connection + + + + OSM Download Error + + + + Download failed: %1. + + + + Choose file to save + + + + OSM Files (*.osm) + + + + Getting data + + + + The OpenStreetMap server you are downloading OSM data from (~ api.openstreetmap.org) has fixed limitations of how much data you can get. As written at <http://wiki.openstreetmap.org/wiki/Getting_Data> neither latitude nor longitude extent of downloaded region can be larger than 0.25 degrees. Note that Quantum GIS allows you to specify any extent you want, but OpenStreetMap server will reject all request that won't satisfy downloading limitations. + + + + Both extents are too large! + + + + Latitude extent is too large! + + + + Longitude extent is too large! + + + + OK! Area is probably acceptable to server. + + + + + OsmFeatureDW + + + OSM Feature + + + + + + + + + + + + + + + + + + + ... + + + + + + + Identify feature + + + + + + + Move feature + + + + + Create point + + + + + Create line + + + + + Create polygon + + + + + Create relation + + + + + + + Undo + + + + + + + Redo + + + + + + + Show/Hide OSM Edit History + + + + + Feature: + + + + + TYPE, ID: + + + + + CREATED: + + + + + USER: + + + + + + + unknown + + + + + + + Remove this feature + + + + + Properties + + + + + + + Remove selected tags + + + + + Relations + + + + + + + Add relation + + + + + + + Edit relation + + + + + + + Remove relation + + + + + Relation tags: + + + + + 1 + + + + + Relation members: + + + + OSM Plugin + + + + The 'Create OSM Relation' dialog was closed automatically because current OSM database was changed. + + + + OSM Feature Dock Widget + + + + Choose OSM feature first. + + + + Choose relation for editing first. + + + + Snapping ON. Hold Ctrl to disable it. + + + + Hide OSM Edit History + + + + Show OSM Edit History + + + + + OsmImportDlg + + + Import data to OSM + + + + + In this dialog you can import a layer loaded in QGIS into active OSM data. + + + + + Layer + + + + + Import only current selection + + + + Layer doesn't exist + + + + The selected layer doesn't exist anymore! + + + + Importing features... + + + + Cancel + + + + Import + + + + Import has been completed. + + + + + OsmLoadDlg + + + Load OSM + + + + + OpenStreetMap file to load: + + + + + ... + + + + + Add columns for tags: + + + + + Use custom renderer + + + + + Replace current data (current layers will be removed) + + + + Choose an Open Street Map file + + + + OSM Files (*.osm) + + + + OSM Load + + + + Please enter path to OSM data file. + + + + Path to OSM file is invalid: %1. + + + + Error + + + + Layers of OSM file "%1" are loaded already. + + + + Failed to load polygon layer. + + + + Failed to load line layer. + + + + Failed to load point layer. + + + + Could not connect to setRenderer signal. + + + + Failed to load layers: %1 + + + + + OsmPlugin + + Load OSM from file + + + + Load OpenStreetMap from file + + + + Import data from a layer + + + + Import data from a layer to OpenStreetMap + + + + Save OSM to file + + + + Save OpenStreetMap to file + + + + Download OSM data + + + + Download OpenStreetMap data + + + + Upload OSM data + + + + Upload OpenStreetMap data + + + + Show/Hide OSM Feature Manager + + + + Show/Hide OpenStreetMap Feature Manager + + + + Sorry + + + + You don't have OSM provider installed! + + + + OSM Save to file + + + + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. +Please change this situation first, because OSM Plugin doesn't know what to save. + + + + OSM Upload + + + + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. +Please change this situation first, because OSM Plugin doesn't know what to upload. + + + + OSM Import + + + + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. +Please change this situation first, because OSM Plugin doesn't know what layer will be destination of the import. + + + + There are currently no available vector layers. + + + + + OsmSaveDlg + + + Save OSM + + + + + Where to save: + + + + + ... + + + + + Features to save: + + + + + Points + + + + + Lines + + + + + Polygons + + + + + Relations + + + + + Tags + + + + Choose an Open Street Map file + + + + OSM Files (*.osm) + + + + Save OSM to file + + + + Unable to save the file %1: %2. + + + + Initializing... + + + + Saving nodes... + + + + Saving lines... + + + + Saving polygons... + + + + Saving relations... + + + + + OsmUndoRedoDW + + + OSM Edit History + + + + + + + Clear all + + + + + + + ... + + + + + + + Undo + + + + + + + Redo + + + + + OsmUploadDlg + + + Upload OSM data + + + + + Ready for upload + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + Comment on your changes: + + + + + OSM account + + + + + Username: + + + + + Password: + + + + + Show password + + + + + Save password + + + + Upload + + + + OSM Upload + + + + Uploading data... + + + + Node addition failed. + + + + Node update failed. + + + + Node deletion failed. + + + + Way addition failed. + + + + Way update failed. + + + + Way deletion failed. + + + + Relation addition failed. + + + + Relation update failed. + + + + Relation deletion failed. + + + + Connection to OpenStreetMap server cannot be established. Please check your proxy settings, firewall settings and try again. + + + + Changeset closing failed. + + + + Upload process failed. OpenStreetMap server response: %1 - %2. + + + + Authentication failed. Please try again with correct login and password. + + + + Setting host failed. + + + + Setting user and password failed. + + + + Setting proxy failed. + + + + + PointsInPolygonThread + + point count field + + + + + Python + + An error has occured while executing Python code: + + + + Python version: + + + + QGIS version: + + + + Python path: + + + + Python error + + + + Couldn't load plugin '%1' from ['%2'] + + + + Couldn't load plugin %1 + + + + %1 due an error when calling its classFactory() method + + + + %1 due an error when calling its initGui() method + + + + Error while unloading plugin %1 + + + + + PythonConsole + + Python Console + + + + Clear console + + + + Settings + + + + Import Class + + + + Manage Script + + + + Import Sextante class + + + + Import QgisInterface class + + + + Import PyQt.QtCore class + + + + Import PyQt.QtGui class + + + + Open script file + + + + Save to script file + + + + Run command + + + + Help + + + + + QGis::UnitType + + + meters + + + + + feet + + + + + + + + degrees + + + + + <unknown> + + + + + QObject + + + Interpolating... + + + + + + Abort + + + + + Building triangulation... + + + + + Estimating normal derivatives... + + + + + QGIS starting in non-interactive mode not supported. +You are seeing this message most likely because you have no DISPLAY environment variable set. + + + + + + Deleted vertices + + + + + Moved vertices + + + + + CRS undefined - defaulting to project CRS + + + + + CRS undefined - defaulting to default CRS: %1 + + + + + Reading raster + + + + + No active vector layer + + + + + To select features, you must choose a vector layer by clicking on its name in the legend + + + + + + CRS Exception + + + + + + Selection extends beyond layer's coordinate system. + + + + + Python is not enabled in QGIS. + + + + + + + + + + + + + + + Plugins + + + + + Loaded %1 (package: %2) + + + + + Library name is %1 + + + + + + + Failed to load %1 (Reason: %2) + + + + + Attempting to resolve the classFactory function + + + + + + Loaded %1 (Path: %2) + + + + + Error Loading Plugin + + + + + There was an error loading a plugin.The following diagnostic information may help the QGIS developers resolve the issue: +%1. + + + + + Unable to find the class factory for %1. + + + + + Plugin %1 did not return a valid type and cannot be loaded + + + + + + Python error + + + + + Error when reading metadata of plugin %1 + + + + + Could not open CRS database %1 +Error(%2): %3 + + + + + + CRS + + + + + Generated CRS + A CRS automatically generated from layer info get this prefix for description + + + + + Saved user CRS [%1] + + + + + Imported from GDAL + + + + + Can't open database: %1 + + + + + + Caught a coordinate system exception while trying to transform a point. Unable to calculate line length. + + + + + Caught a coordinate system exception while trying to transform a point. Unable to calculate polygon area or perimeter. + + + + + Caught a coordinate system exception while trying to transform a point. Unable to calculate polygon area. + + + + + + m² + + + + + km² + + + + + ha + + + + + + m + + + + + km + + + + + mm + + + + + cm + + + + + sq ft + + + + + acres + + + + + sq mile + + + + + foot + + + + + feet + + + + + mile + + + + + sq.deg. + + + + + degree + + + + + degrees + + + + + unknown + + + + + day + Note: Word is part matched in code + + + + + days + Note: Word is part matched in code + + + + + week + Note: Word is part matched in code + + + + + weeks + Note: Word is part matched in code + + + + + month + Note: Word is part matched in code + + + + + months + Note: Word is part matched in code + + + + + year + Note: Word is part matched in code + + + + + years + Note: Word is part matched in code + + + + + second + Note: Word is part matched in code + + + + + seconds + Note: Word is part matched in code + + + + + minute + Note: Word is part matched in code + + + + + minutes + Note: Word is part matched in code + + + + + hour + Note: Word is part matched in code + + + + + hours + Note: Word is part matched in code + + + + + Cannot convert '%1' to double + + + + + Cannot convert '%1' to int + + + + + Cannot convert '%1' to DateTime + + + + + Cannot convert '%1' to Date + + + + + Cannot convert '%1' to Time + + + + + Cannot convert '%1' to Interval + + + + + Cannot convert '%1' to boolean + + + + + Invalid regular expression '%1': %2 + + + + + Index is out of range + + + + + + + + + + + + + + + + + Math + + + + + + + + + + + Conversions + + + + + Conditionals + + + + + + + + + + + + + Date and Time + + + + + + + + + + + + + + + + + + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Geometry + + + + + + + + Record + + + + + Special + + + + + + No root node! Parsing failed? + + + + + (no root) + + + + + Unary minus only for numeric values. + + + + + Can't preform /, *, or % on DateTime and Interval + + + + + [unsupported type;%1; value:%2] + + + + + Column '%1' not found + + + + + + + + + + + + + + + + + + + + + + + + + + Exception: %1 + + + + + + + + + + + + + + + + + + + + + + + + + + + GEOS + + + + + GEOS prior to 3.2 doesn't support GEOSInterpolate + + + + + segment %1 of ring %2 of polygon %3 intersects segment %4 of ring %5 of polygon %6 at %7 + + + + + ring %1 with less than four points + + + + + ring %1 not closed + + + + + line %1 with less than two points + + + + + line %1 contains %n duplicate node(s) at %2 + number of duplicate nodes + + + + + + + + segments %1 and %2 of line %3 intersect at %4 + + + + + ring %1 of polygon %2 not in exterior ring + + + + + GEOS error:could not produce geometry for GEOS (check log window) + + + + + + GEOS error:%1 + + + + + + polygon %1 inside polygon %2 + + + + + Unknown geometry type + + + + + Unknown geometry type %1 + + + + + Geometry validation was aborted. + + + + + Geometry has %1 errors. + + + + + Geometry is valid. + + + + + invalid line + + + + + Label + + + + + Console + + + + + + infinite + + + + + + W + + + + + + E + + + + + + S + + + + + + N + + + + + No QGIS data provider plugins found in: +%1 + + + + + + No vector layers can be loaded. Check your QGIS installation + + + + + No Data Providers + + + + + No data provider plugins are available. No vector layers can be loaded + + + + + Unable to instantiate the data provider plugin %1 + + + + + Failed to load %1: %2 + + + + + OGR driver for '%1' not found (OGR error: %2) + + + + + trimming attribute name '%1' to ten significant characters produces duplicate column name. + + + + + creation of data source failed (OGR error:%1) + + + + + creation of layer failed (OGR error:%1) + + + + + + unsupported type for field %1 + + + + + creation of field %1 failed (OGR error: %2) + + + + + created field %1 not found (OGR error: %2) + + + + + Invalid variant type for field %1[%2]: received %3 with type %4 + + + + + + + + + + + + + + + + + OGR + + + + + + + Feature geometry not imported (OGR error: %1) + + + + + Feature creation error (OGR error: %1) + + + + + + Failed to transform a point while drawing a feature of type '%1'. Writing stopped. (Exception: %2) + + + + + + Feature write errors: + + + + + + Stopping after %1 errors + + + + + +Only %1 of %2 features written. + + + + + + Arc/Info ASCII Coverage + + + + + + Atlas BNA + + + + + + Comma Separated Value + + + + + ESRI Shapefile + + + + + + + FMEObjects Gateway + + + + + + GeoJSON + + + + + + GeoRSS + + + + + + Geography Markup Language [GML] + + + + + + Generic Mapping Tools [GMT] + + + + + + GPS eXchange Format [GPX] + + + + + + INTERLIS 1 + + + + + + INTERLIS 2 + + + + + + Keyhole Markup Language [KML] + + + + + Mapinfo TAB + + + + + Mapinfo MIF + + + + + + Microstation DGN + + + + + + S-57 Base file + + + + + + Spatial Data Transfer Standard [SDTS] + + + + + + SQLite + + + + + SpatiaLite + + + + + + AutoCAD DXF + + + + + + Geoconcept + + + + + + ESRI FileGDB + + + + + Unable to load %1 provider + + + + + Provider %1 has no createEmptyLayer method + + + + + Loading of layer failed + + + + + Creation error for features from #%1 to #%2. Provider errors was: +%3 + + + + + Vector import + + + + + Only %1 of %2 features written. + + + + + + + + Reading raster part %1 of %2 + + + + + Building pyramids failed - write access denied + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + + Building pyramids failed. + + + + + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. + + + + + + Building pyramid overviews is not supported on this type of raster. + + + + + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. + + + + + Multiband color + + + + + Paletted + + + + + Singleband gray + + + + + Singleband pseudocolor + + + + + Singleband color data + + + + + + All Ramps + + + + + Single Symbol + + + + + Categorized + + + + + Graduated + + + + + Rule-based + + + + + Point displacement + + + + + Simple line + + + + + Marker line + + + + + Line decoration + + + + + Simple marker + + + + + SVG marker + + + + + Font marker + + + + + Ellipse marker + + + + + Vector Field marker + + + + + Simple fill + + + + + SVG fill + + + + + Centroid fill + + + + + Line pattern fill + + + + + Point pattern fill + + + + + Where is '%1' (original location: %2)? + + + + + QGIS rocks! + + + + + <html>QGIS rocks!</html> + + + + + Raster Histogram + + + + + Pixel Value + + + + + Frequency + + + + + Internal Compass + + + + + Shows a QtSensors compass reading + + + + + Version 0.9 + + + + + Coordinate Capture + + + + + Capture mouse coordinates in different CRS + + + + + + + + + Vector + + + + + + + + + + + + + + + + + Version 0.1 + + + + + + Version 0.2 + + + + + Loads and displays delimited text files containing x,y coordinates + + + + + + + Layers + + + + + Add Delimited Text Layer + + + + + Diagram Overlay (Legacy) + + + + + A plugin for placing diagrams on vector layers + + + + + Version 0.0.1 (Legacy) + + + + + Dxf2Shp Converter + + + + + Converts from dxf to shp file format + + + + + eVis + + + + + An event visualization tool - view images associated with vector features + + + + + + + + Database + + + + + Version 1.1.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Warning + + + + + This tool only supports vector data + + + + + No active layers found + + + + + Georeferencer GDAL + + + + + Georeferencing rasters using GDAL + + + + + + + + + Raster + + + + + Version 3.1.9 + + + + + Fit to a linear transform requires at least 2 points. + + + + + Fit to a Helmert transform requires at least 2 points. + + + + + Fit to an affine transform requires at least 4 points. + + + + + Fitting a projective transform requires at least 4 corresponding points. + + + + + Globe + + + + + Overlay data on a 3D globe + + + + + GPS Tools + + + + + Tools for loading and importing GPS data + + + + + Location: %1 + + + + + + Location: %1<br>Mapset: %2 + + + + + <b>Raster</b> + + + + + Cannot open raster header + + + + + + Rows + + + + + + Columns + + + + + + N-S resolution + + + + + + E-W resolution + + + + + + + North + + + + + + + South + + + + + + + East + + + + + + + West + + + + + Format + + + + + Minimum value + + + + + Maximum value + + + + + Data source + + + + + Data description + + + + + Comments + + + + + Categories + + + + + + <b>Vector</b> + + + + + Points + + + + + Lines + + + + + Boundaries + + + + + Centroids + + + + + Faces + + + + + Kernels + + + + + Areas + + + + + Islands + + + + + + Top + + + + + + Bottom + + + + + yes + + + + + no + + + + + History<br> + + + + + <b>Layer</b> + + + + + Features + + + + + Driver + + + + + Table + + + + + Key column + + + + + <b>Region</b> + + + + + Cannot open region header + + + + + XY + + + + + UTM + + + + + SP + + + + + LL + + + + + Other + + + + + Projection Type + + + + + Zone + + + + + 3D Cols + + + + + 3D Rows + + + + + Depths + + + + + E-W 3D resolution + + + + + N-S 3D resolution + + + + + GRASS + + + + + GRASS layer + + + + + Heatmap + + + + + Creates a Heatmap raster for the input point vector + + + + + Interpolation plugin + + + + + A plugin for interpolation based on vertices of a vector layer + + + + + Version 0.001 + + + + + OfflineEditing + + + + + Allow offline editing and synchronizing with database + + + + + Oracle Spatial GeoRaster + + + + + Access Oracle Spatial GeoRaster + + + + + Raster Terrain Analysis plugin + + + + + A plugin for raster based terrain analysis + + + + + Road graph plugin + + + + + It solves the shortest path problem. + + + + + Processing 1/2 - %p% + + + + + Processing 2/2 - %p% + + + + + Intersects + + + + + Is disjoint + + + + + + + Touches + + + + + + Crosses + + + + + + Within + + + + + + Contains + + + + + Equals + + + + + Overlaps + + + + + Spatial Query Plugin + + + + + A plugin that makes spatial queries on vector layers + + + + + SPIT + + + + + Shapefile to PostgreSQL/PostGIS Import Tool + + + + + SQL Anywhere plugin + + + + + Store vector layers within a SQL Anywhere database + + + + + Zonal statistics plugin + + + + + A plugin to calculate count, sum, mean of rasters for each polygon of a vector layer + + + + + Cannot open GDAL MEM dataset %1: %2 + + + + + Cannot GDALCreateGenImgProjTransformer: + + + + + Cannot inittialize GDALWarpOperation : + + + + + Cannot ChunkAndWarpImage: %1 + + + + + [GDAL] All files (*) + + + + + + GDAL/OGR VSIFileHandler + + + + + This raster file has no bands and is invalid as a raster layer. + + + + + Cannot get GDAL raster band: %1 + + + + + Couldn't open the data source: %1 + + + + + Parse error at line %1 : %2 + + + + + GPS eXchange format provider + + + + + + GRASS plugin + + + + + QGIS couldn't find your GRASS installation. +Would you like to specify path (GISBASE) to your GRASS installation? + + + + + Choose GRASS installation path (GISBASE) + + + + + GRASS data won't be available if GISBASE is not specified. + + + + + GISBASE is not set. + + + + + %1 is not a GRASS mapset. + + + + + Cannot start %1/etc/lock + + + + + Mapset is already in use. + + + + + Temporary directory %1 exists but is not writable + + + + + Cannot create temporary directory %1 + + + + + Cannot create %1 + + + + + Cannot remove mapset lock: %1 + + + + + Cannot open vector %1 in mapset %2 on level 2 (topology not available, try to rebuild topology using v.build module). + + + + + Cannot open vector %1 in mapset %2 + + + + + Cannot read raster map region + + + + + Cannot read vector map region + + + + + Cannot read region + + + + + Cannot open GISRC file + + + + + Cannot start module + + + + + command: %1 %2 + + + + + Cannot run module + + + + + command: %1 %2<br>%3<br>%4 + + + + + Cannot get projection + + + + + + Cannot get raster extent + + + + + Cannot get map info + + + + + Cannot get colors + + + + + Cannot query raster + + + + + + + Cannot draw raster + + + + + Loading of the MSSQL provider failed + + + + + + Unsupported type for field %1 + + + + + + Creation of fields failed + + + + + OGR[%1] error %2: %3 + + + + + Unable to create the datasource. %1 exists and overwrite flag is false. + + + + + Unable to get driver %1 + + + + + Arc/Info Binary Coverage + + + + + DODS + + + + + + ESRI Personal GeoDatabase + + + + + ESRI ArcSDE + + + + + ESRI Shapefiles + + + + + Grass Vector + + + + + Informix DataBlade + + + + + Ingres + + + + + Mapinfo File + + + + + MySQL + + + + + MSSQL + + + + + Oracle Spatial + + + + + ODBC + + + + + OGDI Vectors + + + + + PostgreSQL + + + + + UK. NTF2 + + + + + U.S. Census TIGER/Line + + + + + VRT - Virtual Datasource + + + + + X-Plane/Flightgear + + + + + All files + + + + + Duplicate field (10 significant characters): %1 + + + + + Creating the data source %1 failed: %2 + + + + + Unknown vector type of %1 + + + + + Creation of OGR data source %1 failed: %2 + + + + + creation of field %1 failed + + + + + Couldn't create file %1.qpj + + + + + no result buffer + + + + + + + + Connection to database failed + + + + + Creation of data source %1 failed: +%2 + + + + + Loading of the layer %1 failed + + + + + + Unable to delete layer %1: +%2 + + + + + creation of data source %1 failed. %2 + + + + + loading of the layer %1 failed + + + + + creation of fields failed + + + + + Unable to initialize SpatialMetadata: + + + + + + Could not create a new database + + + + + + Unable to activate FOREIGN_KEY constraints [%1] + + + + + Unable to delete table %1 + + + + + + Unable to delete table %1: + + + + + + Couldn't load SIP module. + + + + + + + + Python support will be disabled. + + + + + Couldn't load PyQt4. + + + + + Couldn't load PyQGIS. + + + + + Couldn't load QGIS utils. + + + + + An error occured during execution of following code: + + + + + Python version: + + + + + QGIS version: + + + + + Python path: + + + + + QextSerialPort + + + No Error has occurred + + + + + Invalid file descriptor (port was not opened correctly) + + + + + Unable to allocate memory tables (POSIX) + + + + + Caught a non-blocked signal (POSIX) + + + + + Operation timed out (POSIX) + + + + + The file opened by the port is not a valid device + + + + + The port detected a break condition + + + + + The port detected a framing error (usually caused by incorrect baud rate settings) + + + + + There was an I/O error while communicating with the port + + + + + Character buffer overrun + + + + + Receive buffer overflow + + + + + The port detected a parity error in the received data + + + + + Transmit buffer overflow + + + + + General read operation failure + + + + + General write operation failure + + + + + Unknown error: %1 + + + + + QgisApp + + + &Raster + + + + + Quantum GIS + + + + + Multiple Instances of QgisApp + + + + + Multiple instances of Quantum GIS application object detected. +Please contact the developers. + + + + + + Checking database + + + + + Reading settings + + + + + Setting up the GUI + + + + + Map canvas. This is where raster and vector layers are displayed when added to the map + + + + + GPS Information + + + + + Log Messages + + + + + Quantum GIS - %1 ('%2') + + + + + QGIS starting... + + + + + Checking provider plugins + + + + + Starting Python + + + + + Restoring loaded plugins + + + + + Initializing file filters + + + + + Restoring window state + + + + + + QGIS Ready! + + + + + Minimize + + + + + Ctrl+M + Minimize Window + + + + + Minimizes the active window to the dock + + + + + Zoom + + + + + Toggles between a predefined size and the window size set by the user + + + + + Bring All to Front + + + + + Bring forward all open windows + + + + + + + + + + + + + Error + + + + + Failed to open Python console: + + + + + Panels + + + + + Toolbars + + + + + Window + + + + + &Database + + + + + Vect&or + + + + + &Web + + + + + Progress bar that displays the status of rendering layers and other time-intensive operations + + + + + Toggle extents and mouse position display + + + + + + Coordinate: + + + + + Current map coordinate + + + + + Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved. It also allows editing to set the canvas center to a given position. The format is lat,lon or east,north + + + + + Current map coordinate (lat,lon or east,north) + + + + + Scale + + + + + Current map scale + + + + + Displays the current map scale + + + + + Current map scale (formatted as x:y) + + + + + Stop map rendering + + + + + Render + + + + + When checked, the map layers are rendered in response to map navigation commands and other events. When not checked, no rendering is done. This allows you to add a large number of layers and symbolize them before rendering. + + + + + Toggle map rendering + + + + + This icon shows whether on the fly coordinate reference system transformation is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour. + + + + + CRS status - Click to open coordinate reference system dialog + + + + + Ready + + + + + Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas. + + + + + Overview + + + + + Map legend that displays all the layers currently on the map canvas. Click on the check box to turn a layer on or off. Double click on a layer in the legend to customize its appearance and set other properties. + + + + + Layers + + + + + Control rendering order + + + + + Map layer list that displays all layers in drawing order. + + + + + Layer order + + + + + [ERROR] Can not make qgis.db private copy + + + + + + + Private qgis.db + + + + + Could not open qgis.db + + + + + Migration of private qgis.db failed. +%1 + + + + + Update of view in private qgis.db failed. +%1 + + + + + + < Blank > + + + + + QGIS version + + + + + QGIS code revision + + + + + Compiled against Qt + + + + + Running against Qt + + + + + Compiled against GDAL/OGR + + + + + Running against GDAL/OGR + + + + + GEOS Version + + + + + PostgreSQL Client Version + + + + + + No support. + + + + + SpatiaLite Version + + + + + QWT Version + + + + + PROJ.4 Version + + + + + QScintilla2 Version + + + + + This copy of QGIS writes debugging output. + + + + + %1 doesn't have any layers + + + + + + Invalid Data Source + + + + + %1 is not a valid or recognized data source + + + + + Select zip layers to add... + + + + + Vector + + + + + Select raster layers to add... + + + + + Raster + + + + + Select vector layers to add... + + + + + PostgreSQL + + + + + Cannot get PostgreSQL select dialog from provider. + + + + + %1 is an invalid layer - not loaded + + + + + + + + Invalid Layer + + + + + %1 is an invalid layer and cannot be loaded. + + + + + SpatiaLite + + + + + Cannot get SpatiaLite select dialog from provider. + + + + + MSSQL + + + + + Cannot get MSSQL select dialog from provider. + + + + + WMS + + + + + Cannot get WMS select dialog from provider. + + + + + WCS + + + + + Cannot get WCS select dialog from provider. + + + + + WFS + + + + + Cannot get WFS select dialog from provider. + + + + + Calculating... + + + + + + Abort... + + + + + Choose a QGIS project file to open + + + + + + + QGis files + + + + + Unable to open project + + + + + Security warning: + + + + + project macros have been disabled. + + + + + Enable macros + + + + + Choose a QGIS project file + + + + + + Saved project to: %1 + + + + + + Unable to save project %1 + + + + + Choose a file name to save the QGIS project file as + + + + + Unable to load %1 + + + + + Choose a file name to save the map image as + + + + + Saved map image to %1 + + + + + Labeling + + + + + Please select a vector layer first. + + + + + Layer labeling settings + + + + + Saving done + + + + + Export to vector file has been completed + + + + + Save error + + + + + Export to vector file failed. +Error: %1 + + + + + + No Layer Selected + + + + + To delete features, you must select a vector layer in the legend + + + + + No Vector Layer Selected + + + + + Deleting features only works on vector layers + + + + + Provider does not support deletion + + + + + Data provider does not support deleting features + + + + + + + Layer not editable + + + + + The current layer is not editable. Choose 'Start editing' in the digitizing toolbar. + + + + + Delete features + + + + + Delete %n feature(s)? + number of features to delete + + + + + + + + Features deleted + + + + + Problem deleting features + + + + + A problem occured during deletion of features + + + + + Merging features... + + + + + Abort + + + + + + Composer %1 + + + + + + No active layer + + + + + + No active layer found. Please select a layer in the layer list + + + + + + Active layer is not vector + + + + + + The merge features tool only works on vector layers. Please select a vector layer from the layer list + + + + + + Merging features can only be done for layers in editing mode. To use the merge tool, go to Layer->Toggle editing + + + + + + + Not enough features selected + + + + + + + The merge tool requires at least two selected features + + + + + Merged feature attributes + + + + + + Merge failed + + + + + + An error occured during the merge operation + + + + + Union operation canceled + + + + + + The union operation would result in a geometry type that is not compatible with the current layer and therefore is canceled + + + + + Merged features + + + + + Features cut + + + + + Features pasted + + + + + Cannot copy style: %1 + + + + + Cannot parse style: %1:%2:%3 + + + + + Cannot read style: %1 + + + + + + Could not commit changes to layer %1 + +Errors: %2 + + + + + + Start editing failed + + + + + Provider cannot be opened for editing + + + + + Stop editing + + + + + Do you want to save the changes to layer %1? + + + + + Problems during roll back + + + + + copy + + + + + Plugin layer + + + + + Memory layer + + + + + + Duplicate layer: + + + + + %1 (duplication resulted in invalid layer) + + + + + %1 (%2type unsupported) + + + + + Couldn't load Python support library: %1 + + + + + Couldn't resolve python support library's instance() symbol. + + + + + Python support ENABLED :-) + + + + + There is a new version of QGIS available + + + + + You are running a development version of QGIS + + + + + You are running the current version of QGIS + + + + + Would you like more information? + + + + + + + + QGIS Version Information + + + + + QGIS - Changes since last release + + + + + Unable to get current version information from server + + + + + Connection refused - server may be down + + + + + QGIS server was not found + + + + + Unknown network socket error: %1 + + + + + Unable to communicate with QGIS Version server +%1 + + + + + + To perform a full histogram stretch, you need to have a raster layer selected. + + + + + No Raster Layer Selected + + + + + + Layer is not valid + + + + + The layer %1 is not a valid layer and can not be added to the map + + + + + The layer is not a valid layer and can not be added to the map + + + + + Project has layer(s) in edit mode with unsaved edits, which will NOT be saved! + + + + + Save? + + + + + Do you want to save the current project?%1 + + + + + Current CRS: %1 (OTFR enabled) + + + + + Current CRS: %1 (OTFR disabled) + + + + + Map coordinates for the current view extents + + + + + Map coordinates at mouse cursor position + + + + + Extents: + + + + + Maptips require an active layer + + + + + %n feature(s) selected on layer %1. + number of selected features + + + + + + + + Open a GDAL Supported Raster Data Source + + + + + + Error adding valid layer to map canvas + + + + + + + Raster layer + + + + + %1 is not a supported raster data source + + + + + Unsupported Data Source + + + + + <p>This project file was saved by an older version of QGIS. When saving this project file, QGIS will update it to the latest version, possibly rendering it useless for older versions of QGIS.<p>Even though QGIS developers try to maintain backwards compatibility, some of the information from the old project file might be lost. To improve the quality of QGIS, we appreciate if you file a bug report at %3. Be sure to include the old project file, and state the version of QGIS you used to discover the error.<p>To remove this warning when opening an older project file, uncheck the box '%5' in the %4 menu.<p>Version of the project file: %1<br>Current version of QGIS: %2 + + + + + <tt>Settings:Options:General</tt> + Menu path to setting options + + + + + Warn me when opening a project file saved with an older version of QGIS + + + + + Project file is older + + + + + This project file was saved by an older version of QGIS + + + + + Warning + + + + + This layer doesn't have a properties dialog. + + + + + Authentication required + + + + + Proxy authentication required + + + + + SSL errors occured accessing URL %1: + + + + + + +Always ignore these errors? + + + + + %n SSL errors occured + number of errors + + + + + + + + QgisAppInterface + + + Attributes changed + + + + + QgsAbout + + + About Quantum GIS + + + + + About + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:x-large; font-weight:600;"><span style=" font-size:x-large;">Quantum GIS (QGIS)</span></p></body></html> + + + + + Quantum GIS is licensed under the GNU General Public License + + + + + http://www.gnu.org/licenses + + + + + QGIS Home Page + + + + + Join our user mailing list + + + + + What's New + + + + + Providers + + + + + Developers + + + + + Essen (Germany), Developer meeting 2012 + + + + + Contributors + + + + + Translators + + + + + about:blank + + + + + Donors + + + + + <p>For a list of individuals and institutions who have contributed money to fund QGIS development and other project costs see <a href="http://qgis.org/en/sponsorship/donors.html">http://qgis.org/en/sponsorship/donors.html</a></p> + + + + + Available QGIS Data Provider Plugins + + + + + Available Qt Database Plugins + + + + + Available Qt Image Plugins + + + + + Qt Image Plugin Search Paths <br> + + + + + QgsAddAttrDialog + + + Warning + + + + + Invalid field name. This field name is reserved and cannot be used. + + + + + QgsAddAttrDialogBase + + + Add column + + + + + N&ame + + + + + Comment + + + + + + Type + + + + + Width + + + + + Precision + + + + + QgsAddJoinDialogBase + + + Add vector join + + + + + Join layer + + + + + Join field + + + + + Target field + + + + + Create attribute index on join field + + + + + Cache join layer in virtual memory + + + + + QgsAddTabOrGroup + + + Add tab or group for %1 + + + + + QgsAddTabOrGroupBase + + + Dialog + + + + + Create category + + + + + as + + + + + a tab + + + + + a group in container + + + + + QgsAnnotationWidget + + + Select frame color + + + + + Select background color + + + + + QgsAnnotationWidgetBase + + + Form + + + + + Fixed map position + + + + + Map marker + + + + + Frame width + + + + + Background color + + + + + Frame color + + + + + QgsApplication + + + + + Exception + + + + + unknown exception + + + + + Application state: +QGIS_PREFIX_PATH env var: %1 +Prefix: %2 +Plugin Path: %3 +Package Data Path: %4 +Active Theme Name: %5 +Active Theme Path: %6 +Default Theme Path: %7 +SVG Search Paths: %8 +User DB Path: %9 + + + + + + + + match indentation of application state + + + + + QgsAtlasCompositionWidget + + + + Map %1 + + + + + Expression based filename + + + + + QgsAtlasCompositionWidgetBase + + + Atlas generation + + + + + Atlas options + + + + + Hide the coverage layer when generating the output + + + + + Hidden coverage layer + + + + + Margin around coverage + + + + + Output filename expression + + + + + % + + + + + ... + + + + + Coverage layer + + + + + Fixed scale + + + + + Single file export when possible + + + + + Composer map to use + + + + + Generate an atlas + + + + + QgsAttributeActionDialog + + + Select an action + File dialog window title + + + + + Insert expression + + + + + Missing Information + + + + + To create an attribute action, you must provide both a name and the action to perform. + + + + + Echo attribute's value + + + + + Run an application + + + + + Get feature id + + + + + Selected field's value (Identify features tool) + + + + + Clicked coordinates (Run feature actions tool) + + + + + Open file + + + + + Search on web based on attribute's value + + + + + QgsAttributeActionDialogBase + + + Attribute Actions + + + + + Action list + + + + + This list contains all actions that have been defined for the current layer. Add actions by entering the details in the controls below and then pressing the Add to action list button. Actions can be edited here by double clicking on the item. + + + + + + + Type + + + + + + Name + + + + + + Action + + + + + Capture + + + + + Remove the selected action + + + + + Remove action + + + + + Move the selected action up + + + + + Move up + + + + + Move the selected action down + + + + + Move down + + + + + Add default actions + + + + + Action properties + + + + + Generic + + + + + Python + + + + + Mac + + + + + Windows + + + + + Unix + + + + + Open + + + + + Captures any output from the action + + + + + Captures the standard output or error generated by the action and displays it in a dialog box + + + + + Capture output + + + + + + Enter the name of an action here. The name should be unique (qgis will make it unique if necessary). + + + + + Enter the action name here + + + + + Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters that start with a % and then have the name of a field will be replaced by the value of that field. The special characters %% will be replaced by the value of the field that was selected. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if prefixed with a backslash + + + + + Enter the action command here + + + + + Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters within [% and %] will be evaluated as expression and replaced by its result. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if prefixed with a backslash + + + + + Browse for action + + + + + Click to browse for an action + + + + + Clicking the button will let you select an application to use as the action + + + + + ... + + + + + Inserts an expression into the action + + + + + Insert expression... + + + + + The valid attribute names for this layer + + + + + Inserts the selected field into the action + + + + + Insert field + + + + + Inserts the action into the list above + + + + + Add to action list + + + + + Update the selected action + + + + + Update selected action + + + + + QgsAttributeDialog + + + Error + + + + + Error: %1 + + + + + Attributes - %1 + + + + + QgsAttributeEditor + + + Select a file + + + + + Select a date + + + + + (no selection) + + + + + ... + + + + + QgsAttributeLoadValues + + + Load values from layer + + + + + Layer + + + + + + Description + + + + + + Value + + + + + Select data from attributes in selected layer. + + + + + View All + + + + + QgsAttributeSelectionDialog + + + + + Ascending + + + + + + Descending + + + + + QgsAttributeSelectionDialogBase + + + Select attributes + + + + + Select all + + + + + Clear + + + + + Sorting + + + + + Column + + + + + Ascending + + + + + <b>Attribute</b> + + + + + <b>Alias</b> + + + + + QgsAttributeTableAction + + + Attributes changed + + + + + QgsAttributeTableDelegate + + + Attribute changed + + + + + QgsAttributeTableDialog + + + Attribute Table + + + + + Show selected only + + + + + Search selected only + + + + + Case sensitive + + + + + Opens the search query builder + + + + + Advanced search + + + + + ? + + + + + Close + + + + + Unselect all (Ctrl+U) + + + + + Ctrl+U + + + + + Move selection to top (Ctrl+T) + + + + + Ctrl+T + + + + + Invert selection (Ctrl+R) + + + + + Ctrl+S + + + + + Copy selected rows to clipboard (Ctrl+C) + + + + + Ctrl+C + + + + + Zoom map to the selected rows (Ctrl+J) + + + + + Ctrl+J + + + + + Pan map to the selected rows (Ctrl+P) + + + + + Ctrl+P + + + + + Toggle editing mode (Ctrl+E) + + + + + + Ctrl+E + + + + + Save Edits (Ctrl+S) + + + + + Delete selected features (Ctrl+D) + + + + + ... + + + + + Ctrl+D + + + + + New column (Ctrl+W) + + + + + Ctrl+W + + + + + Delete column (Ctrl+L) + + + + + Ctrl+L + + + + + Add feature + + + + + + + + + + + Open field calculator (Ctrl+I) + + + + + Ctrl+I + + + + + Look for + + + + + in + + + + + Looks for the given value in the given attribute column + + + + + &Search + + + + + Attribute table - %1 (%n Feature(s)) + feature count + + + + + + + + Attribute table - %1 :: %n / %2 feature(s) selected + feature count + + + + + + + + Parsing error + + + + + Evaluation error + + + + + Error during search + + + + + Attribute table - %1 (%n matching features) + matching features + + + + + + + + Attribute table - %1 (No matching features) + + + + + Attribute added + + + + + + Attribute Error + + + + + The attribute could not be added to the layer + + + + + Deleted attribute + + + + + The attribute(s) could not be deleted + + + + + Geometryless feature added + + + + + Run action + + + + + + Open form + + + + + Loading feature attributes... + + + + + Abort + + + + + Attribute table + + + + + %1 features loaded. + + + + + QgsAttributeTableModel + + + feature id + + + + + QgsAttributeTypeDialog + + + + Attribute Edit Dialog + + + + + Simple edit box. This is the default editation widget. + + + + + Displays combo box containing values of attribute used for classification. + + + + + Allows one to set numeric values from a specified range. The edit widget can be either a slider or a spin box. + + + + + Minimum + + + + + Maximum + + + + + Step + + + + + Local minimum/maximum = 0/0 + + + + + The user can select one of the values already used in the attribute. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used. + + + + + + + Editable + + + + + Simplifies file selection by adding a file chooser dialog. + + + + + Combo box with predefined items. Value is stored in the attribute, description is shown in the combo box. + + + + + Load Data from layer + + + + + Value + + + + + Description + + + + + Remove Selected + + + + + Load Data from CSV file + + + + + Combo box with values that can be used within the column's type. Must be supported by the provider. + + + + + An immutable attribute is read-only - the user is not able to modify the contents. + + + + + A hidden attribute will be invisible - the user is not able to see it's contents. + + + + + Representation for checked state + + + + + Representation for unchecked state + + + + + A text edit field that accepts multiple lines will be used. + + + + + A calendar widget to enter a date. + + + + + Layer + + + + + Key column + + + + + Select layer, key column and value column + + + + + Allow null value + + + + + Order by value + + + + + Allow multiple selections + + + + + Value column + + + + + Filter column + + + + + Filter value + + + + + Read-only field that generates a UUID if empty. + + + + + Line edit + + + + + Classification + + + + + Range + + + + + Unique values + + + + + File name + + + + + Value map + + + + + Enumeration + + + + + Immutable + + + + + Hidden + + + + + Checkbox + + + + + Text edit + + + + + Calendar + + + + + Value relation + + + + + UUID generator + + + + + Select a file + + + + + Error + + + + + Could not open file %1 +Error was:%2 + + + + + + Slider + + + + + Dial + + + + + + Current minimum for this value is %1 and current maximum is %2. + + + + + Attribute has no integer or real type, therefore range is not usable. + + + + + Enumeration is not available for this attribute + + + + + No filter + + + + + QgsBookmarks + + + &Add + + + + + &Delete + + + + + &Zoom to + + + + + + Error + + + + + Unable to open bookmarks database. +Database: %1 +Driver: %2 +Database: %3 + + + + + Name + + + + + Project + + + + + xMin + + + + + yMin + + + + + xMax + + + + + yMax + + + + + SRID + + + + + New bookmark + + + + + Unable to create the bookmark. +Driver:%1 +Database:%2 + + + + + Really Delete? + + + + + Are you sure you want to delete %n bookmark(s)? + number of rows + + + + + + + + Empty extent + + + + + Reprojected extent is empty. + + + + + QgsBookmarksBase + + + Geospatial Bookmarks + + + + + QgsBrowser + + + WMS + + + + + Cannot get WMS select dialog from provider. + + + + + CRS + + + + + Cannot set layer CRS + + + + + QgsBrowserBase + + + QGIS Browser + + + + + Param + + + + + Metadata + + + + + Preview + + + + + Stop rendering + + + + + Attributes + + + + + toolBar + + + + + New Shapefile + + + + + Ctrl+Shift+N + + + + + Refresh + + + + + Ctrl+R + + + + + + Set layer CRS + + + + + Manage WMS + + + + + Manage WMS Connections + + + + + Ctrl+Shift+W + + + + + QgsBrowserDirectoryPropertiesBase + + + Dialog + + + + + Path + + + + + QgsBrowserDockWidget + + + Browser + + + + + Filter Pattern Syntax + + + + + Wildcard(s) + + + + + Regular Expression + + + + + Add as a favourite + + + + + Remove favourite + + + + + + Properties + + + + + Fast scan this dir. + + + + + Add Layer + + + + + Add Selected Layers + + + + + Add a directory + + + + + Add directory to favourites + + + + + Error + + + + + Layer Properties + + + + + Directory Properties + + + + + QgsBrowserDockWidgetBase + + + Browser + + + + + + Refresh + + + + + Add Selected Layers + + + + + Add + + + + + Filter Files + + + + + + ... + + + + + Collapse All + + + + + Options + + + + + Filter files + + + + + QgsBrowserLayerPropertiesBase + + + Dialog + + + + + Display Name + + + + + Layer Source + + + + + Provider + + + + + Metadata + + + + + QgsBrowserModel + + + Home + + + + + Favourites + + + + + QgsBrushStyleComboBox + + + Solid + + + + + No Brush + + + + + Horizontal + + + + + Vertical + + + + + Cross + + + + + BDiagonal + + + + + FDiagonal + + + + + Diagonal X + + + + + Dense 1 + + + + + Dense 2 + + + + + Dense 3 + + + + + Dense 4 + + + + + Dense 5 + + + + + Dense 6 + + + + + Dense 7 + + + + + QgsCategorizedSymbolRendererV2Model + + + Symbol + + + + + Value + + + + + Label + + + + + QgsCategorizedSymbolRendererV2Widget + + + Column + + + + + Symbol + + + + + change + + + + + Color ramp + + + + + Classify + + + + + Add + + + + + Delete + + + + + Delete all + + + + + Join + + + + + Advanced + + + + + Symbol levels... + + + + + High number of classes! + + + + + Classification would yield %1 entries which might not be expected. Continue? + + + + + + Error + + + + + There are no available color ramps. You can add them in Style Manager. + + + + + The selected color ramp is not available. + + + + + Confirm Delete + + + + + The classification field was changed from '%1' to '%2'. +Should the existing classes be deleted before classification? + + + + + QgsCharacterSelectorBase + + + Character Selector + + + + + Font: + + + + + Current font family and style + + + + + QgsColorRampComboBox + + + New color ramp... + + + + + QgsCompassPlugin + + + Show compass + + + + + &About + + + + + QgsCompassPluginGui + + + Pixmap not found + + + + + QgsCompassPluginGuiBase + + + Internal Compass + + + + + Azimut + + + + + QgsComposer + + + QGIS + + + + + File + + + + + View + + + + + Panels + + + + + Toolbars + + + + + Layout + + + + + Composition + + + + + Item Properties + + + + + Command history + + + + + Atlas generation + + + + + + Choose a file name to save the map as + + + + + PDF Format + + + + + + + Empty filename pattern + + + + + + + The filename pattern is empty. A default one will be used. + + + + + Directory where to save PDF files + + + + + + + Unable to write into the directory + + + + + + + The given output directory is not writeable. Cancelling. + + + + + + + + Rendering maps... + + + + + + + + Abort + + + + + + + + Atlas processing error + + + + + Big image + + + + + To create image %1x%2 requires about %3 MB of memory. Proceed? + + + + + Choose a file name to save the map image as + + + + + Directory where to save image files + + + + + Image format: + + + + + SVG warning + + + + + + Don't show this message again + + + + + <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the + + + + + Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p> + + + + + If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p> + + + + + SVG Format + + + + + Directory where to save SVG files + + + + + Save template + + + + + Composer templates + + + + + Save error + + + + + Error, could not save file + + + + + Load template + + + + + Read error + + + + + Error, could not read file + + + + + Composer + + + + + Project contains WMS layers + + + + + Some WMS servers (e.g. UMN mapserver) have a limit for the WIDTH and HEIGHT parameter. Printing layers from such servers may exceed this limit. If this is the case, the WMS layer will not be printed + + + + + QgsComposerArrowWidget + + + General options + + + + + Arrow outline width + + + + + Arrowhead width + + + + + Arrow color + + + + + Arrow color changed + + + + + + + Arrow marker changed + + + + + + Arrow start marker + + + + + + Arrow end marker + + + + + Start marker svg file + + + + + End marker svg file + + + + + QgsComposerArrowWidgetBase + + + Form + + + + + Arrow + + + + + Arrow color... + + + + + Line width + + + + + Arrow head width + + + + + Arrow markers + + + + + Start marker + + + + + + ... + + + + + SVG markers + + + + + End marker + + + + + No marker + + + + + Default marker + + + + + QgsComposerBase + + + MainWindow + + + + + Toolbar + + + + + &Print... + + + + + Zoom Full + + + + + Zoom In + + + + + Zoom Out + + + + + Add Map + + + + + Add new map + + + + + Add Label + + + + + Add new label + + + + + Add Legend + + + + + Add new legend + + + + + Move Item + + + + + Select/Move item + + + + + Export as Image... + + + + + Export as PDF... + + + + + Export as SVG... + + + + + Add Scalebar + + + + + Add new scalebar + + + + + Refresh + + + + + Refresh view + + + + + Add Image + + + + + Move Content + + + + + Move item content + + + + + Group + + + + + Group items + + + + + Ungroup + + + + + Ungroup items + + + + + Raise + + + + + Raise selected items + + + + + Lower + + + + + Lower selected items + + + + + Bring to Front + + + + + Move selected items to top + + + + + Send to Back + + + + + Move selected items to bottom + + + + + Load From template + + + + + Save as template + + + + + Align left + + + + + Align selected items left + + + + + Align center + + + + + Align center horizontal + + + + + Align right + + + + + Align selected items right + + + + + Align top + + + + + Align selected items to top + + + + + + Align center vertical + + + + + Align bottom + + + + + Align selected items bottom + + + + + &Quit + + + + + Quit + + + + + Ctrl+Q + + + + + Add arrow + + + + + Add table + + + + + Adds attribute table + + + + + Page Setup + + + + + Undo + + + + + Revert last change + + + + + Ctrl+Z + + + + + Redo + + + + + Restore last change + + + + + Ctrl+Shift+Z + + + + + + Add Rectangle + + + + + + Add Triangle + + + + + + Add Ellipse + + + + + Add html + + + + + Add html frame + + + + + QgsComposerHtmlWidget + + + Use existing frames + + + + + Extend to next page + + + + + Repeat on every page + + + + + Repeat until finished + + + + + General options + + + + + Change html url + + + + + Select HTML document + + + + + Change resize mode + + + + + QgsComposerHtmlWidgetBase + + + Form + + + + + HTML + + + + + ... + + + + + URL + + + + + Resize mode + + + + + QgsComposerItem + + + Change item position + + + + + QgsComposerItemWidget + + + Frame color changed + + + + + Background color changed + + + + + Item opacity changed + + + + + Item outline width + + + + + Item frame toggled + + + + + Item position changed + + + + + Item id changed + + + + + QgsComposerItemWidgetBase + + + Form + + + + + Frame color... + + + + + Background color... + + + + + Opacity + + + + + Outline width + + + + + Position and size... + + + + + Show frame + + + + + Item ID + + + + + QgsComposerLabelWidget + + + General options + + + + + Label text changed + + + + + + Label font changed + + + + + Label margin changed + + + + + + Insert expression + + + + + + + + + + Label alignment changed + + + + + Label id changed + + + + + Label rotation changed + + + + + QgsComposerLabelWidgetBase + + + Label Options + + + + + Label + + + + + Font color... + + + + + Horizontal Alignment: + + + + + Left + + + + + Center + + + + + Right + + + + + Vertical Alignment: + + + + + Top + + + + + Middle + + + + + Bottom + + + + + Margin + + + + + mm + + + + + Rotation + + + + + Font + + + + + Insert an expression + + + + + QgsComposerLegend + + + Legend + + + + + QgsComposerLegendItemDialogBase + + + Legend item properties + + + + + Item text + + + + + QgsComposerLegendLayersDialogBase + + + Add layer to legend + + + + + QgsComposerLegendWidget + + + General Options + + + + + Item wrapping changed + + + + + Legend title changed + + + + + Legend column count + + + + + Legend split layers + + + + + Legend equal column width + + + + + Legend symbol width + + + + + Legend symbol height + + + + + Legend group space + + + + + Legend layer space + + + + + Legend symbol space + + + + + Legend icon label space + + + + + Title font changed + + + + + Legend group font changed + + + + + Legend layer font changed + + + + + Legend item font changed + + + + + + Legend box space + + + + + Legend map changed + + + + + Legend item edited + + + + + + + Legend updated + + + + + Legend group added + + + + + Map %1 + + + + + None + + + + + QgsComposerLegendWidgetBase + + + Barscale Options + + + + + General + + + + + Title Font... + + + + + Group Font... + + + + + Layer Font... + + + + + Item Font... + + + + + Symbol width + + + + + + + + + + + + mm + + + + + Symbol height + + + + + Layer space + + + + + Symbol space + + + + + Icon label space + + + + + Box space + + + + + Map + + + + + Group Space + + + + + Wrap text on + + + + + &Title + + + + + Column count + + + + + Allow to split layer items into multiple columns. + + + + + Split layers + + + + + Equal column widths + + + + + Column space + + + + + Legend items + + + + + Auto Update + + + + + Update + + + + + All + + + + + Add group + + + + + Show feature count for each class of vector layer. + + + + + QgsComposerManager + + + &Show + + + + + &Remove + + + + + Re&name + + + + + Empty composer + + + + + Remove composer + + + + + Do you really want to remove the map composer '%1'? + + + + + Change title + + + + + Title + + + + + QgsComposerManagerBase + + + Composer manager + + + + + Add + + + + + QgsComposerMap + + + + Map %1 + + + + + Map will be printed here + + + + + QgsComposerMapWidget + + + General options + + + + + + + Cache + + + + + + + Render + + + + + + + Rectangle + + + + + + Solid + + + + + + + Cross + + + + + Decimal + + + + + DegreeMinute + + + + + DegreeMinuteSecond + + + + + + No frame + + + + + + + Zebra + + + + + Change item width + + + + + Change item height + + + + + Map scale changed + + + + + Map rotation changed + + + + + + Map extent changed + + + + + Canvas items toggled + + + + + + + None + + + + + Grid checkbox toggled + + + + + + Grid interval changed + + + + + + Grid offset changed + + + + + Grid pen changed + + + + + Grid type changed + + + + + Grid cross width changed + + + + + Annotation font changed + + + + + Annotation distance changed + + + + + Annotation format changed + + + + + Annotation toggled + + + + + Changed annotation precision + + + + + Changed grid frame style + + + + + Changed grid frame width + + + + + + + Inside frame + + + + + + Outside frame + + + + + + + Disabled + + + + + + + Horizontal + + + + + + Vertical + + + + + Annotation position changed + + + + + Changed annotation direction + + + + + Map %1 + + + + + QgsComposerMapWidgetBase + + + Map options + + + + + Map + + + + + Update preview + + + + + Overview style + + + + + Change... + + + + + Overview frame + + + + + Width + + + + + Height + + + + + Scale + + + + + Rotation + + + + + degrees + + + + + Lock layers for map item + + + + + Draw map canvas items + + + + + Extents + + + + + X min + + + + + X max + + + + + Y min + + + + + Y max + + + + + Set to map canvas extent + + + + + Grid + + + + + Show grid? + + + + + Grid &type + + + + + Interval X + + + + + Interval Y + + + + + Offset X + + + + + Offset Y + + + + + Cross width + + + + + Frame style + + + + + Frame width + + + + + Line style + + + + + change... + + + + + Draw annotation + + + + + Annotation position left side + + + + + Annotation position right side + + + + + Annotation position top side + + + + + Annotation position bottom side + + + + + Annotation direction left side + + + + + Annotation direction right side + + + + + Annotation direction top side + + + + + Annotation direction bottom side + + + + + Annotation format + + + + + Font... + + + + + Distance to map frame + + + + + Coordinate precision + + + + + QgsComposerPictureWidget + + + General options + + + + + Select svg or image file + + + + + + + Picture changed + + + + + Picture width changed + + + + + Picture height changed + + + + + Picture rotation changed + + + + + Select new preview directory + + + + + Rotation synchronisation toggled + + + + + Rotation map changed + + + + + + Map %1 + + + + + Creating icon for file %1 + + + + + QgsComposerPictureWidgetBase + + + Picture Options + + + + + Picture options + + + + + Preloaded images + + + + + Load another + + + + + ... + + + + + Options + + + + + Width + + + + + Height + + + + + Rotation + + + + + Sync with map + + + + + Search directories + + + + + Add... + + + + + Remove + + + + + QgsComposerScaleBar + + + km + + + + + m + + + + + QgsComposerScaleBarWidget + + + General options + + + + + + Single Box + + + + + + Double Box + + + + + + + Line Ticks Middle + + + + + + Line Ticks Down + + + + + + Line Ticks Up + + + + + + Numeric + + + + + Left + + + + + Middle + + + + + Right + + + + + Map units + + + + + Meters + + + + + Feet + + + + + + + Map %1 + + + + + Scalebar map changed + + + + + Scalebar line width + + + + + Scalebar segment size + + + + + Scalebar segments left + + + + + Scalebar n segments + + + + + Scalebar height changed + + + + + Scalebar font changed + + + + + Scalebar color changed + + + + + Scalebar unit text + + + + + Scalebar map units per segment + + + + + Scalebar style changed + + + + + Scalebar label bar space + + + + + Scalebar box content space + + + + + Scalebar alignment + + + + + Scalebar unit changed + + + + + QgsComposerScaleBarWidgetBase + + + Barscale Options + + + + + Scale bar + + + + + Segment size + + + + + Units + + + + + Map units per bar unit + + + + + Left segments + + + + + Right segments + + + + + Style + + + + + Map + + + + + Alignment + + + + + + + + mm + + + + + Height + + + + + Line width + + + + + Label space + + + + + Box space + + + + + Unit label + + + + + Font... + + + + + Color... + + + + + QgsComposerShapeWidget + + + General options + + + + + + + Ellipse + + + + + + + Rectangle + + + + + + + Triangle + + + + + Shape rotation changed + + + + + Shape type changed + + + + + Select outline color + + + + + Shape outline color + + + + + Shape outline width + + + + + Shape transparency toggled + + + + + Select fill color + + + + + Shape fill color + + + + + QgsComposerShapeWidgetBase + + + Form + + + + + Shape + + + + + Shape outline color... + + + + + Outline width + + + + + Transparent fill + + + + + Shape fill Color... + + + + + Rotation + Rotation + Rotation + + + + + QgsComposerTableWidget + + + General options + + + + + + Map %1 + + + + + Table layer changed + + + + + Table attribute settings + + + + + Table map changed + + + + + + Table maximum columns + + + + + + + + Select Font + + + + + Table header font + + + + + Table content font + + + + + Table grid stroke + + + + + Select grid color + + + + + Table grid color + + + + + Table grid toggled + + + + + Table visible only toggled + + + + + QgsComposerTableWidgetBase + + + Form + + + + + Table + + + + + Layer + + + + + Attributes... + + + + + Composer map + + + + + Maximum rows + + + + + Show grid + + + + + Grid stroke width + + + + + Grid color + + + + + Header Font... + + + + + Content Font... + + + + + Margin + + + + + Show only visible features + + + + + QgsComposerVectorLegendBase + + + Vector Legend Options + + + + + Preview + + + + + Map + + + + + Title + + + + + Layers + + + + + Group + + + + + ID + + + + + Box + + + + + Font + + + + + QgsComposerView + + + Quantum GIS + + + + + Label added + + + + + Scale bar added + + + + + Legend added + + + + + Picture added + + + + + Table added + + + + + Shape added + + + + + Move item content + + + + + Arrow added + + + + + Map added + + + + + Html item added + + + + + Html frame added + + + + + + + + Item moved + + + + + Zoom item content + + + + + QgsComposition + + + Label added + + + + + Map added + + + + + Arrow added + + + + + Scale bar added + + + + + Shape added + + + + + Picture added + + + + + Legend added + + + + + Table added + + + + + Aligned items left + + + + + Aligned items hcenter + + + + + Aligned items right + + + + + Aligned items top + + + + + Aligned items vcenter + + + + + Aligned items bottom + + + + + Item z-order changed + + + + + Remove item group + + + + + Frame deleted + + + + + Item deleted + + + + + Multiframe removed + + + + + QgsCompositionBase + + + Composition + + + + + Paper + + + + + Size + + + + + Units + + + + + Width + + + + + Height + + + + + Orientation + + + + + QgsCompositionWidget + + + mm + + + + + inch + + + + + + + Landscape + + + + + + Portrait + + + + + + Solid + + + + + + Dots + + + + + + Crosses + + + + + A5 (148x210 mm) + + + + + A4 (210x297 mm) + + + + + A3 (297x420 mm) + + + + + A2 (420x594 mm) + + + + + A1 (594x841 mm) + + + + + A0 (841x1189 mm) + + + + + B5 (176 x 250 mm) + + + + + B4 (250 x 353 mm) + + + + + B3 (353 x 500 mm) + + + + + B2 (500 x 707 mm) + + + + + B1 (707 x 1000 mm) + + + + + B0 (1000 x 1414 mm) + + + + + Legal (8.5x14 inches) + + + + + ANSI A (Letter; 8.5x11 inches) + + + + + ANSI B (Tabloid; 11x17 inches) + + + + + ANSI C (17x22 inches) + + + + + ANSI D (22x34 inches) + + + + + ANSI E (34x44 inches) + + + + + Arch A (9x12 inches) + + + + + Arch B (12x18 inches) + + + + + Arch C (18x24 inches) + + + + + Arch D (24x36 inches) + + + + + Arch E (36x48 inches) + + + + + Arch E1 (30x42 inches) + + + + + + + + Custom + + + + + QgsCompositionWidgetBase + + + Composition + + + + + Paper and quality + + + + + Size + + + + + Width + + + + + Height + + + + + Orientation + + + + + Print as raster + + + + + dpi + + + + + Quality + + + + + Number of pages + + + + + Snapping + + + + + Snap to grid + + + + + X offset + + + + + Y offset + + + + + Grid color + + + + + Grid style + + + + + Selection tolerance (mm) + + + + + Spacing + + + + + Pen width + + + + + QgsConfigureShortcutsDialog + + + Configure shortcuts + + + + + Action + + + + + Shortcut + + + + + + Change + + + + + Set none + + + + + Set default + + + + + Load... + + + + + Save... + + + + + Save shortcuts + + + + + + XML file + + + + + + All files + + + + + Saving shortcuts + + + + + Cannot write file %1: +%2. + + + + + Load shortcuts + + + + + + + + Loading shortcuts + + + + + Cannot read file %1: +%2. + + + + + Parse error at line %1, column %2: +%3 + + + + + The file is not an shortcuts exchange file. + + + + + The file contains shortcuts created with different locale, so you can't use it. + + + + + None + + + + + Set default (%1) + + + + + Input: + + + + + Shortcut conflict + + + + + This shortcut is already assigned to action %1. Reassign? + + + + + QgsContinuousColorDialogBase + + + Continuous color + + + + + Classification field + + + + + Minimum value + + + + + Maximum value + + + + + Outline width + + + + + Draw polygon outline + + + + + QgsCoordinateTransform + + + The source spatial reference system (CRS) is not valid. The coordinates can not be reprojected. The CRS is: %1 + + + + + + CRS + + + + + The destination spatial reference system (CRS) is not valid. The coordinates can not be reprojected. The CRS is: %1 + + + + + inverse transform + + + + + forward transform + + + + + %1 of +%2PROJ.4: %3 +to %4 +Error: %5 + + + + + QgsCptCityBrowserModel + + + Name + + + + + Info + + + + + QgsCptCityColorRampItem + + + colors + + + + + discrete + + + + + continuous + + + + + continuous (multi) + + + + + variants + + + + + QgsCptCityColorRampV2Dialog + + + Error - cpt-city gradient files not found. + +You have two means of installing them: + +1) Install the "Color Ramp Manager" python plugin (you must enable Experimental plugins in the plugin manager) and use it to download latest cpt-city package. +You can install the entire cpt-city archive or a selection for QGIS. + +2) Download the complete archive (in svg format) and unzip it to your QGis settings directory [%1] . + +This file can be found at [%2] +and current file is [%3] + + + + + Selections by theme + + + + + All by author + + + + + You can download a more complete set of cpt-city gradients by installing the "Color Ramp Manager" plugin (you must enable Experimental plugins in the plugin manager). + + + + + + + All Ramps (%1) + + + + + %1 directory details + + + + + %1 gradient details + + + + + QgsCptCityColorRampV2DialogBase + + + cpt-city color ramp + + + + + Selection and preview + + + + + + License + + + + + Palette + + + + + Path + + + + + Information + + + + + Author(s) + + + + + Source + + + + + Details + + + + + Save as standard gradient + + + + + QgsCredentialDialog + + + Enter Credentials + + + + + Username + + + + + Password + + + + + + TextLabel + + + + + Realm + + + + + QgsCustomProjectionDialog + + + Delete Projection Definition? + + + + + Deleting a projection definition is not reversable. Do you want to delete it? + + + + + + + + %1 of %2 + + + + + + + + Abort + + + + + + New + + + + + * of %1 + + + + + + + + + + + + QGIS Custom Projection + + + + + + + + + This proj4 projection definition is not valid. + + + + + Please give the projection a name before pressing save. + + + + + Please add the parameters before pressing save. + + + + + Please add a proj= clause before pressing save. + + + + + This proj4 ellipsoid definition is not valid. Please add a ellips= clause before pressing save. + COMMENTED OUT + + + + + Please correct before pressing save. + + + + + Northing and Easthing must be in decimal form. + + + + + Internal Error (source projection invalid?) + + + + + + Error + + + + + QgsCustomProjectionDialogBase + + + Custom Coordinate Reference System Definition + + + + + Define + + + + + You can define your own custom Coordinate Reference System (CRS) here. The definition must conform to the proj4 format for specifying a CRS. + + + + + Name + + + + + + Parameters + + + + + |< + + + + + < + + + + + 1 of 1 + + + + + > + + + + + >| + + + + + * + + + + + S + + + + + X + + + + + Test + + + + + Use the text boxes below to test the CRS definition you are creating. Enter a coordinate where both the lat/long and the transformed result are known (for example by reading off a map). Then press the calculate button to see if the CRS definition you are creating is accurate. + + + + + Geographic / WGS84 + + + + + Destination CRS + + + + + North + + + + + East + + + + + Calculate + + + + + QgsCustomizationDialog + + + Object name + + + + + Label + + + + + Description + + + + + + Choose a customization INI file + + + + + + Customization files (*.ini) + + + + + Widgets + + + + + QgsCustomizationDialogBase + + + Customization + + + + + Enable customization + + + + + toolBar + + + + + Catch + + + + + Switch to catching widgets in main application + + + + + Save + + + + + Save to file + + + + + Load + + + + + Load from file + + + + + Expand All + + + + + Collapse All + + + + + Select All + + + + + QgsDashSpaceDialogBase + + + Dash space pattern + + + + + Dash + + + + + Space + + + + + QgsDbSourceSelectBase + + + Add PostGIS layers + + + + + Connections + + + + + Connect + + + + + New + + + + + Edit + + + + + Delete + + + + + Load + Load connections from file + + + + + Save connections to file + + + + + Save + + + + + Also list tables with no geometry + + + + + Search options + + + + + Search + + + + + Search mode + + + + + Search in columns + + + + + QgsDecorationCopyright + + + Bottom Left + + + + + Top Left + + + + + Top Right + + + + + Bottom Right + + + + + QgsDecorationCopyrightDialog + + + Copyright Label Decoration + + + + + Enable copyright label + + + + + &Enter your copyright label here: + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana';">© QGIS 2009</span></p></body></html> + + + + + &Placement + + + + + Bottom Left + + + + + Top Left + + + + + Bottom Right + + + + + Top Right + + + + + &Orientation + + + + + Horizontal + + + + + Vertical + + + + + &Color + + + + + QgsDecorationGrid + + + + + + Error + + + + + No active layer + + + + + Please select a raster layer + + + + + Invalid raster layer + + + + + Layer CRS must be equal to project CRS + + + + + QgsDecorationGridDialog + + + Dialog + + + + + Enable grid + + + + + Interval X + + + + + Interval Y + + + + + Grid type + + + + + Line symbol + + + + + Draw annotation + + + + + Annotation direction + + + + + Font... + + + + + Distance to map frame + + + + + Coordinate precision + + + + + Marker symbol + + + + + Offset X + + + + + Offset Y + + + + + Update Interval / Offset from + + + + + Canvas Extents + + + + + Active Raster Layer + + + + + + Line + + + + + + Marker + + + + + + Horizontal + + + + + + Vertical + + + + + Horizontal and vertical + + + + + Boundary direction + + + + + Horizontal and Vertical + + + + + QgsDecorationNorthArrow + + + Bottom Left + + + + + Top Left + + + + + Top Right + + + + + Bottom Right + + + + + North arrow pixmap not found + + + + + QgsDecorationNorthArrowDialog + + + North Arrow Decoration + + + + + Preview of north arrow + + + + + Angle + + + + + Placement + + + + + Placement on screen + + + + + Top Left + + + + + Top Right + + + + + Bottom Left + + + + + Bottom Right + + + + + Enable North Arrow + + + + + Set direction automatically + + + + + Pixmap not found + + + + + QgsDecorationScaleBar + + + Bottom Left + + + + + Top Left + + + + + Top Right + + + + + Bottom Right + + + + + Tick Down + + + + + Tick Up + + + + + Bar + + + + + Box + + + + + km + + + + + mm + + + + + cm + + + + + m + + + + + miles + + + + + mile + + + + + inches + + + + + foot + + + + + feet + + + + + degree + + + + + degrees + + + + + unknown + + + + + QgsDecorationScaleBarDialog + + + Scale Bar Decoration + + + + + Placement + + + + + Top Left + + + + + Top Right + + + + + Bottom Left + + + + + Bottom Right + + + + + Scale bar style + + + + + Select the style of the scale bar + + + + + Tick Down + + + + + Tick Up + + + + + Box + + + + + Bar + + + + + Color of bar + + + + + + Click to select the color + + + + + Size of bar + + + + + Enable scale bar + + + + + Automatically snap to round number on resize + + + + + metres/km + + + + + feet/miles + + + + + degrees + + + + + QgsDelAttrDialogBase + + + Delete Attributes + + + + + QgsDelimitedTextPlugin + + + DelimitedTextLayer + + + + + &Add Delimited Text Layer + + + + + Add a delimited text file as a map layer. The file must have a header row containing the field names. The file must either contain X and Y fields with coordinates in decimal units or a WKT field. + + + + + Delimited Text + + + + + Cannot get Delimited Text select dialog from provider. + + + + + QgsDelimitedTextProvider + + + Error + + + + + Note: the following lines were not loaded because QGIS was unable to determine values for the x and y coordinates: + + + + + + QgsDelimitedTextSourceSelect + + + No layer name + + + + + Please enter a layer name before adding the layer to the map + + + + + Choose a delimited text file to open + + + + + Text files + + + + + Well Known Text files + + + + + All files + + + + + QgsDelimitedTextSourceSelectBase + + + Create a Layer from a Delimited Text File + + + + + File Name + + + + + Full path to the delimited text file + + + + + Full path to the delimited text file. In order to properly parse the fields in the file, the delimiter must be defined prior to entering the file name. Use the Browse button to the right of this field to choose the input file. + + + + + Layer name + + + + + Name to display in the map legend + + + + + Name displayed in the map legend + + + + + Browse to find the delimited text file to be processed + + + + + Use this button to browse to the location of the delimited text file. This button will not be enabled until a delimiter has been entered in the <i>Delimiter</i> box. Once a file is chosen, the X and Y field drop-down boxes will be populated with the fields from the delimited text file. + + + + + Browse... + + + + + Selected delimiters + + + + + + The delimiter is a regular expression + + + + + Regular expression + + + + + + The delimiter is taken as is + + + + + Plain characters + + + + + Tab + + + + + Space + + + + + Comma + + + + + Semicolon + + + + + Colon + + + + + Delimiter to use when splitting fields in the text file. The delimiter can be more than one character. + + + + + Delimiter to use when splitting fields in the delimited text file. The delimiter can be 1 or more characters in length. + + + + + Start import at row + + + + + The file contains X and Y coordinate columns + + + + + X Y fields + + + + + <p align="right">X field</p> + + + + + Name of the field containing x values + + + + + Name of the field containing x values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. + + + + + <p align="right">Y field</p> + + + + + + Name of the field containing y values + + + + + + Name of the field containing y values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. + + + + + The file contains a well known text geometry field + + + + + WKT field + + + + + Decimal point + + + + + Sample text + + + + + QgsDetailedItemWidgetBase + + + Form + + + + + Heading Label + + + + + Detail label + + + + + Category label + + + + + QgsDiagramProperties + + + + mm + + + + + Map units + + + + + Around Point + + + + + Over Point + + + + + Line + + + + + Horizontal + + + + + Free + + + + + On line + + + + + Above line + + + + + Below Line + + + + + Map orientation + + + + + Pie chart + + + + + Text diagram + + + + + Histogram + + + + + Height + + + + + + x-height + + + + + Area + + + + + Diameter + + + + + + None + + + + + Unknown diagram type. + + + + + The diagram type '%1' is unknown. A default type is selected for you. + + + + + Transparency: %1% + + + + + Background color + + + + + Pen color + + + + + No attributes added. + + + + + You did not add any attributes to this diagram layer. Please specify the attributes to visualize on the diagrams or disable diagrams. + + + + + No attribute value specified + + + + + You did not specify a maximum value for the diagram size. Please specify the attribute and a reference value as a base for scaling in the Tab Diagram / Size. + + + + + QgsDiagramPropertiesBase + + + Display diagrams + + + + + Diagram type + + + + + Priority: + + + + + Low + + + + + High + + + + + Appearance + + + + + Background color + + + + + Line color + + + + + Line width + + + + + Font... + + + + + Bar width + + + + + Transparency 0% + + + + + Only show diagrams with a size inside the specified range. + + + + + Hide diagrams with a size outside the specified range. + + + + + Scale dependent visibility + + + + + Minimum + + + + + Maximum + + + + + + Size + + + + + Fixed size + + + + + Size units + + + + + Scale linearly between 0 and the following attribute value / diagram size: + + + + + + Attribute + + + + + Find maximum value + + + + + Scale + + + + + Will scale diagrams with a size smaller than the minimum size to the minimum size + + + + + Increase size of small diagrams + + + + + Minimum size + + + + + Position + + + + + Placement + + + + + Line Options + + + + + Distance + + + + + Data defined position + + + + + x + + + + + y + + + + + Automated placement settings + + + + + Options + + + + + Label placement + + + + + Bar Orientation + + + + + Up + + + + + Down + + + + + Right + + + + + Left + + + + + Attributes + + + + + Available attributes + + + + + Assigned attributes + + + + + Drag and drop to reorder + + + + + Color + + + + + QgsDirectoryParamWidget + + + + Name + + + + + + Size + + + + + + Date + + + + + + Permissions + + + + + + Owner + + + + + + Group + + + + + + Type + + + + + folder + + + + + file + + + + + link + + + + + QgsDisplayAngle + + + %1 degrees + + + + + %1 radians + + + + + %1 gon + + + + + QgsDisplayAngleBase + + + Angle + + + + + QgsEncodingFileDialog + + + Encoding: + + + + + Cancel &All + + + + + QgsEngineConfigDialog + + + Dialog + + + + + Search method + + + + + Chain (fast) + + + + + Popmusic Tabu + + + + + Popmusic Chain + + + + + Popmusic Tabu Chain + + + + + FALP (fastest) + + + + + Number of candidates + + + + + Point + + + + + Line + + + + + Polygon + + + + + (i.e. including colliding objects) + + + + + Show all labels and features for all layers + + + + + Show candidates (for debugging) + + + + + Save settings with project + + + + + QgsErrorDialog + + + Error + + + + + QgsErrorDialogBase + + + Dialog + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Summary</p></body></html> + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detailed report.</p></body></html> + + + + + Always show details + + + + + Details >> + + + + + QgsExpressionBuilderDialogBase + + + Expression string builder + + + + + QgsExpressionBuilderWidget + + + + + + + + + + + + + + + + + + + + + Operators + + + + + (String Concatenation) + + + + + Joins two values together into a string + + + + + Usage + + + + + 'Dia' || Diameter + + + + + + Conditionals + + + + + Search + + + + + Fields and Values + + + + + Parser Error + + + + + Eval Error + + + + + Expression is invalid <a href=more>(more info)</a> + + + + + More info on expression error + + + + + Load top 10 unique values + + + + + Load all unique values + + + + + <h3>Oops! QGIS can't find help for this function.</h3>The help file for %1 was not found.<br> + + + + + (Showing English version as there was no help available in your language (%1). If you would like to create it, contact the QGIS translation team).<br> + + + + + It was neither available in your language (%1) nor English. + + + + + <br>If you would like to create it, contact the QGIS development team. + + + + + QgsExpressionBuilderWidgetBase + + + Form + + + + + Function List + + + + + Selected Function Help + + + + + Field Values + + + + + Load all unique values + + + + + Load 10 sample values + + + + + Operators + + + + + = + + + + + + + + + + + - + + + + + / + + + + + * + + + + + ^ + + + + + || + + + + + ( + + + + + ) + + + + + + Output preview is generated <br> using the first feature from the layer. + + + + + Output preview: + + + + + Expression + + + + + QgsFeatureAction + + + Run actions + + + + + QgsFieldCalculator + + + + Not available for layer + + + + + Evaluation error + + + + + Provider error + + + + + Could not add the new field to the provider. + + + + + Error + + + + + An error occured while evaluating the calculation string: +%1 + + + + + Please enter a field name + + + + + + The expression is invalid see (more info) for details + + + + + QgsFieldCalculatorBase + + + Field calculator + + + + + Only update selected features + + + + + Create a new field + + + + + Output field name + + + + + Output field type + + + + + Output field width + + + + + Width of complete output. For example 123,456 means 6 as field width. + + + + + Precision + + + + + Update existing field + + + + + QgsFieldsProperties + + + Label + + + + + Id + + + + + Name + + + + + Type + + + + + Length + + + + + Precision + + + + + Comment + + + + + Edit widget + + + + + Alias + + + + + + Name conflict + + + + + + The attribute could not be inserted. The name already exists in the table. + + + + + Added attribute + + + + + + Deleted attribute + + + + + Line edit + + + + + Unique values + + + + + Unique values editable + + + + + Classification + + + + + Value map + + + + + Edit range + + + + + Slider range + + + + + Dial range + + + + + File name + + + + + Enumeration + + + + + Immutable + + + + + Hidden + + + + + Checkbox + + + + + Text edit + + + + + Calendar + + + + + Value relation + + + + + UUID generator + + + + + Select edit form + + + + + UI file + + + + + QgsFieldsPropertiesBase + + + Field calculator + + + + + + Click to toggle table editing + + + + + Toggle editing mode + + + + + New column + + + + + Ctrl+N + + + + + Delete column + + + + + Ctrl+X + + + + + ... + + + + + Init function + + + + + Edit UI + + + + + + + + + + + - + + + + + > + + + + + ^ + + + + + v + + + + + Autogenerate + + + + + Drag and drop designer + + + + + Provide ui-file + + + + + Attribute editor layout: + + + + + QgsFormAnnotationDialog + + + Delete + + + + + Qt designer file + + + + + QgsFormAnnotationDialogBase + + + Form annotation + + + + + ... + + + + + QgsGCPListModel + + + + map units + + + + + + pixels + + + + + QgsGCPListWidget + + + Recenter + + + + + Remove + + + + + QgsGPSDetector + + + internal GPS + + + + + local gpsd + + + + + QgsGPSDeviceDialog + + + New device %1 + + + + + Are you sure? + + + + + Are you sure that you want to delete this device? + + + + + QgsGPSDeviceDialogBase + + + GPS Device Editor + + + + + Devices + + + + + Delete + + + + + New + + + + + Update + + + + + Device name + + + + + This is the name of the device as it will appear in the lists + + + + + Commands + + + + + Track download + + + + + Route upload + + + + + Waypoint download + + + + + The command that is used to download routes from the device + + + + + Route download + + + + + The command that is used to upload waypoints to the device + + + + + Track upload + + + + + The command that is used to download tracks from the device + + + + + The command that is used to upload routes to the device + + + + + The command that is used to download waypoints from the device + + + + + The command that is used to upload tracks to the device + + + + + Waypoint upload + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">In the download and upload commands there can be special words that will be replaced by QGIS when the commands are used. These words are:</span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%babel</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the path to GPSBabel<br /></span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%in</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the GPX filename when uploading or the port when downloading<br /></span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%out</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the port when uploading or the GPX filename when downloading</span></p></body></html> + + + + + QgsGPSInformationWidget + + + /gps + + + + + No path to the GPS port is specified. Please enter a path then try again. + + + + + Connecting... + + + + + Connecting to GPS device... + + + + + Timed out! + + + + + Failed to connect to GPS device. + + + + + Connected! + + + + + Dis&connect + + + + + Connected to GPS device. + + + + + Error opening log file. + + + + + Disconnected... + + + + + &Connect + + + + + Disconnected from GPS device. + + + + + %1 m + + + + + %1 km/h + + + + + Automatic + + + + + Manual + + + + + 3D + + + + + 2D + + + + + No fix + + + + + Differential + + + + + Non-differential + + + + + No position + + + + + Valid + + + + + Invalid + + + + + + Not enough vertices + + + + + Cannot close a line feature until it has at least two vertices. + + + + + Cannot close a polygon feature until it has at least three vertices. + + + + + + Feature added + + + + + + + + + Error + + + + + + Could not commit changes to layer %1 + +Errors: %2 + + + + + + The feature could not be added because removing the polygon intersections would change the geometry type + + + + + An error was reported during intersection removal + + + + + Cannot add feature. Unknown WKB type. Choose a different layer and try again. + + + + + Save GPS log file as + + + + + NMEA files + + + + + &Add feature + + + + + &Add Point + + + + + &Add Line + + + + + &Add Polygon + + + + + QgsGPSInformationWidgetBase + + + GPS Connect + + + + + &Add feature + + + + + Quick status indicator: +green = good or 3D fix +yellow = good 2D fix +red = no fix or bad fix +gray = no data + +2D/3D depends on this information being available + + + + + Add track point + + + + + Reset track + + + + + + + + + + + + ... + + + + + Position + + + + + Signal + + + + + Satellite + + + + + Options + + + + + Debug + + + + + &Connect + + + + + latitude of position fix (degrees) + + + + + Longitude + + + + + longitude of position fix (degrees) + + + + + antenna altitude with respect to geoid (mean sea level) + + + + + Altitude + + + + + Latitude + + + + + Time of fix + + + + + date/time of position fix (UTC) + + + + + speed over ground + + + + + Speed + + + + + track direction (degrees) + + + + + Direction + + + + + Horizontal Dilution of Precision + + + + + HDOP + + + + + Vertical Dilution of Precision + + + + + VDOP + + + + + Position Dilution of Precision + + + + + PDOP + + + + + GPS receiver configuration 2D/3D mode: Automatic or Manual + + + + + Mode + + + + + position fix dimensions: 2D, 3D or No fix + + + + + Dimensions + + + + + quality of the position fix: Differential, Non-differential or No position + + + + + Quality + + + + + position fix status: Valid or Invalid + + + + + Status + + + + + number of satellites used in the position fix + + + + + Satellites + + + + + H accurancy + + + + + V accurancy + + + + + Connection + + + + + Autodetect + + + + + Serial device + + + + + Refresh serial device list + + + + + Port + + + + + Host + + + + + Device + + + + + 00000; + + + + + gpsd + + + + + Internal + + + + + Digitizing + + + + + Track + + + + + Automatically add points + + + + + Track width in pixels + + + + + width + + + + + Color + + + + + save layer after every feature added + + + + + Automatically save added feature + + + + + save GPS data (NMEA sentences) to a file + + + + + Log File + + + + + browse for log file + + + + + Map centering + + + + + when leaving + + + + + % of map extent + + + + + never + + + + + always + + + + + Cursor + + + + + Small + + + + + Large + + + + + QgsGPSPlugin + + + &GPS Tools + + + + + &Create new GPX layer + + + + + + Creates a new GPX layer and displays it on the map canvas + + + + + + &GPS + + + + + Save new GPX file as... + + + + + GPS eXchange file + + + + + Could not create file + + + + + Unable to create a GPX file with the given name. Try again with another name or in another directory. + + + + + GPX Loader + + + + + Unable to read the selected file. +Please reselect a valid file. + + + + + + + + Could not start process + + + + + + + + Could not start GPSBabel! + + + + + + Importing data... + + + + + + + + Cancel + + + + + Could not import data from %1! + + + + + + + Error importing data + + + + + Could not convert data from %1! + + + + + + + Error converting data + + + + + + Not supported + + + + + This device does not support downloading of %1. + + + + + Downloading data... + + + + + Could not download data from GPS! + + + + + + + Error downloading data + + + + + This device does not support uploading of %1. + + + + + Uploading data... + + + + + Error while uploading data to GPS! + + + + + + + Error uploading data + + + + + QgsGPSPluginGui + + + + Waypoints + + + + + + Routes + + + + + + Tracks + + + + + + + Choose a file name to save under + + + + + + + + GPS eXchange format + + + + + + Select GPX file + + + + + Select file and format to import + + + + + Waypoints from a route + + + + + Waypoints from a track + + + + + Route from waypoints + + + + + Track from waypoints + + + + + GPS eXchange format (*.gpx) + + + + + QgsGPSPluginGuiBase + + + GPS Tools + + + + + Load GPX file + + + + + File + + + + + + + Browse... + + + + + Feature types + + + + + + Waypoints + + + + + + Routes + + + + + + Tracks + + + + + Import other file + + + + + File to import + + + + + + Feature type + + + + + + + Layer name + + + + + + GPX output file + + + + + + + Save As... + + + + + (Note: Selecting correct file type in browser dialog important!) + + + + + Download from GPS + + + + + + GPS device + + + + + Edit devices... + + + + + + Port + + + + + Refresh + + + + + Output file + + + + + Upload to GPS + + + + + Data layer + + + + + Edit devices + + + + + GPX Conversions + + + + + GPX input file + + + + + Conversion + + + + + QgsGPXProvider + + + Bad URI - you need to specify the feature type. + + + + + GPS eXchange file + + + + + Digitized in QGIS + + + + + QgsGdalProvider + + + Dataset Description + + + + + Band %1 + + + + + Dimensions: + + + + + X: %1 Y: %2 Bands: %3 + + + + + Origin: + + + + + Pixel Size: + + + + + Gauss + + + + + Cubic + + + + + Average + + + + + Mode + + + + + None + + + + + Cannot get GDAL raster band: %1 + + + + + QgsGenericProjectionSelector + + + Define this layer's coordinate reference system: + + + + + This layer appears to have no projection specification. + + + + + By default, this layer will now have its projection set to that of the project, but you may override this by selecting a different projection below. + + + + + QgsGenericProjectionSelectorBase + + + Coordinate Reference System Selector + + + + + QgsGeorefConfigDialog + + + A5 (148x210 mm) + + + + + A4 (210x297 mm) + + + + + A3 (297x420 mm) + + + + + A2 (420x594 mm) + + + + + A1 (594x841 mm) + + + + + A0 (841x1189 mm) + + + + + B5 (176 x 250 mm) + + + + + B4 (250 x 353 mm) + + + + + B3 (353 x 500 mm) + + + + + B2 (500 x 707 mm) + + + + + B1 (707 x 1000 mm) + + + + + B0 (1000 x 1414 mm) + + + + + Legal (8.5x14 inches) + + + + + ANSI A (Letter; 8.5x11 inches) + + + + + ANSI B (Tabloid; 11x17 inches) + + + + + ANSI C (17x22 inches) + + + + + ANSI D (22x34 inches) + + + + + ANSI E (34x44 inches) + + + + + Arch A (9x12 inches) + + + + + Arch B (12x18 inches) + + + + + Arch C (18x24 inches) + + + + + Arch D (24x36 inches) + + + + + Arch E (36x48 inches) + + + + + Arch E1 (30x42 inches) + + + + + QgsGeorefConfigDialogBase + + + Configure Georeferencer + + + + + Point tip + + + + + Show IDs + + + + + Show coords + + + + + Residual units + + + + + Pixels + + + + + Use map units if possible + + + + + PDF report + + + + + Left margin + + + + + + mm + + + + + Right margin + + + + + Show Georeferencer window docked + + + + + PDF map + + + + + Paper size + + + + + QgsGeorefDescriptionDialogBase + + + Description georeferencer + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Droid Sans'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:10pt;"></p></body></html> + + + + + QgsGeorefPlugin + + + + + &Georeferencer + + + + + QgsGeorefPluginGui + + + Georeferencer + + + + + All other files (*) + + + + + Open raster + + + + + %1 is not a supported raster data source + + + + + Unsupported Data Source + + + + + Raster loaded: %1 + + + + + Georeferencer - %1 + + + + + + + Transform: + + + + + + + + + + + + + + + Info + + + + + GDAL scripting is not supported for %1 transformation + + + + + Load GCP points + + + + + + GCP file + + + + + No GCP points to save + + + + + Save GCP points + + + + + + Please load raster to be georeferenced + + + + + + Help + + + + + Panels + + + + + Toolbars + + + + + Current transform parametrisation + + + + + Coordinate: + + + + + Current map coordinate + + + + + None + + + + + Coordinate of image(column/line) + + + + + Unable to open GCP points file %1 + + + + + Save GCPs + + + + + Save GCP points? + + + + + Failed to get linear transform parameters + + + + + World file exists + + + + + <p>The selected file already seems to have a world file! Do you want to replace it with the new world file?</p> + + + + + + Failed to compute GCP transform: Transform is not solvable + + + + + Error + + + + + Could not write to %1 + + + + + + + + map units + + + + + + pixels + + + + + Transformation parameters + + + + + Translation x + + + + + Translation y + + + + + Scale x + + + + + Scale y + + + + + Rotation [degrees] + + + + + Mean error [%1] + + + + + Residuals + + + + + yes + + + + + no + + + + + Translation (%1, %2) + + + + + Scale (%1, %2) + + + + + Rotation: %1 + + + + + Mean error: %1 + + + + + Copy in clipboard + + + + + %1 + + + + + GDAL script + + + + + Please set transformation type + + + + + Please set output raster name + + + + + %1 requires at least %2 GCPs. Please define more + + + + + Linear + + + + + Helmert + + + + + Polynomial 1 + + + + + Polynomial 2 + + + + + Polynomial 3 + + + + + Thin plate spline (TPS) + + + + + Projective + + + + + Not set + + + + + QgsGeorefPluginGuiBase + + + Georeferencer + + + + + + File + + + + + + View + + + + + + Edit + + + + + Settings + + + + + GCP table + + + + + toolBar + + + + + + Open raster + + + + + Ctrl+O + + + + + + Zoom In + + + + + Ctrl++ + + + + + + Zoom Out + + + + + Ctrl+- + + + + + + Zoom to Layer + + + + + Ctrl+Shift+F + + + + + + Pan + + + + + + Transformation settings + + + + + + Add point + + + + + Ctrl+A + + + + + + Delete point + + + + + Ctrl+D + + + + + + Quit + + + + + + Start georeferencing + + + + + Ctrl+G + + + + + + Generate GDAL script + + + + + Ctrl+C + + + + + + Link Georeferencer to QGis + + + + + + Link QGis to Georeferencer + + + + + + Save GCP points as... + + + + + Ctrl+S + + + + + + Load GCP points + + + + + Ctrl+L + + + + + Configure Georeferencer + + + + + Ctrl+P + + + + + Raster properties + + + + + + Move GCP point + + + + + Zoom Next + + + + + Zoom Last + + + + + Local histogram stretch + + + + + Full histogram stretch + + + + + QgsGlobePluginDialog + + + GDAL files + + + + + DEM files + + + + + + All files + + + + + Open raster file + + + + + Invalid Path: The file is either unreadable or does not exist + + + + + Invalid URL: + + + + + Do you want to add the datasource anyway? + + + + + Open 3D model file + + + + + Model files + + + + + QgsGlobePluginDialogGuiBase + + + Globe Settings + + + + + Elevation + + + + + + Type + + + + + Raster + + + + + TMS + + + + + URL/File + + + + + + ... + + + + + Up + + + + + Down + + + + + Add + + + + + Remove + + + + + Cache + + + + + Path + + + + + Model + + + + + Point Layer + + + + + 3D Model + + + + + Stereo + + + + + Stereo Mode + + + + + Screen distance (m) + + + + + Screen width (m) + + + + + Split stereo horizontal separation (px) + + + + + Split stereo vertical separation (px) + + + + + Split stereo vertical eye mapping + + + + + Screen height (m) + + + + + Eye separation (m) + + + + + Reset to defaults + + + + + Split stereo horizontal eye mapping + + + + + QgsGraduatedSymbolDialog + + + + + + Equal Interval + + + + + + + + + Quantiles + + + + + + + + Empty + + + + + QgsGraduatedSymbolDialogBase + + + graduated Symbol + + + + + Classification field + + + + + Mode + + + + + Number of classes + + + + + Classify + + + + + Delete class + + + + + QgsGraduatedSymbolRendererV2Model + + + Symbol + + + + + Value + + + + + Label + + + + + QgsGraduatedSymbolRendererV2Widget + + + Column + + + + + Symbol + + + + + change + + + + + Classes + + + + + Color ramp + + + + + Mode + + + + + Equal Interval + + + + + Quantile + + + + + Natural Breaks (Jenks) + + + + + Standard Deviation + + + + + Pretty Breaks + + + + + Classify + + + + + Add class + + + + + Delete + + + + + Delete all + + + + + Advanced + + + + + Symbol levels... + + + + + + + Error + + + + + There are no available color ramps. You can add them in Style Manager. + + + + + The selected color ramp is not available. + + + + + Renderer creation has failed. + + + + + QgsGrassAttributes + + + Column + + + + + Value + + + + + Type + + + + + Layer + + + + + Warning + + + + + ERROR + + + + + OK + + + + + QgsGrassAttributesBase + + + GRASS Attributes + + + + + Tab 1 + + + + + result + + + + + Update database record + + + + + Update + + + + + Add new category using settings in GRASS Edit toolbox + + + + + New + + + + + Delete selected category + + + + + Delete + + + + + QgsGrassBrowser + + + Tools + + + + + Add selected map to canvas + + + + + Copy selected map + + + + + Rename selected map + + + + + Delete selected map + + + + + Set current region to selected map + + + + + Refresh + + + + + + New name + + + + + + New name for layer "%1" + + + + + + + + Warning + + + + + Cannot copy map %1@%2 + + + + + + + <br>command: %1 %2<br>%3<br>%4 + + + + + Cannot rename map %1 + + + + + Information + + + + + Remove the selected layer(s) from QGis canvas before continue. + + + + + Question + + + + + Are you sure you want to delete %n selected layer(s)? + number of layers to delete + + + + + + + + Cannot delete map %1 + + + + + Cannot write new region + + + + + QgsGrassEdit + + + + + + + + + + + + + Warning + + + + + You are not owner of the mapset, cannot open the vector for editing. + + + + + Cannot open vector for update. + + + + + Edit tools + + + + + New point + + + + + New line + + + + + New boundary + + + + + New centroid + + + + + Move vertex + + + + + Add vertex + + + + + Delete vertex + + + + + Move element + + + + + Split line + + + + + Delete element + + + + + Edit attributes + + + + + Close + + + + + Background + + + + + Highlight + + + + + Dynamic + + + + + Point + + + + + Line + + + + + Boundary (no area) + + + + + Boundary (1 area) + + + + + Boundary (2 areas) + + + + + Centroid (in area) + + + + + Centroid (outside area) + + + + + Centroid (duplicate in area) + + + + + Node (1 line) + + + + + Node (2 lines) + + + + + Next not used + + + + + Manual entry + + + + + No category + + + + + Info + + + + + The table was created + + + + + Tool not yet implemented. + + + + + Cannot check orphan record: %1 + + + + + Orphan record was left in attribute table. <br>Delete the record? + + + + + Cannot delete orphan record: + + + + + Cannot describe table for field %1 + + + + + Left: %1 + + + + + -- Middle: %1 + + + + + -- Right: %1 + + + + + QgsGrassEditAddVertex + + + + + + Select line segment + + + + + New vertex position + + + + + Release + + + + + QgsGrassEditAttributes + + + Select element + + + + + QgsGrassEditBase + + + GRASS Edit + + + + + + Category + + + + + Mode + + + + + + Layer + + + + + Settings + + + + + Snapping in screen pixels + + + + + Symbology + + + + + Line width + + + + + Marker size + + + + + Disp + + + + + Color + + + + + + Type + + + + + Index + + + + + Table + + + + + Column + + + + + Length + + + + + Add Column + + + + + Create / Alter Table + + + + + QgsGrassEditDeleteLine + + + + + Select element + + + + + Delete selected / select next + + + + + Release selected + + + + + QgsGrassEditDeleteVertex + + + + + + Select vertex + + + + + Delete vertex + + + + + Release vertex + + + + + QgsGrassEditMoveLine + + + + + + Select element + + + + + New location + + + + + Release selected + + + + + QgsGrassEditMoveVertex + + + + + Select vertex + + + + + Select new position + + + + + QgsGrassEditNewLine + + + + + + + New vertex + + + + + + Undo last vertex + + + + + Close line + + + + + QgsGrassEditNewPoint + + + New centroid + + + + + New point + + + + + QgsGrassEditSplitLine + + + + Select position on line + + + + + Split the line + + + + + Release the line + + + + + + Select point on line + + + + + QgsGrassElementDialog + + + Cancel + + + + + Ok + + + + + <font color='red'>Enter a name!</font> + + + + + <font color='red'>This is name of the source!</font> + + + + + <font color='red'>Exists!</font> + + + + + Overwrite + + + + + QgsGrassMapcalc + + + Mapcalc tools + + + + + Add map + + + + + Add constant value + + + + + Add operator or function + + + + + Add connection + + + + + Select item + + + + + Delete selected item + + + + + Open + + + + + Save + + + + + Save as + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Modulus + + + + + Exponentiation + + + + + Equal + + + + + Not equal + + + + + Greater than + + + + + Greater than or equal + + + + + Less than + + + + + Less than or equal + + + + + And + + + + + Or + + + + + Absolute value of x + + + + + Inverse tangent of x (result is in degrees) + + + + + Inverse tangent of y/x (result is in degrees) + + + + + Current column of moving window (starts with 1) + + + + + Cosine of x (x is in degrees) + + + + + Convert x to double-precision floating point + + + + + Current east-west resolution + + + + + Exponential function of x + + + + + x to the power y + + + + + Convert x to single-precision floating point + + + + + Decision: 1 if x not zero, 0 otherwise + + + + + Decision: a if x not zero, 0 otherwise + + + + + Decision: a if x not zero, b otherwise + + + + + Decision: a if x > 0, b if x is zero, c if x < 0 + + + + + Convert x to integer [ truncates ] + + + + + Check if x = NULL + + + + + Natural log of x + + + + + Log of x base b + + + + + + Largest value + + + + + + Median value + + + + + + Smallest value + + + + + + Mode value + + + + + 1 if x is zero, 0 otherwise + + + + + Current north-south resolution + + + + + NULL value + + + + + Random value between a and b + + + + + Round x to nearest integer + + + + + Current row of moving window (Starts with 1) + + + + + Sine of x (x is in degrees) + sin(x) + + + + + Square root of x + sqrt(x) + + + + + Tangent of x (x is in degrees) + tan(x) + + + + + Current x-coordinate of moving window + + + + + Current y-coordinate of moving window + + + + + + Output + + + + + + + + + + + + + + + Warning + + + + + + Cannot get current region + + + + + Cannot check region of map %1 + + + + + Cannot get region of map %1 + + + + + No GRASS raster maps currently in QGIS + + + + + Cannot create 'mapcalc' directory in current mapset. + + + + + New mapcalc + + + + + Enter new mapcalc name: + + + + + Enter vector name + + + + + The file already exists. Overwrite? + + + + + + Save mapcalc + + + + + File name empty + + + + + Cannot open mapcalc file + + + + + The mapcalc schema (%1) not found. + + + + + Cannot open mapcalc schema (%1) + + + + + Cannot read mapcalc schema (%1): + + + + + +%1 +at line %2 column %3 + + + + + QgsGrassMapcalcBase + + + MainWindow + + + + + Output + + + + + QgsGrassModule + + + Module: %1 + + + + + + + + + + + + + + + Warning + + + + + The module file (%1) not found. + + + + + Cannot open module file (%1) + + + + + + Cannot read module file (%1) + + + + + + +%1 +at line %2 column %3 + + + + + Module %1 not found + + + + + Cannot find man page %1 + + + + + Please ensure you have the GRASS documentation installed. + + + + + Not available, description not found (%1) + + + + + Not available, cannot open description (%1) + + + + + Not available, incorrect description (%1) + + + + + + Run + + + + + + Cannot get input region + + + + + Input %1 outside current region! + + + + + Use Input Region + + + + + Output %1 exists! Overwrite? + + + + + Cannot find module %1 + + + + + Cannot start module: %1 + + + + + Stop + + + + + <B>Successfully finished</B> + + + + + <B>Finished with error</B> + + + + + <B>Module crashed or killed</B> + + + + + QgsGrassModuleBase + + + GRASS Module + + + + + Options + + + + + Output + + + + + Manual + + + + + TextLabel + + + + + Run + + + + + View output + + + + + Close + + + + + QgsGrassModuleField + + + Attribute field + + + + + Warning + + + + + 'layer' attribute in field tag with key= %1 is missing. + + + + + QgsGrassModuleFile + + + File + + + + + %1:&nbsp;missing value + + + + + %1:&nbsp;directory does not exist + + + + + QgsGrassModuleGdalInput + + + OGR/PostGIS/GDAL Input + + + + + + + Warning + + + + + Cannot find layeroption %1 + + + + + Cannot find whereoption %1 + + + + + Password + + + + + Select a layer + + + + + PostGIS driver in OGR does not support schemas!<br>Only the table name will be used.<br>It can result in wrong input if more tables of the same name<br>are present in the database. + + + + + %1:&nbsp;no input + + + + + QgsGrassModuleInput + + + Input + + + + + + + + Warning + + + + + Cannot find typeoption %1 + + + + + Cannot find values for typeoption %1 + + + + + Cannot find layeroption %1 + + + + + GRASS element %1 not supported + + + + + Use region of this map + + + + + Select a layer + + + + + %1:&nbsp;no input + + + + + QgsGrassModuleOption + + + + Warning + + + + + Cannot parse version_min %1 + + + + + Cannot parse version_max %1 + + + + + %1:&nbsp;missing value + + + + + QgsGrassModuleSelection + + + Selected categories + + + + + QgsGrassModuleStandardOptions + + + + + + + + + + + + Warning + + + + + Cannot find module %1 + + + + + Cannot start module %1 + + + + + <br>command: %1 %2<br>%3<br>%4 + + + + + Cannot read module description (%1): + + + + + +%1 +at line %2 column %3 + + + + + Cannot find key %1 + + + + + << Hide advanced options + + + + + Show advanced options >> + + + + + Item with key %1 not found + + + + + Item with id %1 not found + + + + + + Cannot get current region + + + + + Cannot check region of map %1 + + + + + Cannot set region of map %1 + + + + + QgsGrassNewMapset + + + Database + + + + + Location 1 + + + + + + System mapset + + + + + + + User's mapset + + + + + Location 2 + + + + + Enter path to GRASS database + + + + + The directory doesn't exist! + + + + + No writable locations, the database is not writable! + + + + + Enter location name! + + + + + The location exists! + + + + + Selected projection is not supported by GRASS! + + + + + + + + + + + + + + + Warning + + + + + Cannot create projection. + + + + + Cannot reproject previously set region, default region set. + + + + + North must be greater than south + + + + + East must be greater than west + + + + + Regions file (%1) not found. + + + + + Cannot open locations file (%1) + + + + + Cannot read locations file (%1): + + + + + +%1 +at line %2 column %3 + + + + + + + + Cannot create QgsCoordinateReferenceSystem + + + + + Cannot reproject selected region. + + + + + Cannot reproject region + + + + + Enter mapset name. + + + + + The mapset already exists + + + + + Database: + + + + + Location: + + + + + Mapset: + + + + + Create location + + + + + Cannot create new location: %1 + + + + + + + Create mapset + + + + + Cannot create new mapset directory + + + + + Cannot open DEFAULT_WIND + + + + + Cannot open WIND + + + + + + New mapset + + + + + New mapset successfully created, but cannot be opened: %1 + + + + + New mapset successfully created and set as current working mapset. + + + + + QgsGrassNewMapsetBase + + + New Mapset + + + + + GRASS Database + + + + + Tree + + + + + Comment + + + + + Example directory tree: + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">GRASS data are stored in tree directory structure. The GRASS database is the top-level directory in this tree structure.</p></body></html> + + + + + Database Error + + + + + + Database: + + + + + Browse... + + + + + Select existing directory or create a new one: + + + + + GRASS Location + + + + + Location + + + + + Select location + + + + + Create new location + + + + + Location Error + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS location is a collection of maps for a particular territory or project.</p></body></html> + + + + + + Projection + + + + + Projection Error + + + + + Coordinate system + + + + + Not defined + + + + + Default GRASS Region + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS region defines a workspace for raster modules. The default region is valid for one location. It is possible to set a different region in each mapset. It is possible to change the default location region later.</p></body></html> + + + + + Set current QGIS extent + + + + + Set + + + + + Region Error + + + + + S + + + + + W + + + + + E + + + + + N + + + + + + Mapset + + + + + New mapset: + + + + + Mapset Error + + + + + <p align="center">Existing masets</p> + + + + + Owner + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS mapset is a collection of maps used by one user. A user can read maps from all mapsets in the location but he can open for writing only his mapset (owned by user).</p></body></html> + + + + + Create New Mapset + + + + + Location: + + + + + Mapset: + + + + + QgsGrassPlugin + + + GrassVector + + + + + 0.1 + + + + + GRASS layer + + + + + Plugins + + + + + Open mapset + + + + + New mapset + + + + + Close mapset + + + + + Add GRASS vector layer + + + + + Add GRASS raster layer + + + + + + Open GRASS tools + + + + + Display Current Grass Region + + + + + Edit Current Grass Region + + + + + Edit Grass Vector layer + + + + + Create new Grass Vector + + + + + Adds a GRASS vector layer to the map canvas + + + + + Adds a GRASS raster layer to the map canvas + + + + + Displays the current GRASS region as a rectangle on the map canvas + + + + + Edit the current GRASS region + + + + + Edit the currently selected GRASS vector layer. + + + + + + + + + + + + + + + + + + + + + + + + &GRASS + + + + + GRASS + + + + + + + + + + + + + + + + + + + Warning + + + + + Cannot open vector %1 in mapset %2 on level 2 (topology not available, try to rebuild topology using v.build module). + + + + + Cannot open vector %1 in mapset %2 + + + + + Cannot open GRASS vector: + %1 + + + + + + GRASS Edit is already running. + + + + + + New vector name + + + + + Cannot create new vector: %1 + + + + + New vector created but cannot be opened by data provider. + + + + + Cannot start editing. + + + + + Cannot open vector for update. + + + + + GISDBASE, LOCATION_NAME or MAPSET is not set, cannot display current region. + + + + + Cannot read current region: %1 + + + + + Cannot open the mapset. %1 + + + + + Cannot close mapset. %1 + + + + + Cannot close current mapset. %1 + + + + + Cannot open GRASS mapset. %1 + + + + + QgsGrassProvider + + + GRASS vector map %1 does not have topology. Build topology? + + + + + QgsGrassRasterProvider + + + cellhd file %1 does not exist + + + + + Groups not yet supported + + + + + QgsGrassRegion + + + + + Warning + + + + + GISDBASE, LOCATION_NAME or MAPSET is not set, cannot display current region. + + + + + Cannot read current region: %1 + + + + + Cannot write region + + + + + QgsGrassRegionBase + + + GRASS Region Settings + + + + + Extent + + + + + North + + + + + West + + + + + East + + + + + South + + + + + Select the extent by dragging on canvas +or change the following values + + + + + Resolution + + + + + Cell width + + + + + Cell height + + + + + Columns + + + + + Rows + + + + + Border + + + + + Color + + + + + Width + + + + + QgsGrassSelect + + + Select GRASS Vector Layer + + + + + Select GRASS Raster Layer + + + + + Select GRASS mapcalc schema + + + + + Select GRASS Mapset + + + + + Choose existing GISDBASE + + + + + Wrong GISDBASE, no locations available. + + + + + Wrong GISDBASE + + + + + Select a map. + + + + + No map + + + + + No layer + + + + + No layers available in this map + + + + + QgsGrassSelectBase + + + Add GRASS Layer + + + + + Gisdbase + + + + + Location + + + + + Mapset + + + + + Map name + + + + + Select or type map name (wildcards '*' and '?' accepted for rasters) + + + + + Layer + + + + + Browse... + + + + + QgsGrassShell + + + Ctrl+Shift+V + + + + + Ctrl+Shift+C + + + + + + Warning + + + + + + Cannot rename the lock file %1 + + + + + QgsGrassTools + + + GRASS Tools + + + + + + GRASS Tools: %1/%2 + + + + + Browser + + + + + Cannot start command shell (%1) + + + + + + + + Warning + + + + + GRASS Shell is not compiled. + + + + + The config file (%1) not found. + + + + + Cannot open config file (%1). + + + + + Cannot read config file (%1): + + + + + +%1 +at line %2 column %3 + + + + + QgsGrassToolsBase + + + Grass Tools + + + + + Modules Tree + + + + + 1 + + + + + Modules List + + + + + Filter + + + + + QgsHandleBadLayers + + + Browse + + + + + Layer name + + + + + Type + + + + + Provider + + + + + New file + + + + + New datasource + + + + + none + + + + + Select file to replace '%1' + + + + + Please select exactly one file. + + + + + Select new directory of selected files + + + + + All files (*) + + + + + + Unhandled layer will be lost. + + + + + + There are still %n unhandled layer(s), that will be lost if you closed now. + unhandled layers + + + + + + + + QgsHandleBadLayersBase + + + Handle bad layers + + + + + Layer name + + + + + Type + + + + + Provider + + + + + Original filename + + + + + New filename + + + + + Original datasource + + + + + New datasource + + + + + QgsHelpViewer + + + <h3>Oops! QGIS can't find help for this form.</h3>The help file for %1 was not found for your language<br>If you would like to create it, contact the QGIS development team + + + + + Quantum GIS Help + + + + + Quantum GIS Help - %1 + + + + + + Error + + + + + Failed to get the help text from the database: + %1 + + + + + The QGIS help database is not installed + + + + + QgsHelpViewerBase + + + + QGIS Help + + + + + about:blank + + + + + &Home + + + + + Alt+H + + + + + &Forward + + + + + Alt+F + + + + + &Back + + + + + Alt+B + + + + + &Close + + + + + Alt+C + + + + + QgsHtmlAnnotationDialog + + + Delete + + + + + html + + + + + QgsHttpTransaction + + + WMS Server responded unexpectedly with HTTP Status Code %1 (%2) + + + + + Received %1 of %2 bytes + + + + + Received %1 bytes (total unknown) + + + + + HTTP response completed, however there was an error: %1 + + + + + HTTP transaction completed, however there was an error: %1 + + + + + Not connected + + + + + Looking up '%1' + + + + + Connecting to '%1' + + + + + Sending request '%1' + + + + + Receiving reply + + + + + Response is complete + + + + + Closing down connection + + + + + Network timed out after %n second(s) of inactivity. +This may be a problem in your network connection or at the WMS server. + inactivity timeout + + + + + + + + QgsIDWInterpolatorDialogBase + + + Dialog + + + + + Distance coefficient P + + + + + QgsIdentifyResults + + + Identify Results + + + + + Feature + + + + + Value + + + + + + (Derived) + + + + + (Actions) + + + + + + + Edit feature form + + + + + + + View feature form + + + + + Print + + + + + Zoom to feature + + + + + Copy attribute value + + + + + Copy feature attributes + + + + + Clear results + + + + + Clear highlights + + + + + Highlight all + + + + + Highlight layer + + + + + Layer properties... + + + + + Expand all + + + + + Collapse all + + + + + Attribute changes + + + + + Could not open url + + + + + Could not open URL '%1' + + + + + QgsIdentifyResultsBase + + + Identify Results + + + + + Expand tree. + + + + + + + + ... + + + + + Collapse tree. + + + + + New results will be expanded by default. + + + + + Print selected HTML response. + + + + + QgsImageWarper + + + Progress indication + + + + + QgsInterpolationDialog + + + + Triangular interpolation (TIN) + + + + + + Inverse Distance Weighting (IDW) + + + + + No input data for interpolation + + + + + Please add one or more input layers + + + + + Output file name invalid + + + + + Please enter a valid output file name + + + + + + Break lines + + + + + + Structure lines + + + + + Points + + + + + Save interpolated raster as... + + + + + QgsInterpolationDialogBase + + + Interpolation plugin + + + + + Input + + + + + Vector layers + + + + + Interpolation attribute + + + + + Use z-Coordinate for interpolation + + + + + Add + + + + + Remove + + + + + Vector layer + + + + + Attribute + + + + + Type + + + + + Output + + + + + Interpolation method + + + + + + ... + + + + + Number of columns + + + + + Number of rows + + + + + Cellsize X + + + + + Cellsize Y + + + + + X min + + + + + X max + + + + + Y min + + + + + Y max + + + + + Set to current extent + + + + + Output file + + + + + Add result to project + + + + + QgsInterpolationPlugin + + + + + &Interpolation + + + + + QgsItemPositionDialogBase + + + Set item position + + + + + Item reference point + + + + + Coordinates + + + + + x + + + + + y + + + + + Width + + + + + Height + + + + + Set Position + + + + + Close + + + + + QgsLUDialogBase + + + Enter class bounds + + + + + Lower value + + + + + Upper value + + + + + QgsLabelDialog + + + Auto + + + + + QgsLabelDialogBase + + + Form1 + + + + + Label Properties + + + + + + Placement + + + + + Below Right + + + + + Right + + + + + Below + + + + + Over + + + + + Above + + + + + Left + + + + + Below Left + + + + + Above Right + + + + + Above Left + + + + + Use scale dependent rendering + + + + + Maximum + + + + + Minimum + + + + + Buffer labels + + + + + Buffer size + + + + + + + In points + + + + + + + In map units + + + + + + Color + + + + + % + + + + + Transparency + + + + + Offset + + + + + X offset + + + + + Y offset + + + + + Basic label options + + + + + Field containing label + + + + + Default label + + + + + Font size + + + + + + Angle (deg) + + + + + ° + + + + + Font + + + + + Multiline labels? + + + + + Label only selected features + + + + + Advanced + + + + + Data defined placement + + + + + Data defined properties + + + + + &Font family + + + + + &Bold + + + + + &Italic + + + + + &Underline + + + + + &Size + + + + + Size units + + + + + &Color + + + + + Strikeout + + + + + Data defined buffer + + + + + Transparency: + + + + + Size: + + + + + Data defined position + + + + + X Coordinate + + + + + Y Coordinate + + + + + X Offset (pts) + + + + + Y Offset (pts) + + + + + Preview: + + + + + QGIS Rocks! + + + + + QgsLabelPropertyDialog + + + + Label font + + + + + Font color + + + + + Buffer color + + + + + QgsLabelPropertyDialogBase + + + Label properties + + + + + Text + + + + + + Font + + + + + + Size + + + + + Display + + + + + Scale-based + + + + + Min + + + + + Max + + + + + Show label + + + + + Ignores priority and permits collisions/overlaps + + + + + Always show (exceptions above) + + + + + Buffer + + + + + Position + + + + + Label distance + + + + + X Coordinate + + + + + Y Coordinate + + + + + Horizontal alignment + + + + + Vertical alignment + + + + + Rotation + + + + + QgsLabelingGui + + + (not found!) + + + + + Sample @ %1 pts (using map units) + + + + + Sample @ %1 pts (using map units, BUFFER IN MILLIMETERS) + + + + + Sample + + + + + Sample (BUFFER NOT SHOWN, in map units) + + + + + Expression based label + + + + + Mixed Case + + + + + All Uppercase + + + + + All Lowercase + + + + + Title Case + + + + + QgsLabelingGuiBase + + + Layer labeling settings + + + + + Label this layer with + + + + + Expression + + + + + + + + + + + + ... + + + + + Label settings + + + + + Sample + + + + + + Lorem Ipsum + + + + + Sample text + + + + + Reset sample text + + + + + Size for sample text in map units + + + + + Sample background color + + + + + Formatted numbers + + + + + Decimal places + + + + + Show plus sign + + + + + Multiple lines + + + + + Wrap on character + + + + + + Line height + + + + + Line height spacing for multi-line text + + + + + line + + + + + Alignment + + + + + Paragraph style alignment of multi-line text + + + + + + Left + + + + + Center + + + + + + Right + + + + + Text style + + + + + Available typeface styles + + + + + Underlined Text + + + + + U + + + + + Strikeout text + + + + + S + + + + + points + + + + + + + map units + + + + + Style + + + + + + + Transparency + + + + + + % + + + + + TextLabel + + + + + Capitalization style of text + + + + + + Word spacing + + + + + + Letter spacing + + + + + + Space in pixels or map units, relative to size unit choice + + + + + Type case + + + + + Font + + + + + + + Color + + + + + + + Size + + + + + Buffer + + + + + + mm + + + + + Pen Join style + + + + + Color area inside of pen stroke + + + + + Pixel size-based visibility + + + + + Labels will not show if larger than this on screen + + + + + + px + + + + + + Maximum + + + + + Labels will not show if smaller than this on screen + + + + + + Minimum + + + + + + + + + < + + + + + Label in Map Units + + + + + Scale-based visibility + + + + + + Label + + + + + Line direction symbols + + + + + Symbol(s) + + + + + > + + + + + + Placement + + + + + left/right + + + + + above + + + + + below + + + + + Reverse direction + + + + + Advanced + + + + + Priority + + + + + Low + + + + + High + + + + + Around point + + + + + Offset from point + + + + + Parallel + + + + + Curved + + + + + Horizontal + + + + + Offset from centroid + + + + + Around centroid + + + + + Horizontal (slow) + + + + + Free (slow) + + + + + Using perimeter + + + + + Centroid of + + + + + visible polygon + + + + + whole polygon + + + + + + In mm + + + + + + In map units + + + + + + degrees + + + + + + + Rotation + + + + + + + Label distance + + + + + Above line + + + + + On line + + + + + Below line + + + + + Line orientation dependent position + + + + + outside + + + + + inside + + + + + Maximum angle between curved characters + + + + + X + + + + + Y + + + + + Above Right + + + + + Above Left + + + + + Over + + + + + Above + + + + + Below Left + + + + + Below + + + + + Below Right + + + + + Options + + + + + Merge connected lines to avoid duplicate labels + + + + + Label every part of multi-part features + + + + + Suppress labeling of features smaller than + + + + + mm + + + + + Features don't act as obstacles for labels + + + + + Automated placement settings + + + + + Show all labels for this layer (including colliding labels) + + + + + Show upside-down labels + + + + + never + + + + + when rotation defined + + + + + always + + + + + Limit number of features to be labeled to + + + + + Number of features sent to labeling engine, though not all may be labeled + + + + + Data defined settings + + + + + Buffer properties + + + + + Buffer size + + + + + Buffer color + + + + + Buffer transparency + + + + + Position + + + + + X Coordinate + + + + + Y Coordinate + + + + + Horizontal alignment + + + + + Vertical alignment + + + + + Uncheck to write labeling engine derived rotation on pin and NULL on unpin + + + + + Preserve existing rotation values during label pin/unpin operations + + + + + Display properties + + + + + Always show + + + + + Minimum scale + + + + + Show label + + + + + Maximum scale + + + + + Font properties + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Strikeout + + + + + Font family + + + + + Capitalization + + + + + Multi-line align + + + + + Add label columns to attribute table + + + + + About data defined values + + + + + QgsLayerPropertiesWidget + + + Outline: %1 + + + + + QgsLegend + + + + sub-group + + + + + + group + + + + + Legend context + + + + + &Make to Toplevel Item + + + + + Zoom to Group + + + + + &Remove + + + + + &Set Group CRS + + + + + Re&name + + + + + &Group Selected + + + + + Copy Style + + + + + Paste Style + + + + + &Add New Group + + + + + &Expand All + + + + + &Collapse All + + + + + &Update Drawing Order + + + + + QgsLegendLayer + + + &Zoom to Layer Extent + + + + + &Zoom to Best Scale (100%) + + + + + &Stretch Using Current Extent + + + + + &Show in Overview + + + + + &Remove + + + + + &Duplicate + + + + + &Set Layer CRS + + + + + Set &Project CRS from Layer + + + + + &Open Attribute Table + + + + + + Save As... + + + + + Save Selection As... + + + + + &Query... + + + + + Show Feature Count + + + + + &Properties + + + + + Updating feature count for layer %1 + + + + + Abort + + + + + QgsLegendModel + + + Group + + + + + QgsManageConnectionsDialog + + + Select all + + + + + Clear selection + + + + + Select connections to import + + + + + Import + + + + + Export + + + + + Export/import error + + + + + You should select at least one connection from list. + + + + + Save connections + + + + + XML files (*.xml *.XML) + + + + + Saving connections + + + + + Cannot write file %1: +%2. + + + + + + + + + + + + + + + + + + + + + Loading connections + + + + + + Cannot read file %1: +%2. + + + + + + Parse error at line %1, column %2: +%3 + + + + + The file is not an WMS connections exchange file. + + + + + + The file is not an WFS connections exchange file. + + + + + The file is not an WCS connections exchange file. + + + + + + + The file is not an PostGIS connections exchange file. + + + + + The file is not an MSSQL connections exchange file. + + + + + The file is not an %1 connections exchange file. + + + + + + + + Connection with name '%1' already exists. Overwrite? + + + + + QgsManageConnectionsDialogBase + + + Manage connections + + + + + Select connections to export + + + + + QgsMapCanvas + + + Could not draw %1 because: +%2 + COMMENTED OUT + + + + + Could not draw %1 because: +%2 + + + + + QgsMapCoordsDialog + + + From map canvas + + + + + QgsMapCoordsDialogBase + + + Enter map coordinates + + + + + Enter X and Y coordinates (DMS (dd mm ss.ss), DD (dd.dd) or projected coordinates (mmmm.mm)) which correspond with the selected point on the image. Alternatively, click the button with icon of a pencil and then click a corresponding point on map canvas of QGIS to fill in coordinates of that point. + + + + + X / East: + + + + + Y / North: + + + + + Snap to background layers + + + + + QgsMapLayer + + + + Specify CRS for layer %1 + + + + + + + %1 at line %2 column %3 + + + + + style not found in database + + + + + Error: qgis element could not be found in %1 + + + + + + Loading style file %1 failed because: +%2 + + + + + + + Could not save symbology because: +%1 + + + + + + The directory containing your dataset needs to be writable! + + + + + + Created default style file as %1 + + + + + ERROR: Failed to created default style file as %1. Check file permissions and retry. + + + + + User database could not be opened. + + + + + The style table could not be created. + + + + + The style %1 was saved to database + + + + + The style %1 was updated in the database. + + + + + The style %1 could not be updated in the database. + + + + + The style %1 could not be inserted into database. + + + + + ERROR: Failed to created SLD style file as %1. Check file permissions and retry. + + + + + Unable to open file %1 + + + + + QgsMapRenderer + + + + Transform error caught: %1 + + + + + + CRS + + + + + QgsMapToolAddFeature + + + add feature + + + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer cannot be added to + + + + + The data provider for this layer does not support the addition of features. + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + + + Wrong editing tool + + + + + Cannot apply the 'capture point' tool on this vector layer + + + + + + Coordinate transform error + + + + + + Cannot transform the point to the layers coordinate system + + + + + + Feature added + + + + + Cannot apply the 'capture line' tool on this vector layer + + + + + Cannot apply the 'capture polygon' tool on this vector layer + + + + + + + + Error + + + + + + Cannot add feature. Unknown WKB type + + + + + The feature could not be added because removing the polygon intersections would change the geometry type + + + + + An error was reported during intersection removal + + + + + QgsMapToolAddPart + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + + No feature selected. Please select a feature with the selection tool or in the attribute table + + + + + Several features are selected. Please select only one feature to which an part should be added. + + + + + Error. Could not add part. + + + + + + Part added + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Selected feature is not multi part. + + + + + New part's geometry is not valid. + + + + + New polygon ring not disjoint with existing polygons. + + + + + Several features are selected. Please select only one feature to which an island should be added. + + + + + Selected geometry could not be found + + + + + Error, could not add part + + + + + QgsMapToolAddRing + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Ring added + + + + + A problem with geometry type occured + + + + + The inserted Ring is not closed + + + + + The inserted Ring is not a valid geometry + + + + + The inserted Ring crosses existing rings + + + + + The inserted Ring is not contained in a feature + + + + + An unknown error occured + + + + + Error, could not add ring + + + + + QgsMapToolAddVertex + + + Added vertex + + + + + QgsMapToolCapture + + + Validation started. + + + + + Validation finished. + + + + + QgsMapToolChangeLabelProperties + + + Label properties changed + + + + + QgsMapToolDeletePart + + + + Delete part + + + + + This isn't a multipart geometry. + + + + + Part of multipart feature deleted + + + + + Couldn't remove the selected part. + + + + + QgsMapToolDeleteRing + + + Ring deleted + + + + + QgsMapToolDeleteVertex + + + Vertex deleted + + + + + QgsMapToolFeatureAction + + + No active vector layer + + + + + To run an action, you must choose a vector layer by clicking on its name in the legend + + + + + No actions available + + + + + The active vector layer has no defined actions + + + + + No features at this position found. + + + + + QgsMapToolIdentify + + + No active layer + + + + + To identify features, you must choose an active layer by clicking on its name in the legend + + + + + Identifying on %1... + + + + + Identifying done. + + + + + No features at this position found. + + + + + + (clicked coordinate) + + + + + Length + + + + + firstX + attributes get sorted; translation for lastX should be lexically larger than this one + + + + + firstY + + + + + lastX + attributes get sorted; translation for firstX should be lexically smaller than this one + + + + + lastY + + + + + Area + + + + + Perimeter + + + + + feature id + + + + + new feature + + + + + Raster + + + + + QgsMapToolMoveFeature + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Feature moved + + + + + QgsMapToolMoveLabel + + + Label moved + + + + + QgsMapToolMoveVertex + + + Vertex moved + + + + + QgsMapToolNodeTool + + + Inserted vertex + + + + + QgsMapToolOffsetCurve + + + Offset curve + + + + + Offset: + + + + + Geometry error + + + + + Creating offset geometry failed + + + + + QgsMapToolPinLabels + + + Label pinned + + + + + Label unpinned + + + + + QgsMapToolReshape + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Reshape + + + + + QgsMapToolRotateLabel + + + Label rotated + + + + + QgsMapToolRotatePointSymbols + + + No point feature + + + + + No point feature was detected at the clicked position. Please click closer to the feature or enhance the search tolerance under Settings->Options->Digitizing->Serch radius for vertex edits + + + + + No rotation Attributes + + + + + The active point layer does not have a rotation attribute + + + + + Rotate symbol + + + + + QgsMapToolShowHideLabels + + + Label hidden + + + + + Label shown + + + + + QgsMapToolSimplify + + + Geometry simplified + + + + + + Unsupported operation + + + + + Multipart features are not supported for simplification. + + + + + This feature cannot be simplified. Check if feature has enough vertices to be simplified. + + + + + QgsMapToolSplitFeatures + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Features split + + + + + + + No feature split done + + + + + If there are selected features, the split tool only applies to the selected ones. If you like to split all features under the split line, clear the selection + + + + + Cut edges detected. Make sure the line splits features into multiple parts. + + + + + The geometry is invalid. Please repair before trying to split it. + + + + + Split error + + + + + An error occured during feature splitting + + + + + QgsMapToolVertexEdit + + + Snap tolerance + + + + + Don't show this message again + + + + + Could not snap segment. + + + + + Have you set the tolerance in Settings > Project Properties > General? + + + + + QgsMapserverExportBase + + + MapServer Export: Save project to MapFile + + + + + Use current project + + + + + Full path to the QGIS project file to export to MapServer map format + + + + + + + + Browse... + + + + + + Map file + + + + + Name for the map file to be created from the QGIS project file + + + + + Save As... + + + + + If checked, only the layer information will be processed + + + + + LAYER information only + + + + + Map + + + + + Name + + + + + Prefix attached to map, scalebar and legend GIF filenames created using this MapFile + + + + + Image type + + + + + Rendering + + + + + Width + + + + + Height + + + + + Units + + + + + MapServer url + + + + + The URL to the mapserver executable. + +For example: +http://my.host.com/cgi-bin/mapserv.exe + + + + + Paths + + + + + Inline + + + + + Symbolset + + + + + Use templates + + + + + Path to the MapServer template file + + + + + The file name of the fonts file. + + + + + Fontset + + + + + The file name of the symbols file. + + + + + Template + + + + + Header + + + + + Footer + + + + + Layer/label options + + + + + Forces labels on, regardless of collisions. Available only for cached labels. + + + + + Force + + + + + Should text be antialiased? Note that this requires more available colors, decreases drawing performance, and results in slightly larger output images. + + + + + Anti-alias + + + + + Can text run off the edge of the map? + + + + + Partials + + + + + Check to allow MapServer to return data in GML format. Useful when used with WMS GetFeatureInfo operations. + + + + + Dump + + + + meters + + + + dd + + + + feet + + + + miles + + + + inches + + + + kilometers + + + + + QgsMeasureBase + + + Measure + + + + + Total + + + + + Segments + + + + + QgsMeasureDialog + + + &New + + + + + The calculations are based on: + + + + + Project CRS transformation is turned off. + + + + + Canvas units setting is taken from project properties setting (%1). + + + + + Ellipsoidal calculation is not possible, as project CRS is undefined. + + + + + Project CRS transformation is turned on and ellipsoidal calculation is selected. + + + + + The coordinates are transformed to the chosen ellipsoid (%1), and the result is in meters + + + + + Project CRS transformation is turned on but ellipsoidal calculation is not selected. + + + + + The canvas units setting is taken from the project CRS (%1). + + + + + Finally, the value is converted from %2 to %3. + + + + + Segments [%1] + + + + + QgsMeasureTool + + + Incorrect measure results + + + + + <p>This map is defined with a geographic coordinate system (latitude/longitude) but the map extents suggests that it is actually a projected coordinate system (e.g., Mercator). If so, the results from line or area measurements will be incorrect.</p><p>To fix this, explicitly set an appropriate map coordinate system using the <tt>Settings:Project Properties</tt> menu. + + + + + QgsMemoryProvider + + + Whole number (integer) + + + + + Decimal number (real) + + + + + Text (string) + + + + + QgsMergeAttributesDialog + + + Id + + + + + Merge + + + + + + + feature %1 + + + + + + Minimum + + + + + + Maximum + + + + + + Median + + + + + + Sum + + + + + + Concatenation + + + + + + Mean + + + + + + + Skip attribute + + + + + Skipped + + + + + QgsMergeAttributesDialogBase + + + Merge feature attributes + + + + + Take attributes from selected feature + + + + + Remove feature from selection + + + + + QgsMessageBar + + + Remaining messages + + + + + Close all + + + + + Close + + + + + more + + + + + QgsMessageLogViewer + + + QGIS Log + + + + + No messages. + + + + + + %1 message(s) logged. + + + + + General + + + + + Timestamp + + + + + Message + + + + + Level + + + + + QgsMessageViewer + + + QGIS Message + + + + + Don't show this message again + + + + + QgsMssqlConnectionItem + + + Edit... + + + + + Delete + + + + + %1: Not a vector layer! + + + + + + %1: OK! + + + + + + Import to MSSQL database + + + + + Failed to import some layers! + + + + + + + Import was successful. + + + + + QgsMssqlNewConnection + + + Saving passwords + + + + + WARNING: You have opted to save your password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. + + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + + + + Test connection + + + + + Connection failed - Host name hasn't been specified. + + + + + + + Connection failed - Database name hasn't been specified. + + + + + + + Connection to %1 was successful + + + + + QgsMssqlNewConnectionBase + + + Create a New MSSQL connection + + + + + Connection Information + + + + + Name + + + + + Provider/DSN + + + + + Host + + + + + Database + + + + + Username + + + + + Password + + + + + Name of the new connection + + + + + Trusted Connection + + + + + Save Username + + + + + &Test Connect + + + + + Save Password + + + + + Only look in the geometry_columns metadata table + + + + + Also list tables with no geometry + + + + + Use estimated table parameters + + + + + QgsMssqlProvider + + + 8 Bytes integer + + + + + 4 Bytes integer + + + + + 2 Bytes integer + + + + + 1 Bytes integer + + + + + Decimal number (numeric) + + + + + Decimal number (decimal) + + + + + Decimal number (real) + + + + + Decimal number (double) + + + + + Text, fixed length (char) + + + + + Text, limited variable length (varchar) + + + + + Text, fixed length unicode (nchar) + + + + + Text, limited variable length unicode (nvarchar) + + + + + Text, unlimited length (text) + + + + + Text, unlimited length unicode (ntext) + + + + + QgsMssqlRootItem + + + New Connection... + + + + + QgsMssqlSchemaItem + + + %1 as %2 in %3 + + + + + as geometryless table + + + + + QgsMssqlSourceSelect + + + Add MSSQL Table(s) + + + + + &Add + + + + + &Build query + + + + + Build query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Schema + + + + + + Table + + + + + + Type + + + + + + Geometry column + + + + + + Primary key column + + + + + + SRID + + + + + + Sql + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + Select Table + + + + + You must select a table in order to add a layer. + + + + + + + + MSSQL Provider + + + + + Stop + + + + + Connect + + + + + QgsMssqlSourceSelectDelegate + + + Select... + + + + + QgsMssqlTableModel + + + Schema + + + + + Table + + + + + Type + + + + + Geometry column + + + + + SRID + + + + + Primary key column + + + + + Select at id + + + + + Sql + + + + + Detecting... + + + + + + + + Select... + + + + + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). + + + + + Enter... + + + + + Point + + + + + Multipoint + + + + + Line + + + + + Multiline + + + + + Polygon + + + + + Multipolygon + + + + + No Geometry + + + + + Unknown Geometry + + + + + QgsMultiBandColorRendererWidget + + + + + Not set + + + + + No enhancement + + + + + Stretch to MinMax + + + + + Stretch and clip to MinMax + + + + + Clip to MinMax + + + + + Red + + + + + Green + + + + + Blue + + + + + QgsMultiBandColorRendererWidgetBase + + + Form + + + + + Red band + + + + + Green band + + + + + Blue band + + + + + Min + + + + + Max + + + + + Contrast enhancement + + + + + QgsNetworkAccessManager + + + Network request %1 timed out + + + + + Network + + + + + QgsNewHttpConnection + + + Create a new %1 connection + + + + + Ignore GetCoverage URI reported in capabilities + + + + + Ignore axis orientation + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + Saving passwords + + + + + WARNING: You have entered a password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. +Note: giving the password is optional. It will be requested interactivly, when needed. + + + + + QgsNewHttpConnectionBase + + + Create a new WMS connection + + + + + Connection details + + + + + URL + + + + + If the service requires basic authentication, enter a user name and optional password + + + + + Password + + + + + &User name + + + + + Name + + + + + Name of the new connection + + + + + HTTP address of the Web Map Server + + + + + Ignore GetFeatureInfo URI reported in capabilities + + + + + Ignore GetMap URI reported in capabilities + + + + + Ignore axis orientation (WMS 1.3/WMTS) + + + + + Invert axis orientation + + + + + QgsNewOgrConnection + + + + Test connection + + + + + Connection failed - Check settings and try again. + +Extended error information: +%1 + + + + + Connection to %1 was successful + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + QgsNewOgrConnectionBase + + + Create a New OGR Database connection + + + + + Connection Information + + + + + Type + + + + + Name + + + + + Name of the new connection + + + + + Host + + + + + Database + + + + + Port + + + + + Username + + + + + Password + + + + + Save Password + + + + + &Test Connect + + + + + QgsNewSpatialiteLayerDialog + + + Text data + + + + + Whole number + + + + + Decimal number + + + + + New SpatiaLite Database File + + + + + SpatiaLite + + + + + + + + SpatiaLite Database + + + + + Unable to open the database + + + + + Error + + + + + Failed to load SRIDS: %1 + + + + + @ + + + + + Registered new database! + + + + + Unable to open the database: %1 + + + + + Error Creating SpatiaLite Table + + + + + Failed to create the SpatiaLite table %1. The database returned: +%2 + + + + + Error Creating Geometry Column + + + + + Failed to create the geometry column. The database returned: +%1 + + + + + Error Creating Spatial Index + + + + + Failed to create the spatial index. The database returned: +%1 + + + + + Invalid Layer + + + + + %1 is an invalid layer and cannot be loaded. + + + + + QgsNewSpatialiteLayerDialogBase + + + New Spatialite Layer + + + + + Database + + + + + Create a new Spatialite database + + + + + ... + + + + + Layer name + + + + + + Name for the new layer + + + + + Geometry column + + + + + geometry + + + + + + + Type + + + + + Point + + + + + Line + + + + + Polygon + + + + + MultiPoint + + + + + Multiline + + + + + Multipolygon + + + + + Spatial Reference Id + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify CRS + + + + + Add an integer id field as the primary key for the new layer + + + + + Create an autoincrementing primary key + + + + + New attribute + + + + + + Name + + + + + An attribute name + + + + + Add attribute to list + + + + + Add to attributes list + + + + + Attributes list + + + + + Delete selected attribute + + + + + Remove attribute + + + + + QgsNewVectorLayerDialog + + + Text data + + + + + Whole number + + + + + Decimal number + + + + + ESRI Shapefile + + + + + Save As + + + + + QgsNewVectorLayerDialogBase + + + New Vector Layer + + + + + File format + + + + + + + Type + + + + + Point + + + + + Line + + + + + Polygon + + + + + New attribute + + + + + + Name + + + + + + Width + + + + + + Precision + + + + + Add attribute to list + + + + + Add to attributes list + + + + + Attributes list + + + + + Delete selected attribute + + + + + Remove attribute + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify CRS + + + + + QgsOGRSublayersDialog + + + Layer ID + + + + + Layer name + + + + + Nb of features + + + + + Geometry type + + + + + QgsOGRSublayersDialogBase + + + Select layers to load + + + + + 1 + + + + + QgsOSMDataProvider + + + Open Street Map format + + + + + QgsOWSConnection + + + WMS Password for %1 + + + + + QgsOWSConnectionItem + + + Edit... + + + + + Delete + + + + + QgsOWSSourceSelect + + + &Add + + + + + Add selected layers to map + + + + + Always cache + + + + + Prefer cache + + + + + Prefer network + + + + + Always network + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + Coordinate Reference System (%n available) + crs count + + + + + + + + Coordinate Reference System + + + + + Could not understand the response: +%1 + + + + + WMS proxies + + + + + Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. + + + + + parse error at row %1, column %2: %3 + + + + + network error: %1 + + + + + The %1 connection already exists. Do you want to overwrite it? + + + + + Confirm Overwrite + + + + + QgsOWSSourceSelectBase + + + Add Layer(s) from a Server + + + + + Ready + + + + + + Layers + + + + + C&onnect + + + + + &New + + + + + Edit + + + + + Delete + + + + + Load connections from file + + + + + Load + + + + + Save connections to file + + + + + Save + + + + + Adds a few example WMS servers + + + + + Add default servers + + + + + ID + + + + + Name + + + + + + Title + + + + + Abstract + + + + + Time + + + + + Coordinate Reference System: + + + + + Selected Coordinate Reference System + + + + + Change ... + + + + + + Format + + + + + Options + + + + + Layer name + + + + + Tile size + + + + + Feature limit for GetFeatureInfo + + + + + Cache + + + + + Cache preference + +Always cache: load from cache, even if it expired + +Prefer cache: load from cache if available, otherwise load from network. Note that this can return possibly stale (but not expired) items from cache + +Prefer network: default value; load from the network if the cached entry is older than the network entry + +Always network: always load from network and do not check if the cache has a valid entry (similar to the "Reload" feature in browsers) + + + + + + Layer Order + + + + + Move selected layer UP + + + + + Up + + + + + Move selected layer DOWN + + + + + Down + + + + + Layer + + + + + Style + + + + + Tilesets + + + + + Styles + + + + + Size + + + + + CRS + + + + + Server Search + + + + + Search + + + + + Description + + + + + URL + + + + + Add selected row to WMS list + + + + + QgsOfflineEditing + + + Could not open the spatialite database + + + + + Unable to initialize SpatialMetadata: + + + + + + Could not create a new database + + + + + + Unable to activate FOREIGN_KEY constraints + + + + + Unknown data type %1 + + + + + QGIS wkbType %1 not supported + + + + + %v / %m features copied + + + + + + %v / %m features processed + + + + + %v / %m fields added + + + + + %v / %m features added + + + + + %v / %m features removed + + + + + %v / %m feature updates + + + + + %v / %m feature geometry updates + + + + + Offline Editing Plugin + + + + + Could not open the spatialite logging database + + + + + QgsOfflineEditingPlugin + + + Convert to offline project + + + + + Create offline copies of selected layers and save as offline project + + + + + + + + &Offline Editing + + + + + Synchronize + + + + + Synchronize offline project with remote layers + + + + + QgsOfflineEditingPluginGui + + + Select target database for offline data + + + + + SpatiaLite DB + + + + + All files + + + + + Offline Editing Plugin + + + + + Converting to offline project. + + + + + Offline database file '%1' exists. Overwrite? + + + + + QgsOfflineEditingPluginGuiBase + + + Create offline project + + + + + Offline data + + + + + Browse... + + + + + Select remote layers + + + + + Show only editable layers + + + + + QgsOfflineEditingProgressDialog + + + Layer %1 of %2.. + + + + + QgsOfflineEditingProgressDialogBase + + + Dialog + + + + + TextLabel + + + + + QgsOgrLayerItem + + + Couldn't open file %1.prj + + + + + + OGR + + + + + Couldn't open file %1.qpj + + + + + QgsOgrProvider + + + Data source is invalid, no layer found (%1) + + + + + + + + + OGR + + + + + Data source is invalid (%1) + + + + + Whole number (integer) + + + + + Decimal number (real) + + + + + Text (string) + + + + + OGR[%1] error %2: %3 + + + + + Unknown + + + + + Read attempt on an invalid OGR data source + + + + + OGR error creating wkb for feature %1: %2 + + + + + type %1 for attribute %2 not found + + + + + OGR error creating feature %1: %2 + + + + + type %1 for field %2 not found + + + + + OGR error creating field %1: %2 + + + + + OGR error deleting field %1: %2 + + + + + Deleting fields is not supported prior to GDAL 1.9.0 + + + + + + + OGR error on feature %1: id too large + + + + + Feature %1 for attribute update not found. + + + + + Field %1 of feature %2 doesn't exist. + + + + + Type %1 of attribute %2 of feature %3 unknown. + + + + + + OGR error setting feature %1: %2 + + + + + OGR error changing geometry: feature %1 not found + + + + + OGR error creating geometry for feature %1: %2 + + + + + OGR error in feature %1: geometry is null + + + + + OGR error setting geometry of feature %1: %2 + + + + + OGR error deleting feature %1: %2 + + + + + Shapefiles without attribute are considered read-only. + + + + + QgsOpenRasterDialog + + + Open raster + + + + + Raster file: + + + + + + ... + + + + + Save raster as: + + + + + Choose a name of the raster + + + + + + Error + + + + + + The selected file is not a valid raster file. + + + + + Choose a name for the modified raster + + + + + -modified + Georeferencer:QgsOpenRasterDialog.cpp - used to modify a user given file name + + + + + QgsOpenVectorLayerDialog + + + Open an OGR Supported Vector Layer + + + + + Open Directory + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + + + + Add vector layer + + + + + No database selected. + + + + + Password for + + + + + Please enter your password: + + + + + No protocol URI entered. + + + + + No layers selected. + + + + + No directory selected. + + + + + QgsOpenVectorLayerDialogBase + + + Add vector layer + + + + + Source type + + + + + File + + + + + Directory + + + + + + Database + + + + + + Protocol + + + + + Encoding + + + + + + + Type + + + + + URI + + + + + Source + + + + + Dataset + + + + + Browse + + + + + Connections + + + + + New + + + + + Edit + + + + + Delete + + + + + QgsOptions + + + None / Planimetric + + + + + Current layer + + + + + Top down, stop at first + + + + + Top down + + + + + Show all features + + + + + Show selected features + + + + + Show features in current canvas + + + + + Always + + + + + If needed + + + + + Never + + + + + Load all + + + + + Check file contents + + + + + Check extension + + + + + No + + + + + Basic scan + + + + + Full scan + + + + + + Cumulative pixel count cut + + + + + Minimum / maximum + + + + + Mean +/- standard deviation + + + + + Detected active locale on your system: %1 + + + + + To vertex + + + + + To segment + + + + + To vertex and segment + + + + + + map units + + + + + + pixels + + + + + + + Semi transparent circle + + + + + + + Cross + + + + + + + None + + + + + Off + + + + + QGIS + + + + + GEOS + + + + + Round + + + + + Mitre + + + + + Bevel + + + + + Central point (fastest) + + + + + Chain (fast) + + + + + Popmusic tabu chain (slow) + + + + + Popmusic tabu (slow) + + + + + Popmusic chain (very slow) + + + + + + + Save default project + + + + + You must set a default project + + + + + Current project saved as default + + + + + Error saving current project as default + + + + + Choose a directory to store project template files + + + + + Selection color + + + + + Create Options - %1 Driver + + + + + Create Options - pyramids + + + + + + + Choose a directory + + + + + Enter scale + + + + + Scale denominator + + + + + Load scales + + + + + + XML files (*.xml *.XML) + + + + + Save scales + + + + + No Stretch + + + + + Stretch To MinMax + + + + + Stretch And Clip To MinMax + + + + + Clip To MinMax + + + + + QgsOptionsBase + + + Options + + + + + General + + + + + Project files + + + + + Prompt to save project changes when required + + + + + Warn when opening a project file saved with an older version of QGIS + + + + + Create new project from default project + + + + + Set current project as default + + + + + Reset default + + + + + Template folder + + + + + Browse + + + + + Reset + + + + + Enable macros + + + + + Never + + + + + Ask + + + + + For this session only + + + + + Always (not recommended) + + + + + Default Map Appearance (overridden by project properties) + + + + + Selection color + + + + + Background color + + + + + Application + + + + + Style <i>(QGIS restart required)</i> + + + + + Icon theme + + + + + Icon size + + + + + 16 + + + + + 24 + + + + + 32 + + + + + Font + + + + + Qt default + + + + + + Size + + + + + Double click action in legend + + + + + Open layer properties + + + + + Open attribute table + + + + + Capitalise layer names in legend + + + + + Display classification attribute names in legend + + + + + Create raster icons in legend + + + + + Hide splash screen at startup + + + + + Show tips at start up + + + + + Open identify results in a dock window (QGIS restart required) + + + + + Open snapping options in a dock window (QGIS restart required) + + + + + Open attribute table in a dock window (QGIS restart required) + + + + + Add PostGIS layers with double click and select in extended mode + + + + + Add new layers to selected or current group + + + + + Copy geometry in WKT representation from attribute table + + + + + Ignore shapefile encoding + + + + + Attribute table behaviour + + + + + Attribute table row cache + + + + + Representation for NULL values + + + + + Prompt for raster sublayers + + + + + Scan for valid items in the browser dock + + + + + Scan for contents of compressed files (.zip) in browser dock + + + + + GDAL + + + + + GDAL Drivers + + + + + In some cases more than one GDAL driver can be used to load the same raster format. Use the list below to specify which to use. + + + + + Name + + + + + ext + + + + + Flags + + + + + Description + + + + + GDAL Driver Options + + + + + Edit Pyramids Options + + + + + Edit Create Options + + + + + Plugins + + + + + Plugin paths + + + + + Path(s) to search for additional C++ plugins libraries + + + + + + + Add + + + + + + + Remove + + + + + Rendering + + + + + Rendering behavior + + + + + By default new la&yers added to the map should be displayed + + + + + <b>Note:</b> Use zero to prevent display updates until all features have been rendered + + + + + Use render caching where possible to speed up redraws + + + + + Enable back buffer (Better graphics performance at the cost of loosing the possibility to cancel rendering and incremental feature drawing) + + + + + Number of features to draw before updating the display + + + + + Map display will be updated (drawn) after this many features have been read from the data source + + + + + Rendering quality + + + + + Make lines appear less jagged at the expense of some drawing performance + + + + + Fix problems with incorrectly filled polygons + + + + + Compatibility + + + + + Use new generation symbology for rendering + + + + + SVG paths + + + + + Path(s) to search for Scalable Vector Graphic (SVG) symbols + + + + + Rasters + + + + + RGB band selection + + + + + Red band + + + + + Green band + + + + + Blue band + + + + + Contrast enhancement + + + + + Single band gray + + + + + Multi band color (byte / band) + + + + + Multi band color (> byte / band) + + + + + Limits (minimum/maximum) + + + + + Cumulative pixel count cut limits + + + + + - + + + + + + % + + + + + Standard deviation multiplier + + + + + Map tools + + + + + Identify + + + + + <b>Note:</b> Specify the search radius as a percentage of the map width + + + + + Search radius for identifying features and displaying map tips + + + + + Mode + + + + + Open feature form, if a single feature is identified + + + + + Panning and zooming + + + + + Zoom factor + + + + + Mouse wheel action + + + + + Zoom + + + + + Zoom and recenter + + + + + Zoom to mouse cursor + + + + + Nothing + + + + + Predefined scales + + + + + + + + + + ... + + + + + Measure tool + + + + + Rubberband color + + + + + Preferred measurements units + + + + + Meters + + + + + Feet + + + + + Preferred angle units + + + + + Degrees + + + + + Radians + + + + + Decimal places + + + + + Keep base unit + + + + + Gon + + + + + Overlays + + + + + Position + + + + + Placement algorithm + + + + + Digitizing + + + + + Rubberband + + + + + Line width + + + + + Line width in pixels + + + + + Line color + + + + + Snapping + + + + + Default snap mode + + + + + Default snapping tolerance + + + + + Search radius for vertex edits + + + + + + map units + + + + + + pixels + + + + + Vertex markers + + + + + Show markers only for selected features + + + + + Marker style + + + + + Marker size + + + + + Other settings + + + + + Suppress attributes pop-up windows after each created feature + + + + + Reuse last entered attribute values + + + + + Validate geometries + + + + + Join style for curve offset + + + + + Quadrantsegments for curve offset + + + + + Miter limit for curve offset + + + + + CRS + + + + + Default Coordinate Reference System for new projects + + + + + + Select... + + + + + Always start new projects with this CRS + + + + + Automatically enable 'on the fly' reprojection if CRS of a new added layer differ from CRS of layer(s) already present. CRS of present layer(s) will be used. + + + + + Automatically enable 'on the fly' reprojection if layers have different CRS + + + + + Enable 'on the &fly' reprojection by default + + + + + Coordinate Reference System for new layers + + + + + When a new layer is created, or when a layer is loaded that has no Coordinate Reference System (CRS) + + + + + Prompt for &CRS + + + + + Use &project CRS + + + + + Use default CRS displa&yed below + + + + + Locale + + + + + Override system locale + + + + + Locale to use instead + + + + + <b>Note:</b> Enabling / changing overide on local requires an application restart + + + + + Additional Info + + + + + Detected active locale on your system: + + + + + Network + + + + + Use proxy for web access + + + + + Host + + + + + Port + + + + + User + + + + + + Leave this blank if no proxy username / password are required + + + + + Password + + + + + Proxy type + + + + + Exclude URLs (starting with) + + + + + Cache settings + + + + + Directory + + + + + Clear + + + + + WMS search address + + + + + Timeout for network requests (ms) + + + + + Default expiration period for WMS-C/WMTS tiles (hours) + + + + + QgsOraclePlugin + + + Add Oracle GeoRaster Layer... + + + + + Add a Oracle Spatial GeoRaster... + + + + + QgsOracleSelectGeoraster + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Password for %1/<password>@%2 + + + + + Please enter your password: + + + + + Open failed + + + + + The connection to %1 failed. Please verify your connection parameters. Make sure you have the GDAL GeoRaster plugin installed. + + + + + QgsPGConnectionItem + + + Failed to retrieve layers + + + + + No layers found. + + + + + Edit... + + + + + Delete + + + + + %1: Not a vector layer! + + + + + + %1: OK! + + + + + + Import to PostGIS database + + + + + Failed to import some layers! + + + + + + + Import was successful. + + + + + QgsPGLayerItem + + + + + Delete layer + + + + + Layer deleted successfully. + + + + + QgsPGRootItem + + + New Connection... + + + + + QgsPGSchemaItem + + + %1 as %2 in %3 + + + + + as geometryless table + + + + + QgsPalettedRendererWidgetBase + + + Form + + + + + Band + + + + + Value + + + + + Color + + + + + QgsPasteTransformations + + + &Add New Transfer + + + + + QgsPasteTransformationsBase + + + Paste Transformations + + + + + <b>Note: This function is not useful yet!</b> + + + + + Source + + + + + Destination + + + + + QgsPenCapStyleComboBox + + + Square + + + + + Flat + + + + + Round + + + + + QgsPenJoinStyleComboBox + + + Bevel + + + + + Miter + + + + + Round + + + + + QgsPenStyleComboBox + + + Solid Line + + + + + No Pen + + + + + Dash Line + + + + + Dot Line + + + + + Dash Dot Line + + + + + Dash Dot Dot Line + + + + + QgsPgNewConnection + + + disable + + + + + allow + + + + + prefer + + + + + require + + + + + Saving passwords + + + + + WARNING: You have opted to save your password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. + + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + + Test connection + + + + + Connection to %1 was successful + + + + + Connection failed - Check settings and try again. + + + + + + + QgsPgNewConnectionBase + + + Create a New PostGIS connection + + + + + Connection Information + + + + + Name + + + + + Service + + + + + Host + + + + + Port + + + + + Database + + + + + SSL mode + + + + + Username + + + + + Password + + + + + Name of the new connection + + + + + 5432 + + + + + Restrict the displayed tables to those that are in the layer registries. + + + + + Restricts the displayed tables to those that are found in the layer registries (geometry_columns, geography_columns, topology.layer). This can speed up the initial display of spatial tables. + + + + + Only look in the layer registries + + + + + Restrict the search to the public schema for spatial tables not in the geometry_columns table + + + + + When searching for spatial tables that are not in the geometry_columns tables, restrict the search to tables that are in the public schema (for some databases this can save lots of time) + + + + + Only look in the 'public' schema + + + + + Save Username + + + + + &Test Connect + + + + + Save Password + + + + + Use estimated table statistics for the layer metadata. + + + + + <html> +<body> +<p>When the layer is setup various metadata is required for the PostGIS table. This includes information such as the table row count, geometry type and spatial extents of the data in the geometry column. If the table contains a large number of rows determining this metadata is time consuming.</p> +<p>By activating this option the following fast table metadata operations are done:</p> +<p>1) Row count is determined from table statistics obtained from running the PostgreSQL table analyse function.</p> +<p>2) Table extents are always determined with the estimated_extent PostGIS function even if a layer filter is applied.</p> +<p>3) If the table geometry type is unknown and is not exclusively taken from the geometry_columns table, then it is determined from the first 100 non-null geometry rows in the table.</p> +</body> +</html> + + + + + Use estimated table metadata + + + + + Also list tables with no geometry + + + + + QgsPgSourceSelect + + + &Add + + + + + &Build query + + + + + Build query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Schema + + + + + + Table + + + + + + Type + + + + + + Geometry column + + + + + + Primary key column + + + + + + SRID + + + + + + Sql + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + Select Table + + + + + You must select a table in order to add a layer. + + + + + Stop + + + + + + Postgres/PostGIS Provider + + + + + Could not open the Postgres/PostGIS Provider + + + + + No accessible tables or views found. Check the message log for possible errors. + + + + + Connect + + + + + QgsPgSourceSelectDelegate + + + Select... + + + + + QgsPgTableModel + + + Schema + + + + + Table + + + + + Column + + + + + Data Type + + + + + Spatial Type + + + + + SRID + + + + + Primary Key + + + + + Select at id + + + + + Sql + + + + + Detecting... + + + + + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). + + + + + Select... + + + + + Enter... + + + + + QgsPluginInstaller + + Nothing to remove! Plugin directory doesn't exist: + + + + Failed to remove the directory: + + + + Check permissions or remove it manually + + + + Fetch Python Plugins... + + + + Install more plugins from remote repositories + + + + Looking for new plugins... + + + + QGIS Plugin Installer update + + + + The Plugin Installer has been updated. Please restart QGIS prior to using it + + + + QGIS Plugin Conflict: + + + + The Plugin Installer has detected an obsolete plugin which masks a newer version shipped with this QGIS version. This is likely due to files associated with a previous installation of QGIS. Please use the Plugin Installer to remove that older plugin in order to unmask the newer version shipped with this copy of QGIS. + + + + There is a new plugin available + + + + There is a plugin update available + + + + QGIS Python Plugin Installer + + + + Error reading repository: + + + + Couldn't open the local plugin directory + + + + + QgsPluginInstallerDialog + + QGIS Python Plugin Installer + + + + Error reading repository: + + + + all repositories + + + + connected + + + + This repository is connected + + + + unavailable + + + + This repository is enabled, but unavailable + + + + disabled + + + + This repository is disabled + + + + This repository is blocked due to incompatibility with your Quantum GIS version + + + + orphans + + + + any status + + + + not installed + + + + installed + + + + upgradeable and news + + + + This plugin is not installed + + + + This plugin is installed + + + + This plugin is installed, but there is an updated version available + + + + This plugin is installed, but I can't find it in any enabled repository + + + + This plugin is not installed and is seen for the first time + + + + This plugin is installed and is newer than its version available in a repository + + + + This plugin is incompatible with your Quantum GIS version and probably won't work. + + + + The required Python module is not installed. +For more information, please visit its homepage and Quantum GIS wiki. + + + + This plugin seems to be broken. +It has been installed but can't be loaded. +Here is the error message: + + + + upgradeable + + + + new! + + + + invalid + + + + Note that it's an uninstallable core plugin + + + + installed version + + + + available version + + + + That's the newest available version + + + + There is no version available for download + + + + This plugin is broken + + + + This plugin requires a newer version of Quantum GIS + + + + at least + + + + This plugin requires a missing module + + + + only locally available + + + + Experimental plugin. Use at own risk + + + + - %d plugins available + + + + Install plugin + + + + Reinstall plugin + + + + Upgrade plugin + + + + Install/upgrade plugin + + + + Downgrade plugin + + + + Are you sure you want to downgrade the plugin to the latest available version? The installed one is newer! + + + + Plugin installation failed + + + + Plugin has disappeared + + + + The plugin seems to have been installed but I don't know where. Probably the plugin package contained a wrong named directory. +Please search the list of installed plugins. I'm nearly sure you'll find the plugin there, but I just can't determine which of them it is. It also means that I won't be able to determine if this plugin is installed and inform you about available updates. However the plugin may work. Please contact the plugin author and submit this issue. + + + + Plugin installed successfully + + + + Python plugin installed. +Now you need to enable it in Plugin Manager. + + + + Plugin reinstalled successfully + + + + Python plugin reinstalled. +You need to restart Quantum GIS in order to reload it. + + + + The plugin is designed for a newer version of Quantum GIS. The minimum required version is: + + + + The plugin depends on some components missing on your system. You need to install the following Python module in order to enable it: + + + + The plugin is broken. Python said: + + + + Plugin uninstall failed + + + + Are you sure you want to uninstall the following plugin? + + + + Warning: this plugin isn't available in any accessible repository! + + + + Plugin Installer update uninstalled. Plugin Installer will now close and revert to its primary version. You can find it in the Plugins menu and continue operation. + + + + Plugin Installer update uninstalled. Please restart QGIS in order to load its primary version. + + + + Plugin uninstalled successfully + + + + Python plugin uninstalled. Note that you may need to restart Quantum GIS in order to remove it completely. + + + + Unable to add another repository with the same URL! + + + + Are you sure you want to remove the following repository? + + + + + QgsPluginInstallerDialogBase + + + + QGIS Python Plugin Installer + + + + + Help + + + + + The plugins will be installed to ~/.qgis/python/plugins + + + + + + Close the Installer window + + + + + Close + + + + + Plugins + + + + + List of available and installed plugins + + + + + Filter: + + + + + + Display only plugins containing this word in their metadata + + + + + + Display only plugins from given repository + + + + + all repositories + + + + + + Display only plugins with matching status + + + + + State + + + + + + Status + + + + + + Name + + + + + Version + + + + + Description + + + + + Author + + + + + Repository + + + + + Upgrade all + + + + + + Install, reinstall or upgrade the selected plugin + + + + + Install/upgrade plugin + + + + + + Uninstall the selected plugin + + + + + Uninstall plugin + + + + + Repositories + + + + + List of plugin repositories + + + + + URL + + + + + + Add a new plugin repository + + + + + Add... + + + + + + Edit the selected repository + + + + + Edit... + + + + + + Remove the selected repository + + + + + Delete + + + + + + Add the contributed repository to the list + + + + + Add the contributed repository + + + + + + Remove depreciated repositories from the list + + + + + Delete depreciated repositories + + + + + Options + + + + + Configuration of the plugin installer + + + + + Check for updates on startup + + + + + every time QGIS starts + + + + + once a day + + + + + every 3 days + + + + + every week + + + + + every 2 weeks + + + + + every month + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> If this function is enabled, Quantum GIS will inform you whenever a new plugin or plugin update is available. Otherwise, fetching repositories will be performed during opening of the Plugin Installer window.</p></body></html> + + + + + Allowed plugins + + + + + Only show plugins from the official repository + + + + + Show all plugins except those marked as experimental + + + + + Show all plugins, even those marked as experimental + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> Experimental plugins are generally unsuitable for production use. These plugins are in early stages of development, and should be considered 'incomplete' or 'proof of concept' tools. QGIS does not recommend installing these plugins unless you intend to use them for testing purposes.</p></body></html> + + + + + QgsPluginInstallerFetchingDialog + + Success + + + + Resolving host name... + + + + Connecting... + + + + Host connected. Sending request... + + + + Downloading data... + + + + Idle + + + + Closing connection... + + + + Error + + + + + QgsPluginInstallerFetchingDialogBase + + + Fetching repositories + + + + + Overall progress: + + + + + Abort fetching + + + + + Repository + + + + + State + + + + + QgsPluginInstallerInstallingDialog + + Installing... + + + + Resolving host name... + + + + Connecting... + + + + Host connected. Sending request... + + + + Downloading data... + + + + Idle + + + + Closing connection... + + + + Error + + + + Failed to unzip the plugin package. Probably it's broken or missing from the repository. You may also want to make sure that you have write permission to the plugin directory: + + + + Aborted by user + + + + + QgsPluginInstallerInstallingDialogBase + + + QGIS Python Plugin Installer + + + + + Installing plugin: + + + + + Connecting... + + + + + QgsPluginInstallerOldReposBase + + + Plugin Installer + + + + + The Plugin Installer has detected that your copy of QGIS is configured to use a number of plugin repositories around the world. It was a typical situation in older versions of the program, but from the version 1.5, external plugins are collected in one central Contributed Repository, and all the old repositories are not necessary any more. Do you want to drop them now? If you're unsure what to do, probably you don't need them. However, if you choose to keep them in use, you will be able to remove them manually later. + + + + + Remove + + + + + Disable + + + + + Keep + + + + + Ask me later + + + + + QgsPluginInstallerPluginErrorDialog + + no error message received + + + + + QgsPluginInstallerPluginErrorDialogBase + + + Error loading plugin + + + + + The plugin seems to be invalid or have unfulfilled dependencies. It has been installed, but can't be loaded. If you really need this plugin, you can contact its author or <a href="http://lists.osgeo.org/mailman/listinfo/qgis-user">QGIS users group</a> and try to solve the problem. If not, you can just uninstall it. Here is the error message below: + + + + + Do you want to uninstall this plugin now? If you're unsure, probably you would like to do this. + + + + + QgsPluginInstallerRepositoryDetailsDialogBase + + + Repository details + + + + + Name: + + + + + + Enter a name for the repository + + + + + URL: + + + + + + Enter the repository URL, beginning with "http://" + + + + + + Enable or disable the repository (disabled repositories will be omitted) + + + + + Enabled + + + + + QgsPluginManager + + + &Select All + + + + + &Clear All + + + + + + Plugins + + + + + [ incompatible ] + + + + + + Installed in %1 menu/toolbar + + + + + No Plugins + + + + + No QGIS plugins found in %1 + + + + + Error + + + + + Failed to open plugin installer! + + + + + QgsPluginManagerBase + + + QGIS Plugin Manager + + + + + To enable / disable a plugin, click its checkbox or description + + + + + &Filter + + + + + Plugin Directory: + + + + + Directory + + + + + Plugin Installer + + + + + QgsPointDisplacementRendererWidget + + + + + None + + + + + + Label Font + + + + + Circle color + + + + + Label color + + + + + The point displacement renderer only applies to (single) point layers. +'%1' is not a point layer and cannot be displayed by the point displacement renderer + + + + + QgsPointDisplacementRendererWidgetBase + + + Form + + + + + Center symbol: + + + + + Renderer: + + + + + Renderer settings... + + + + + Displacement circles + + + + + Circle pen width: + + + + + Circle color: + + + + + Circle radius modification: + + + + + Point distance tolerance: + + + + + Labels + + + + + Label attribute: + + + + + Label font... + + + + + Label color: + + + + + Use scale dependent labelling + + + + + max scale denominator: + + + + + QgsPostgresConn + + + Connection to database failed + + + + + + + + + + + + + + + + + + + + + + + + + + + + PostGIS + + + + + error in setting encoding + + + + + undefined return value from encoding setting + + + + + Your database has no working PostGIS support. + + + + + Your PostGIS installation has no GEOS support. Feature selection and identification will not work properly. Please install PostGIS with GEOS support (http://geos.refractions.net) + + + + + SQL:%1 +result:%2 +error:%3 + + + + + + Database connection was successful, but the accessible tables could not be determined. + + + + + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: +%1 + + + + + + Database connection was successful, but the accessible tables could not be determined. +The error message from the database was: +%1 + + + + + Database connection was successful, but no accessible tables were found. Please verify that you have SELECT privilege on a table carrying PostGIS geometry. + + + + + Unable to get list of spatially enabled tables from the database + + + + + Retrieval of postgis version failed + + + + + Could not parse postgis version string '%1' + + + + + Connection error: %1 returned %2 [%3] + + + + + Erroneous query: %1 returned %2 [%3] + + + + + Query failed: %1 +Error: no result buffer + + + + + Not logged query failed: %1 +Error: no result buffer + + + + + Query: %1 returned %2 [%3] + + + + + %1 cursor states lost. +SQL: %2 +Result: %3 (%4) + + + + + resetting bad connection. + + + + + retry after reset succeeded. + + + + + retry after reset failed again. + + + + + connection still bad after reset. + + + + + bad connection, not retrying. + + + + + Point + + + + + Multipoint + + + + + Line + + + + + Multiline + + + + + Polygon + + + + + Multipolygon + + + + + No Geometry + + + + + Unknown Geometry + + + + + None + + + + + Geometry + + + + + Geography + + + + + TopoGeometry + + + + + + Query could not be canceled [%1] + + + + + PQgetCancel failed + + + + + QgsPostgresProvider + + + invalid PostgreSQL layer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PostGIS + + + + + Whole number (smallint - 16bit) + + + + + Whole number (integer - 32bit) + + + + + Whole number (integer - 64bit) + + + + + Decimal number (numeric) + + + + + Decimal number (decimal) + + + + + Decimal number (real) + + + + + Decimal number (double) + + + + + Text, fixed length (char) + + + + + Text, limited variable length (varchar) + + + + + Text, unlimited length (text) + + + + + Couldn't get the feature geometry in binary form + + + + + Read attempt on an invalid postgresql data source + + + + + nextFeature() without select() + + + + + + Fetching from cursor %1 failed +Database error: %2 + + + + + feature %1 not found + + + + + found %1 features instead of just one. + + + + + FAILURE: Field %1 not found. + + + + + + unexpected formatted field type '%1' for field %2 + + + + + Field %1 ignored, because of unsupported type %2 + + + + + Field %1 ignored, because of unsupported type type %2 + + + + + Duplicate field %1 found + + + + + + Unable to access the %1 relation. +The error message from the database was: +%2. +SQL: %3 + + + + + PostgreSQL is still in recovery after a database crash +(or you are connected to a (read-only) slave). +Write accesses will be denied. + + + + + Unable to determine table access privileges for the %1 relation. +The error message from the database was: +%2. +SQL: %3 + + + + + The custom query is not a select query. + + + + + Unable to execute the query. +The error message from the database was: +%1. +SQL: %2 + + + + + The table has no column suitable for use as a key. Quantum GIS requires a primary key, a PostgreSQL oid column or a ctid for tables. + + + + + Primary key field '%1' for view not unique. + + + + + Type '%1' of primary key field '%2' for view invalid. + + + + + Key field '%1' for view not found. + + + + + No key field for view given. + + + + + Unexpected relation type '%1'. + + + + + No key field for query given. + + + + + Could not find topology of layer %1.%2.%3 + + + + + PostGIS error while adding features: %1 + + + + + PostGIS error while deleting features: %1 + + + + + PostGIS error while adding attributes: %1 + + + + + PostGIS error while deleting attributes: %1 + + + + + PostGIS error while changing attributes: %1 + + + + + PostGIS error while changing geometry values: %1 + + + + + result of extents query invalid: %1 + + + + + Geometry type and srid for empty column %1 of %2 undefined. + + + + + Feature type or srid for %1 of %2 could not be determined or was not requested. + + + + + Editing and adding disabled for 2D+ layer (%1; %2) + + + + + QgsProject + + + Unable to open %1 + + + + + Project File Read Error + + + + + %1 at line %2 column %3 + + + + + Project file read error: %1 at line %2 column %3 + + + + + %1 for file %2 + + + + + Unable to save to file %1 + + + + + %1 is not writable. Please adjust permissions (if possible) and try again. + + + + + Unable to save to file %1. Your project may be corrupted on disk. Try clearing some space on the volume and check file permissions before pressing save again. + + + + + QgsProjectBadLayerGuiHandler + + + Ignore + + + + + QGIS Project Read Error + + + + + Unable to open one or more project layers. +Choose ignore to continue loading without the missing layers. Choose cancel to return to your pre-project load state. Choose OK to try to find the missing layers. + + + + + QgsProjectLayerGroupDialog + + + Select project file + + + + + QGis files + + + + + Recursive embedding not possible + + + + + It is not possible to embed layers / groups from the current project. + + + + + QgsProjectLayerGroupDialogBase + + + Select layers and groups to embed + + + + + Project file + + + + + ... + + + + + QgsProjectProperties + + + Layer + + + + + Type + + + + + Identifiable + + + + + Vector + + + + + WMS + + + + + Raster + + + + + + Coordinate System Restriction + + + + + No coordinate systems selected. Disabling restriction. + + + + + Selection color + + + + + CRS %1 was already selected + + + + + Coordinate System Restrictions + + + + + The current selection of coordinate systems will be lost. +Proceed? + + + + + Select print composer + + + + + Composer Title + + + + + Select restricted layers and groups + + + + + Enter scale + + + + + Scale denominator + + + + + Load scales + + + + + + XML files (*.xml *.XML) + + + + + Save scales + + + + + Transparency %1% + + + + + Select a valid symbol + + + + + Invalid symbol : + + + + + Parameters : + + + + + + Parameters: + + + + + Can only use ellipsoidal calculations when CRS transformation is enabled + + + + + QgsProjectPropertiesBase + + + Project Properties + + + + + General + + + + + General settings + + + + + Project title + + + + + Descriptive project name + + + + + Default project title + + + + + Selection color + + + + + Background color + + + + + absolute + + + + + relative + + + + + Save paths + + + + + Measure tool + + + + + Ellipsoid for distance calculations + + + + + Semi-minor + + + + + Semi-major + + + + + Used when CRS transformation is turned off + + + + + Canvas units + + + + + Meters + + + + + Feet + + + + + Degree + + + + + Degree display + + + + + Decimal degrees + + + + + Degrees, Minutes + + + + + Degrees, Minutes, Seconds + + + + + Precision + + + + + Automatically sets the number of decimal places in the mouse position display + + + + + The number of decimal places that are used when displaying the mouse position is automatically set to be enough so that moving the mouse by one pixel gives a change in the position display + + + + + Automatic + + + + + + Sets the number of decimal places to use for the mouse position display + + + + + Manual + + + + + + The number of decimal places for the manual option + + + + + decimal places + + + + + Project scales + + + + + + + + + + + + ... + + + + + Coordinate Reference System (CRS) + + + + + Enable 'on the fly' CRS transformation + + + + + Identifiable layers + + + + + + Layer + + + + + Type + + + + + Identifiable + + + + + Default Styles + + + + + Default Symbols + + + + + Marker + + + + + Line + + + + + Fill + + + + + Color Ramp + + + + + Style Manager + + + + + Options + + + + + Assign random colors to symbols + + + + + Opacity + + + + + OWS Server + + + + + Service Capabilitities + + + + + Person + + + + + Title + + + + + Organization + + + + + Online resource + + + + + E-Mail + + + + + Phone + + + + + Abstract + + + + + Fees + + + + + Access constraints + + + + + Keyword list + + + + + WMS Capabilitities + + + + + Advertised Extent + + + + + Min. X + + + + + Min. Y + + + + + Max. X + + + + + Max. Y + + + + + Use Current Canvas Extent + + + + + Coordinate Systems Restrictions + + + + + Add + + + + + Remove + + + + + Used + + + + + Exclude composers + + + + + Exclude layers + + + + + Add WKT geometry to feature info response + + + + + Advertised WMS url + + + + + Maximum width + + + + + Maximum height + + + + + WFS Capabilitities + + + + + Published + + + + + Update + + + + + Insert + + + + + Delete + + + + + Unselect all + + + + + Select all + + + + + Macros + + + + + Python macros + + + + + QgsProjectionSelector + + + User Defined Coordinate Systems + + + + + Geographic Coordinate Systems + + + + + Projected Coordinate Systems + + + + + Resource Location Error + + + + + Error reading database file from: + %1 +Because of this the projection selector will not work... + + + + + QgsProjectionSelectorBase + + + Coordinate Reference System Selector + + + + + Filter + + + + + Recently used coordinate reference systems + + + + + + Coordinate Reference System + + + + + + Authority ID + + + + + + ID + + + + + Coordinate reference systems of the world + + + + + Hide deprecated CRSs + + + + + QgsQueryBuilder + + + &Test + + + + + &Clear + + + + + Query Result + + + + + The where clause returned %n row(s). + returned test rows + + + + + + + + + + Query Failed + + + + + + + An error occurred when executing the query. + + + + + + +The data provider said: +%1 + + + + + Error in Query + + + + + The subset string could not be set + + + + + QgsQueryBuilderBase + + + Query Builder + + + + + Datasource + + + + + Fields + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of fields in this vector file</p></body></html> + + + + + Values + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of values for the current field.</p></body></html> + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Take a <span style=" font-weight:600;">sample</span> of records in the vector file</p></body></html> + + + + + Sample + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Retrieve <span style=" font-weight:600;">all</span> the record in the vector file (<span style=" font-style:italic;">if the table is big, the operation can consume some time</span>)</p></body></html> + + + + + All + + + + + Use unfiltered layer + + + + + Operators + + + + + = + + + + + < + + + + + NOT + + + + + OR + + + + + AND + + + + + % + + + + + IN + + + + + NOT IN + + + + + != + + + + + > + + + + + LIKE + + + + + ILIKE + + + + + >= + + + + + <= + + + + + SQL where clause + + + + + QgsQuickPrint + + + Please wait while your report is generated + COMMENTED OUT + + + + + km + + + + + mm + + + + + cm + + + + + m + + + + + miles + + + + + mile + + + + + inches + + + + + foot + + + + + feet + + + + + degree + + + + + degrees + + + + + unknown + + + + + QgsRasterCalcDialog + + + Enter result file + + + + + Expression valid + + + + + Expression invalid + + + + + QgsRasterCalcDialogBase + + + Raster calculator + + + + + Raster bands + + + + + Result layer + + + + + Output layer + + + + + ... + + + + + Current layer extent + + + + + X min + + + + + XMax + + + + + Y min + + + + + Y max + + + + + Columns + + + + + Rows + + + + + Output format + + + + + Add result to project + + + + + Operators + + + + + + + + + + + * + + + + + sqrt + + + + + sin + + + + + ^ + + + + + acos + + + + + ( + + + + + - + + + + + / + + + + + cos + + + + + asin + + + + + tan + + + + + atan + + + + + ) + + + + + < + + + + + > + + + + + = + + + + + OR + + + + + AND + + + + + <= + + + + + >= + + + + + Raster calculator expression + + + + + QgsRasterDataProvider + + + Identify + + + + + Build Pyramids + + + + + Create Datasources + + + + + Remove Datasources + + + + + no data + + + + + Feature info + + + + + Band + + + + + Average + + + + + Nearest Neighbour + + + + + Gauss + + + + + Cubic + + + + + Mode + + + + + None + + + + + QgsRasterFormatSaveOptionsWidget + + + Default + + + + + + No compression + + + + + + Low compression + + + + + + High compression + + + + + + Lossy compression + + + + + Cannot get create options for driver %1 + + + + + No help available + + + + + Create Options: + +%1 + + + + + Valid + + + + + Invalid creation option : + +%1 + +Click on help button to get valid creation options for this format + + + + + Cannot validate + + + + + Profile name: + + + + + Use simple interface + + + + + Use table interface + + + + + QgsRasterFormatSaveOptionsWidgetBase + + + Form + + + + + New + + + + + Remove + + + + + Reset + + + + + Profile + + + + + Name + + + + + Value + + + + + + + + + + + Validate + + + + + Help + + + + + - + + + + + Insert KEY=VALUE pairs separated by spaces + + + + + QgsRasterHistogramWidget + + + Visibility + + + + + Show min/max markers + + + + + Show all bands + + + + + Show RGB/Gray band(s) + + + + + Show selected band + + + + + Reset + + + + + Load min/max + + + + + Estimate (faster) + + + + + Actual (slower) + + + + + Current extent + + + + + Use stddev (1.0) + + + + + Use stddev (custom) + + + + + Load for each band + + + + + Recompute Histogram + + + + + Band %1 + + + + + Choose a file name to save the map image as + + + + + QgsRasterHistogramWidgetBase + + + Form + + + + + Band + + + + + Min + + + + + Pick Min value on graph + + + + + + ... + + + + + Max + + + + + Pick Max value on graph + + + + + Prefs/Actions + + + + + Save plot + + + + + Save as image... + + + + + Compute Histogram + + + + + QgsRasterLayer + + + + + + + Not Set + + + + + QgsRasterLayer created + + + + + Retrieving stats for %1 + + + + + Could not reproject view extent: %1 + + + + + + + + Raster + + + + + Could not reproject layer extent: %1 + + + + + Cannot read data + + + + + null (no data) + + + + + Driver: + + + + + No Data Value + + + + + NoDataValue not set + + + + + Data Type: + + + + + GDT_Byte - Eight bit unsigned integer + + + + + GDT_UInt16 - Sixteen bit unsigned integer + + + + + GDT_Int16 - Sixteen bit signed integer + + + + + GDT_UInt32 - Thirty two bit unsigned integer + + + + + GDT_Int32 - Thirty two bit signed integer + + + + + GDT_Float32 - Thirty two bit floating point + + + + + GDT_Float64 - Sixty four bit floating point + + + + + GDT_CInt16 - Complex Int16 + + + + + GDT_CInt32 - Complex Int32 + + + + + GDT_CFloat32 - Complex Float32 + + + + + GDT_CFloat64 - Complex Float64 + + + + + Could not determine raster data type. + + + + + Pyramid overviews: + + + + + Layer Spatial Reference System: + + + + + Layer Extent (layer original source projection): + + + + + Project Spatial Reference System: + + + + + + Band + + + + + Band No + + + + + No Stats + + + + + No stats collected yet + + + + + Min Val + + + + + Max Val + + + + + Range + + + + + Mean + + + + + Sum of squares + + + + + Standard Deviation + + + + + Sum of all cells + + + + + Cell Count + + + + + Cannot instantiate the '%1' data provider + + + + + Provider is not valid (provider: %1, URI: %2 + + + + + <maplayer> not found. + + + + + GDAL data type %1 is not supported + + + + + QgsRasterLayerProperties + + + Not Set + + + + + Description + + + + + Large resolution raster layers can slow navigation in QGIS. + + + + + By creating lower resolution copies of the data (pyramids) performance can be considerably improved as QGIS selects the most suitable resolution to use depending on the level of zoom. + + + + + You must have write access in the directory where the original data is stored to build pyramids. + + + + + Please note that building internal pyramids may alter the original data file and once created they cannot be removed! + + + + + Please note that building internal pyramids could corrupt your image - always make a backup of your data first! + + + + + Layer Properties - %1 + + + + + + Nearest neighbour + + + + + + Bilinear + + + + + + Cubic + + + + + + Average + + + + + None + + + + + + Red + + + + + + Green + + + + + + Blue + + + + + + + + + Percent Transparent + + + + + + Gray + + + + + + Indexed Value + + + + + From + + + + + To + + + + + not defined + + + + + Columns: %1 + + + + + Rows: %1 + + + + + Columns: + + + + + + + + n/a + + + + + Rows: + + + + + + No-Data Value: + + + + + No-Data Value: %1 + + + + + + Write access denied + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + + Building pyramids failed. + + + + + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. + + + + + + Building pyramid overviews is not supported on this type of raster. + + + + + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. + + + + + Save file + + + + + + Textfile + + + + + QGIS Generated Transparent Pixel Value Export File + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + Open file + + + + + Import Error + + + + + The following lines contained errors + +%1 + + + + + Read access denied + + + + + Read access denied. Adjust the file permissions and try again. + + + + + + + + Default Style + + + + + Load layer properties from style file + + + + + + QGIS Layer Style File + + + + + + Saved Style + + + + + Save layer properties as style file + + + + + Filter + + + + + Bands + + + + + QgsRasterLayerPropertiesBase + + + Raster Layer Properties + + + + + Save Style ... + + + + + Load Style ... + + + + + Save As Default + + + + + Restore Default Style + + + + + Style + mRendererTab + + + + + Render type + + + + + Resampling + + + + + Zoomed in + + + + + Zoomed out + + + + + Oversampling + + + + + Transparency + + + + + Global transparency + + + + + None + + + + + 00% + + + + + <p align="right">Full</p> + + + + + No data value + + + + + Use original source no data value. + + + + + No data value: + + + + + Original data source no data value, if exists. + + + + + <src no data value> + + + + + + Additional user defined no data value. + + + + + Additional no data value + + + + + Custom transparency options + + + + + Transparency band + + + + + Transparent pixel list + + + + + Add values manually + + + + + + + + + + ... + + + + + Add Values from display + + + + + Remove selected row + + + + + Default values + + + + + Import from file + + + + + Export to file + + + + + General + + + + + Display name + + + + + Layer source + + + + + Columns + + + + + Rows + + + + + No Data + + + + + Scale dependent visibility + + + + + + Maximum scale, i.e. minimum scale denominator. This limit is inclusive, that means the layer will be displayed on this scale. + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Maximum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inclusive)</p></body></html> + + + + + + Minimum scale, i.e. maximum scale denominator. This limit is exclusive, that means the layer will not be displayed on this scale. + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Minimum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exclusive)</p></body></html> + + + + + + Current + + + + + Coordinate reference system + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify... + + + + + Thumbnail + + + + + Legend + + + + + Palette + + + + + Metadata + + + + + Title + + + + + Abstract + + + + + Pyramids + + + + + Average + + + + + Nearest Neighbour + + + + + Build pyramids + + + + + Notes + + + + + Pyramid resolutions + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> + + + + + Resampling method + + + + + Overview format + + + + + External + + + + + Internal (if possible) + + + + + External (Erdas Imagine) + + + + + Histogram + + + + + Pipe + + + + + QgsRasterLayerSaveAsDialog + + + From + + + + + To + + + + + Select output directory + + + + + Select output file + + + + + + layer + + + + + + user defined + + + + + Resolution (current: %1) + + + + + map view + + + + + Extent (current: %1) + + + + + Layer (%1, %2) + + + + + Project (%1, %2) + + + + + Selected (%1, %2) + + + + + QgsRasterLayerSaveAsDialogBase + + + Save raster layer as... + + + + + Output mode + + + + + Write out raw raster layer data. Optionally user defined no data values may be applied. + + + + + Raw data + + + + + Write out 3 bands RGB image rendered using current layer style. + + + + + Rendered image + + + + + Format + + + + + Save as + + + + + Browse... + + + + + CRS + + + + + Change ... + + + + + Extent + + + + + West + + + + + East + + + + + North + + + + + South + + + + + Layer extent + + + + + Map view extent + + + + + Resolution + + + + + Horizontal + + + + + Columns + + + + + Rows + + + + + Layer resolution + + + + + Layer size + + + + + Vertical + + + + + Create Options + + + + + Tiles + + + + + + Maximum number of columns in one tile. + + + + + Max columns + + + + + + Maximum number of rows in one tile. + + + + + Max rows + + + + + Create VRT + + + + + Additional no data values. The specified values will be set to no data in output raster. + + + + + No data values + + + + + Add values manually + + + + + + + + ... + + + + + Load user defined fully transparent (100%) values + + + + + Remove selected row + + + + + Clear all + + + + + Pyramids + + + + + Resolutions + + + + + Pyramid resolutions corresponding to levels given + + + + + Use existing + + + + + QgsRasterMinMaxWidgetBase + + + Form + + + + + Load min/max values + + + + + Cumulative count cut + + + + + - + + + + + % + + + + + Min / max + + + + + Mean +/- standard deviation × + + + + + Extent + + + + + Full + + + + + Current + + + + + Accuracy + + + + + Actual (slower) + + + + + Estimate (faster) + + + + + Load + + + + + QgsRasterPyramidsOptionsWidgetBase + + + Form + + + + + Custom levels + + + + + External + + + + + Internal (if possible) + + + + + External (Erdas Imagine) + + + + + Insert positive integer values separated by spaces + + + + + Average + + + + + Nearest Neighbour + + + + + Overview format + + + + + Create Options + + + + + Levels + + + + + Resampling method + + + + + QgsRasterRenderer + + + Unknown + + + + + User defined + + + + + Estimated + + + + + Exact + + + + + min / max + + + + + of + + + + + QgsRasterTerrainAnalysisDialog + + + Export Frequency distribution as csv + + + + + Export Colors and elevations as xml + + + + + Import Colors and elevations from xml + + + + + Error opening file + + + + + The relief color file could not be opened + + + + + Error parsing xml + + + + + The xml file could not be loaded + + + + + Enter result file + + + + + Enter lower elevation class bound + + + + + + Elevation + + + + + Enter upper elevation class bound + + + + + Select color for relief class + + + + + QgsRasterTerrainAnalysisDialogBase + + + Dialog + + + + + Elevation layer + + + + + Output layer + + + + + ... + + + + + Output format + + + + + Z factor + + + + + Add result to project + + + + + Illumination + + + + + Azimuth (horizontal angle) + + + + + Vertical angle + + + + + Relief colors + + + + + Create automatically + + + + + Export distribution... + + + + + Up + + + + + Down + + + + + + + + + + + - + + + + + Lower bound + + + + + Upper bound + + + + + Color + + + + + Export colors... + + + + + Import colors... + + + + + QgsRasterTerrainAnalysisPlugin + + + Terrain analysis + + + + + + Slope + + + + + + Aspect + + + + + + Hillshade + + + + + + Relief + + + + + Ruggedness index + + + + + Calculating hillshade... + + + + + + + + + Abort + + + + + Calculating relief... + + + + + Calculating slope... + + + + + Calculating aspect... + + + + + Ruggedness + + + + + Calculating ruggedness... + + + + + QgsRendererRulePropsDialog + + + Rule properties + + + + + Label + + + + + + Filter + + + + + ... + + + + + Test + + + + + Description + + + + + Scale range + + + + + Min. scale + + + + + + 1 : + + + + + Max. scale + + + + + Symbol + + + + + Error + + + + + Filter expression parsing error: + + + + + + Evaluation error + + + + + Filter returned %n feature(s) + number of filtered features + + + + + + + + QgsRendererV2DataDefinedMenus + + + Rotation field + + + + + Size scale field + + + + + + Scale area + + + + + + Scale diameter + + + + + + + - no field - + + + + + QgsRendererV2PropertiesDialog + + + Symbology + + + + + Do you wish to use the original symbology implementation for this layer? + + + + + QgsRendererV2PropsDialogBase + + + Renderer settings + + + + + Old symbology + + + + + This renderer doesn't implement a graphical interface. + + + + + QgsRendererV2Widget + + + Change color + + + + + Change transparency + + + + + Change output unit + + + + + Change width + + + + + Change size + + + + + Transparency + + + + + Change symbol transparency [%] + + + + + Symbol unit + + + + + Select symbol unit + + + + + + Millimeter + + + + + Map unit + + + + + Width + + + + + Change symbol width + + + + + Size + + + + + Change symbol size + + + + + QgsRuleBasedRendererV2Model + + + (no filter) + + + + + <li><nobr>%1 features also in rule %2</nobr></li> + + + + + Label + + + + + Rule + + + + + Min. scale + + + + + Max.scale + + + + + Count + + + + + Duplicate count + + + + + Number of features in this rule. + + + + + Number of features in this rule which are also present in other rule(s). + + + + + QgsRuleBasedRendererV2Widget + + + Add + + + + + Edit + + + + + Remove + + + + + Refine current rules + + + + + Count features + + + + + Rendering order... + + + + + Add scales to rule + + + + + Add categories to rule + + + + + Add ranges to rule + + + + + Refine a rule to categories + + + + + Refine a rule to ranges + + + + + + Scale refinement + + + + + Parent rule %1 must have a symbol for this operation. + + + + + Please enter scale denominators at which will split the rule, separate them by commas (e.g. 1000,5000): + + + + + Error + + + + + "%1" is not valid scale denominator, ignoring it. + + + + + Calculating feature count. + + + + + Abort + + + + + QgsRunProcess + + + <b>Starting %1...</b> + + + + + Action + + + + + Unable to run command +%1 + + + + + Done + + + + + Unable to run command %1 + + + + + QgsSLConnectionItem + + + Database does not exist + + + + + Failed to open database + + + + + Failed to check metadata + + + + + Failed to get list of tables + + + + + Unknown error + + + + + Delete + + + + + %1: Not a vector layer! + + + + + + %1: OK! + + + + + + Import to SpatiaLite database + + + + + Failed to import some layers! + + + + + + + Import was successful. + + + + + QgsSLLayerItem + + + + + Delete layer + + + + + Layer deleted successfully. + + + + + QgsSLRootItem + + + New Connection... + + + + + Create database... + + + + + New SpatiaLite Database File + + + + + SpatiaLite + + + + + + Create SpatiaLite database + + + + + The database has been created + + + + + Failed to create the database: + + + + + + QgsSVGFillSymbolLayerWidget + + + Select svg texture file + + + + + QgsSearchQueryBuilder + + + Search query builder + + + + + &Test + + + + + &Clear + + + + + &Save... + + + + + Save query to an xml file + + + + + &Load... + + + + + Load query from xml file + + + + + Search results + + + + + Found %n matching feature(s). + test result + + + + + + + + + Search string parsing error + + + + + Evaluation error + + + + + Error during search + + + + + No Records + + + + + The query you specified results in zero records being returned. + + + + + Save query to file + + + + + + + + Error + + + + + Could not open file for writing + + + + + Load query from file + + + + + Query files + + + + + All files + + + + + Could not open file for reading + + + + + File is not a valid xml document + + + + + File is not a valid query document + + + + + Select attribute + + + + + There is no attribute '%1' in the current vector layer. Please select an existing attribute + + + + + QgsSelectedFeature + + + Validation started. + + + + + Validation finished (%n error(s) found). + number of geometry errors + + + + + + + + ring %1, vertex %2 + + + + + polygon %1, ring %2, vertex %3 + + + + + polyline %1, vertex %2 + + + + + vertex %1 + + + + + point %1 + + + + + single point + + + + + QgsShapeFile + + + Scanning + + + + + + + The database gave an error while executing this SQL: +%1 +The error was: +%2 + + + + + + The database gave an error while executing this SQL: + + + + + ... (rest of SQL trimmed) + is appended to a truncated SQL statement + + + + + The error was: +%1 + + + + + + QgsSingleBandGrayRendererWidget + + + Black to white + + + + + White to black + + + + + No enhancement + + + + + Stretch to MinMax + + + + + Stretch and clip to MinMax + + + + + Clip to MinMax + + + + + QgsSingleBandGrayRendererWidgetBase + + + Form + + + + + Contrast enhancement + + + + + Gray band + + + + + Min + + + + + Max + + + + + Color gradient + + + + + QgsSingleBandPseudoColorRendererWidget + + + + + + + Discrete + + + + + + + + + + Linear + + + + + + + Exact + + + + + + Equal interval + + + + + Custom color map entry + + + + + Load Color Map + + + + + The color map for band %1 failed to load + + + + + Open file + + + + + + Textfile (*.txt) + + + + + Import Error + + + + + The following lines contained errors + + + + + + + Read access denied + + + + + Read access denied. Adjust the file permissions and try again. + + + + + + + Save file + + + + + QGIS Generated Color Map Export File + + + + + Write access denied + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + QgsSingleBandPseudoColorRendererWidgetBase + + + Form + + + + + Band + + + + + Color interpolation + + + + + Add values manually + + + + + + + + + + ... + + + + + Remove selected row + + + + + Load color map from band + + + + + Load color map from file + + + + + Export color map to file + + + + + Value + + + + + Color + + + + + Label + + + + + Generate new color map + + + + + Classes + + + + + Colors + + + + + Classify + + + + + Min + + + + + Max + + + + + Mode + + + + + Min / max origin: + + + + + Min / Max origin + + + + + Invert colors order + + + + + QgsSingleSymbolDialog + + + Refresh markers + + + + + + None + + + + + Texture + + + + + Open File + + + + + Images + + + + + QgsSingleSymbolDialogBase + + + Single Symbol + + + + + Point Symbol + + + + + Size + + + + + In map units + + + + + Label + + + + + Fill options + + + + + ... + + + + + Outline options + + + + + Width + + + + + Drawing by field + + + + + Rotation + + + + + Area scale + + + + + Symbol + + + + + QgsSingleSymbolRendererV2Widget + + + Symbol levels... + + + + + QgsSmartGroupConditionWidget + + + Form + + + + + The Symbol + + + + + QgsSmartGroupEditorDialog + + + Invalid name + + + + + The smart group name field is empty. Kindly provide a name + + + + + QgsSmartGroupEditorDialogBase + + + Smart Group Editor + + + + + Smart Group Name + + + + + Condition matches + + + + + Add Condition + + + + + Conditions + + + + + QgsSnappingDialog + + + Snapping and Digitizing Options + + + + + + to vertex + + + + + + to segment + + + + + to vertex and segment + + + + + map units + + + + + pixels + + + + + QgsSnappingDialogBase + + + Snapping options + + + + + Layer + + + + + Mode + + + + + Tolerance + + + + + Units + + + + + Avoid Int. + + + + + Avoid intersections of new polygons + + + + + Enable topological editing + + + + + Enable snapping on intersection + + + + + QgsSpatiaLiteConnection + + + obsolete libspatialite: connecting to this DB requires using v.4.0 (or any subsequent) + + + + + + + + unknown error cause + + + + + obsolete libspatialite: AbstractInterface is unsupported + + + + + UNKNOWN + + + + + GEOMETRY + + + + + POINT + + + + + LINESTRING + + + + + POLYGON + + + + + MULTIPOINT + + + + + MULTILINESTRING + + + + + MULTIPOLYGON + + + + + GEOMETRYCOLLECTION + + + + + QgsSpatiaLiteProvider + + + Binary object (BLOB) + + + + + Text + + + + + Decimal number (double) + + + + + Whole number (integer) + + + + + Retrieval of spatialite version failed + + + + + Could not parse spatialite version string '%1' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SQLite error: %2 +SQL: %1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SpatiaLite + + + + + + + + + + + + + unknown cause + + + + + SQLite error getting feature: %1 + + + + + FAILURE: Field %1 not found. + + + + + QgsSpatiaLiteSourceSelect + + + Add SpatiaLite Table(s) + + + + + Databases + + + + + &Update statistics + + + + + &Add + + + + + &Build Query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Table + + + + + + Type + + + + + + Geometry column + + + + + + Sql + + + + + Are you sure you want to update the internal statistics for DB: %1? + +This could take a long time (depending on the DB size), +but implies better performance thereafter. + + + + + Confirm Update Statistics + + + + + + Update Statistics + + + + + Internal statistics successfully updated for: %1 + + + + + Error while updating internal statistics for: %1 + + + + + @ + + + + + Choose a SpatiaLite/SQLite DB to open + + + + + SpatiaLite DB + + + + + All files + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Select Table + + + + + You must select a table in order to add a Layer. + + + + + + SpatiaLite DB Open Error + + + + + Database does not exist: %1 + + + + + Failure while connecting to: %1 + +%2 + + + + + SpatiaLite getTableInfo Error + + + + + Failure exploring tables from: %1 + +%2 + + + + + SpatiaLite Error + + + + + Unexpected error when working with: %1 + +%2 + + + + + QgsSpatiaLiteTableModel + + + Table + + + + + Type + + + + + Geometry column + + + + + Sql + + + + + Point + + + + + Multipoint + + + + + Line + + + + + Multiline + + + + + Polygon + + + + + Multipolygon + + + + + QgsSpatialQueryDialog + + + The spatial query requires at least two vector layers + + + + + %n selected geometries + selected geometries + + + + + + + + Selected geometries + + + + + %1)Query + + + + + Begin at %L1 + + + + + < %1 > + + + + + Total of features = %1 + + + + + Total of invalid features: + + + + + Finish at %L1 (processing time %L2 minutes) + + + + + Using the field "%1" for subset + + + + + Sorry! Only this providers are enable: OGR, POSTGRES and SPATIALITE. + + + + + + %1 of %2 + + + + + all = %1 + + + + + %1 of %2(selected features) + + + + + Create new selection + + + + + Add to current selection + + + + + Remove from current selection + + + + + Result query + + + + + Invalid source + + + + + Invalid reference + + + + + %1 of %2 selected by "%3" + + + + + user + + + + + Map "%1" "on the fly" transformation. + + + + + enable + + + + + disable + + + + + Coordinate reference system(CRS) of +"%1" is invalid(see CRS of provider). + + + + + + +CRS of map is %1. +%2. + + + + + Zoom to feature + + + + + Missing reference layer + + + + + Select reference layer! + + + + + Missing target layer + + + + + Select target layer! + + + + + Create new layer from items + + + + + + The query from "%1" using "%2" in field not possible. + + + + + Create new layer from selected + + + + + %1 of %2 identified + + + + + DEBUG + + + + + QgsSpatialQueryDialogBase + + + Spatial Query + + + + + Layer on which the topological operation will select geometries + + + + + Select source features from + + + + + Select the target layer + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">When checked the operation will only consider selected geometries of the target layer</span></p></body></html> + + + + + + Selected feature(s) only + + + + + Where the feature + + + + + Select the topological operation + + + + + Layer whose geometries will be used as reference by the topological operation + + + + + Reference features of + + + + + Select the reference layer + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">When checked the operation will be only consider selected geometries of the reference layer</span></p></body></html> + + + + + And use the result to + + + + + Selected features + + + + + + Number of selected features in map + + + + + Create layer with selected + + + + + Result feature ID's + + + + + Select one FID to identify geometry of feature + + + + + Create layer with list of items + + + + + Zoom to item + + + + + Check to show log processing of query + + + + + Log messages + + + + + Run query or close the window + + + + + QgsSpatialQueryPlugin + + + + + &Spatial Query + + + + + Query not executed + + + + + DEBUG + + + + + QgsSpatialiteSridsDialogBase + + + Select a Spatialite Spatial Reference System + + + + + + SRID + + + + + Authority + + + + + Reference Name + + + + + Search + + + + + Filter + + + + + Name + + + + + QgsSpit + + + File Name + + + + + Feature Class + + + + + Features + + + + + DB Relation Name + + + + + Schema + + + + + Are you sure you want to remove the [%1] connection and all associated settings? + + + + + Confirm Delete + + + + + Add Shapefiles + + + + + Shapefiles + + + + + All files + + + + + The following Shapefile(s) could not be loaded: + + + + + + + REASON: File cannot be opened + + + + + REASON: One or both of the Shapefile files (*.dbf, *.shx) missing + + + + + General Interface Help: + + + + + PostgreSQL Connections: + + + + + [New ...] - create a new connection + + + + + [Edit ...] - edit the currently selected connection + + + + + [Remove] - remove the currently selected connection + + + + + -you need to select a connection that works (connects properly) in order to import files + + + + + -when changing connections Global Schema also changes accordingly + + + + + Shapefile List: + + + + + [Add ...] - open a File dialog and browse to the desired file(s) to import + + + + + [Remove] - remove the currently selected file(s) from the list + + + + + [Remove All] - remove all the files in the list + + + + + [SRID] - Reference ID for the shapefiles to be imported + + + + + [Use Default (SRID)] - set SRID to -1 + + + + + [Geometry Column Name] - name of the geometry column in the database + + + + + [Use Default (Geometry Column Name)] - set column name to 'the_geom' + + + + + [Global Schema] - set the schema for all files to be imported into + + + + + [Import] - import the current shapefiles in the list + + + + + [Quit] - quit the program + + + + + + [Help] - display this help dialog + + + + + + + + + + + + + + + + + + + + + + Import Shapefiles + + + + + + You need to specify a Connection first + + + + + Password for %1 + + + + + Please enter your password: + + + + + Connection failed - Check settings and try again + + + + + PostGIS not available + + + + + <p>The chosen database does not have PostGIS installed, but this is required for storage of spatial data.</p> + + + + + You need to add shapefiles to the list first + + + + + Importing files + + + + + Cancel + + + + + Progress + + + + + Problem inserting features from file: + + + + + %1 +Invalid table name. + + + + + %1 +No fields detected. + + + + + %1 +The following fields are duplicates: +%2 + + + + + Importing files +%1 + + + + + + + + + + + + + %1 +<p>Error while executing the SQL:</p><p>%2</p><p>The database said:%3</p> + + + + + Import Shapefiles - Relation Exists + + + + + The Shapefile: +%1 +will use [%2] relation for its data, +which already exists and possibly contains data. +To avoid data loss change the "DB Relation Name" +for this Shapefile in the main dialog file list. + +Do you want to overwrite the [%2] relation? + + + + + %1 of %2 shapefiles could not be imported. + + + + + QgsSpitBase + + + SPIT - Shapefile to PostGIS Import Tool + + + + + PostgreSQL connections + + + + + + Connect to PostGIS + + + + + Connect + + + + + + Create a new PostGIS connection + + + + + New + + + + + + Edit the current PostGIS connection + + + + + Edit + + + + + + Remove the current PostGIS connection + + + + + + Remove + + + + + Import options and shapefile list + + + + + Geometry column name + + + + + + Set the geometry column name to the default value + + + + + Use default geometry column name + + + + + SRID + + + + + + Set the SRID to the default value + + + + + Use default SRID + + + + + Primary key column name + + + + + Global schema + + + + + + Add a shapefile to the list of files to be imported + + + + + Add + + + + + + Remove the selected shapefile from the import list + + + + + + Remove all the shapefiles from the import list + + + + + Remove All + + + + + QgsSpitPlugin + + + &Import Shapefiles to PostgreSQL + + + + + Import shapefiles into a PostGIS-enabled PostgreSQL database. The schema and field names can be customized on import + + + + + + &Spit + + + + + QgsSponsorsBase + + + QGIS Sponsors + + + + + TextLabel + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">We work really hard to make this nice software for you. See all the cool features it has? Get a warm fuzzy feeling when you use it? Quantum GIS is a labour of love by a dedicated team of developers. We want you to copy &amp; share it and put it in the hands of as many people as possible. If QGIS is saving you money or you like our work and have the financial ability to help, please consider sponsoring the development of Quantum GIS. We use money from sponsors to pay for travel and costs related to our bi-annual hackfests, and to generally support the goals of our project. Please see the </span><a href="http://qgis.org/en/sponsorship.html"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">QGIS Sponsorship Web Page</span></a><span style=" font-size:10pt;"> for more details. In the list below you can see the fine people and companies that are helping us financially - a great big 'thank you' to you all!</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">2011 Sponsors</span></p> +<hr /> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">SILVER SPONSORS</span></p> +<p align="center" style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.vorarlberg.at"><span style=" font-family:'Courier New,courier'; font-size:10pt; text-decoration: underline; color:#0000ff;">State of Vorarlberg</span></a><span style=" font-family:'Courier New,courier'; font-size:10pt;"> </span><span style=" font-family:'Courier New,courier'; font-size:10pt; color:#333333;">, Austria (11.2011)</span></p> +<p align="center" style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.agi.so.ch"><span style=" font-family:'Courier New,courier'; font-size:10pt; text-decoration: underline; color:#0000ff;">Kanton Solothurn</span></a><span style=" font-family:'Courier New,courier'; font-size:10pt; color:#333333;">, Switzerland (4.2011)</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">BRONZE SPONSORS</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://gis.uster.ch/"><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; text-decoration: underline; color:#0000ff;">City of Uster</span></a><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; color:#0000ff;"> </span><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; color:#000000;">, Switzerland</span><span style=" font-family:'Helvetica,Arial,sans-serif'; color:#000000;"> (11.2011)</span></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.municipia.pt"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Municípia, SA</span></a></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">2010 Sponsors</span></p> +<hr /> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">BRONZE SPONSORS</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.gfosservices.com"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Studio Associato Gfosservices</span></a></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://nextgis.org"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">NEXTGIS</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:14pt; font-weight:600;"></p></body></html> + + + + + QgsSqlAnywhereProvider + + + Failed to load interface + + + + + Failed to connect to database + + + + + A connection to the SQL Anywhere database cannot be established. + + + + + No suitable key column + + + + + The source relation %1 has no column suitable for use as a unique key. + +Quantum GIS requires that the relation has an integer column no larger than 32 bits containing unique values. + + + + + Error loading attributes + + + + + Ambiguous field! + + + + + Duplicate field %1 found + + + + + + Error describing bind parameters + + + + + Error binding parameters + + + + + Error inserting features + + + + + Error deleting features + + + + + Error adding attributes + + + + + Error deleting attributes + + + + + Attribute not found + + + + + Error updating attributes + + + + + Error updating features + + + + + Error verifying geometry column %1 + + + + + Unknown geometry type + + + + + Column %1 has a geometry type of %2, which Quantum GIS does not currently support. + + + + + Mixed Spatial Reference Systems + + + + + Column %1 is not restricted to a single SRID, which Quantum GIS requires. + + + + + Error checking database ReadOnly property + + + + + Error loading SRS definition + + + + + Because Quantum GIS supports only planar data, the SQL Anywhere data provider will transform the data to the compatible planar projection (SRID=%1). + + + + + Because Quantum GIS supports only planar data and no compatible planar projection was found, the SQL Anywhere data provider will attempt to transform the data to planar WGS 84 (SRID=%1). + + + + + Limited Support of Round Earth SRS + + + + + Column %1 (%2) contains geometries belonging to a round earth spatial reference system (SRID=%3). %4 + +Updates to geometry values will be disabled, and query performance may be poor because spatial indexes will not be utilized. To improve performance, consider creating a spatial index on a new (possibly computed) column containing a planar projection of these geometries. For help, refer to the descriptions of the ST_SRID(INT) and ST_Transform(INT) methods in the SQL Anywhere documentation. + + + + + QgsStyleV2ExportImportDialog + + + Select all + + + + + Clear selection + + + + + Import style(s) + + + + + Select symbols to import + + + + + Import + + + + + Export style(s) + + + + + Export + + + + + + Export/import error + + + + + You should select at least one symbol/color ramp. + + + + + Save styles + + + + + XML files (*.xml *.XML) + + + + + Error when saving selected symbols to file: +%1 + + + + + Import error + + + + + An error occured during import: +%1 + + + + + Group Name + + + + + Please enter a name for new group: + + + + + imported + + + + + New Group + + + + + New group cannot be created without a name. Kindly enter a name. + + + + + New group + + + + + Cannot create a group without name. Enter a name. + + + + + + Duplicate names + + + + + Symbol with name '%1' already exists. +Overwrite? + + + + + Color ramp with name '%1' already exists. +Overwrite? + + + + + Load styles + + + + + XML files (*.xml *XML) + + + + + Downloading style ... + + + + + HTTP Error! + + + + + Download failed: %1. + + + + + QgsStyleV2ExportImportDialogBase + + + Styles import/export + + + + + Import from + + + + + Location + + + + + Save to group + + + + + Select symbols to export + + + + + QgsStyleV2ManagerDialog + + + + Type here to filter symbols ... + + + + + Marker symbol (%1) + + + + + Line symbol (%1) + + + + + Fill symbol (%1) + + + + + Color ramp (%1) + + + + + + + Gradient + + + + + + + Random + + + + + + + ColorBrewer + + + + + + + cpt-city + + + + + new symbol + + + + + new marker + + + + + new line + + + + + new fill symbol + + + + + Symbol Name + + + + + Please enter a name for new symbol: + + + + + + Save symbol + + + + + Cannot save symbol without name. Enter a name. + + + + + Symbol with name '%1' already exists. Overwrite? + + + + + Color ramp type + + + + + Please select color ramp type: + + + + + new ramp + + + + + new gradient ramp + + + + + new random ramp + + + + + Color Ramp Name + + + + + Please enter a name for new color ramp: + + + + + Save Color Ramp + + + + + Cannot save color ramp without name. Enter a name. + + + + + Save color ramp + + + + + Color ramp with name '%1' already exists. Overwrite? + + + + + + Invalid Selection + + + + + The parent group you have selected is not user editable. +Kindly select a user defined group. + + + + + Operation Not Allowed + + + + + Creation of nested smart groups are not allowed +Select the 'Smart Group' to create a new group. + + + + + Invalid selection + + + + + Cannot delete system defined categories. +Kindly select a group or smart group you might want to delete. + + + + + Error! + + + + + New group could not be created. +There was a problem with your symbol database. + + + + + Database Error + + + + + There was a problem with the Symbols database while regrouping. + + + + + You have not selected a Smart Group. Kindly select a Smart Group to edit. + + + + + Database Error! + + + + + There was some error while editing the smart group. + + + + + QgsStyleV2ManagerDialogBase + + + Style Manager + + + + + Marker + + + + + Line + + + + + Fill + + + + + Color ramp + + + + + Tags + + + + + Add item + + + + + Edit item + + + + + Edit + + + + + Remove item + + + + + Share + + + + + QgsSvgAnnotationDialog + + + SVG annotation + + + + + Delete + + + + + Select SVG file + + + + + SVG files + + + + + QgsSvgCache + + + SVG request failed [error: %1 - url: %2] + + + + + + SVG + + + + + SVG request error [status: %1 - reason phrase: %2] + + + + + %1 of %2 bytes of svg image downloaded. + + + + + QgsSvgMarkerSymbolLayerV2Widget + + + Select SVG file + + + + + SVG files + + + + + QgsSymbolLevelsV2Dialog + + + Layer %1 + + + + + QgsSymbolLevelsV2DialogBase + + + Symbol Levels + + + + + Enable symbol levels + + + + + Define the order in which the symbol layers are rendered. The numbers in the cells define in which rendering pass the layer will be drawn. + + + + + QgsSymbolV2SelectorDialog + + + Invalid Selection! + + + + + Kindly select a symbol to add layer. + + + + + QgsSymbolV2SelectorDialogBase + + + Symbol selector + + + + + Symbol layers + + + + + Add symbol layer + + + + + Remove symbol layer + + + + + Lock layer's color + + + + + Move up + + + + + Move down + + + + + QgsSymbolsListWidget + + + Symbol name + + + + + Please enter name for the symbol: + + + + + New symbol + + + + + Save symbol + + + + + Symbol with name '%1' already exists. Overwrite? + + + + + Transparency %1% + + + + + QgsTINInterpolatorDialog + + + Linear + + + + + + Clough-Toucher (cubic) + + + + + Save triangulation to file + + + + + QgsTINInterpolatorDialogBase + + + Triangle based interpolation + + + + + Interpolation method + + + + + Export triangulation to shapefile after interpolation + + + + + Output file + + + + + ... + + + + + QgsTextAnnotationDialog + + + Delete + + + + + Select font color + + + + + QgsTextAnnotationDialogBase + + + Annotation text + + + + + B + + + + + I + + + + + QgsTileScaleWidget + + + Form + + + + + Tile scale + + + + + QgsTipFactory + + + Quantum GIS is open source + + + + + Quantum GIS is open source software. This means that the software source code can be freely viewed and modified. The GPL places a restriction that any modifications you make must be made available in source form to whoever you give modified versions to, and that you can not create a new version of Quantum GIS under a 'closed source' license. Visit <a href="http://qgis.org"> the QGIS home page (http://qgis.org)</a> for more information. + + + + + QGIS Publications + + + + + If you write a scientific paper or any other article that refers to QGIS we would love to include your work in the <a href="http://www.qgis.org/en/community/qgis-case-studies.html">case studies section</a> of the Quantum GIS home page (http://http://www.qgis.org/en/community/qgis-case-studies.html). + + + + + Become an QGIS translator + + + + + Would you like to see QGIS in your native language? We are looking for more translators and would appreciate your help! The translation process is fairly straight forward - instructions are available in the QGIS wiki <a href="http://www.qgis.org/wiki/GUI_Translation">translator's page (http://www.qgis.org/wiki/GUI_Translation).</a> + + + + + QGIS Mailing lists + + + + + If you need help using QGIS we have a 'users' mailing list where users help each other with issues related to using our sofware. We also have a 'developers' mailing list. for those wanting help and to discuss things relating to the QGIS code base. Details on how to subscribe are in the <a href="http://www.qgis.org/en/community/mailing-lists.html">community section</a> of the QGIS home page (http://www.qgis.org/en/community/mailing-lists.html). + + + + + Is it 'QGIS' or 'Quantum GIS'? + + + + + Both are correct. For articles we suggest you write 'Quantum GIS (QGIS) is ....' and then refer to it as QGIS thereafter. + + + + + How do I refer to Quantum GIS? + + + + + QGIS is spelled in all caps. We have various subprojects of the QGIS project and it will help to avoid confusion if you refer to each by its name:<ul><li>QGIS Library - this is the C++ library that contains the core logic that is used to build the QGIS user interface and other applications.</li><li>QGIS Application - this is the desktop application that you know and love so much :-).</li><li>QGIS Mapserver - this is a server-side application based on the QGIS Library that will serve up your .qgs projects using the WMS protocol.</li></ul> + + + + + Add the current date to a map layout + + + + + You can add a current date variable to your map layout. Create a regular text label and add the string $CURRENT_DATE(yyyy-MM-dd) to the text box. See the <a href="http://doc.qt.nokia.com/latest/qdate.html#toString">QDate::toString format documentation</a> for the possible date formats. + + + + + Moving Elements and Maps in the Print Composer + + + + + In the print composer tool bar you can find two buttons for moving elements. The left one (a selection cursor with the hand symbol) selects and moves elements in the layout. After selecting the element with this tool you can also move them around with the arrow keys. For accurate positioning use the <strong>Position and Size</strong> dialogue, which can be found in the tab <strong>Item &rarr; General Options &rarr; Position and Size</strong>. For easier positioning you can also set specific anchor points of the element within this dialogue. The other move tool (the globe icon combined with the hand icon) allows one to move the map content within a map frame. + + + + + Lock an element in the layout view + + + + + By left clicking an element in the layout view you can select it, by right clicking an element you can lock it. A lock symbol will appear in the upper left corner of the selected element. This prevents the element from accidentally being moved with the mouse. While in a locked state, you cannot move an element with the mouse but you can still move it with the arrow keys or by absolutely positioning it by setting its <strong>Position and Size</strong>. + + + + + Rotating a map and linking a north arrow + + + + + You can rotate a map by setting its rotation value in the <strong>Item tab &rarr; Map</strong> section. To place a north arrow in your layout you can use the <strong>Add Image</strong> tool, the button with the little camera icon. QGIS comes with a selection of north arrows. After the placement of the north arrow in the layout you can link it with a specific map frame by activating the <strong>Sync with map</strong> checkbox and selecting a map frame. Whenever you change the rotation value of a linked map, the north arrow will now automatically adjust its rotation. + + + + + Numeric scale value in map layout linked to map frame + + + + + If you want to place a text label as a placeholder for the current scale, linked to a map frame, you need to place a scalebar and set the style to 'Numeric'. You also need to select the map frame, if there is more than one. + + + + + Using the mouse scroll wheel + + + + + You can use the scroll wheel on your mouse to zoom in, out and pan the map. Scroll forwards to zoom in, scroll backwards to zoom out and press and hold the scroll wheel down to pan the map. You can configure options for scroll wheel behaviour in the Options panel. + + + + + Stopping rendering + + + + + Sometimes you have a very large dataset which takes ages to draw. You can press 'esc' (the escape key), or click the small red 'X' icon in the status bar to the bottom right of the window at any time to halt rendering. If you are going to be performing several actions (e.g. modifying symbology options) and wish to temporarily disable map rendering while you do so, you can uncheck the 'Render' checkbox in the bottom right of the status bar. Don't forget to check it on again when you are ready to have the map draw itself again! + + + + + Join intersected polylines when rendering + + + + + When applying layered styles to a polyline layer, you can join intersecting lines together simply by enabling symbol levels. The image below shows a before (left) and after (right) view of an intersection when symbol levels are enabled. + + + + + Auto-enable on the fly projection + + + + + In the options dialog, under the CRS tab, you can set QGIS so that whenever you create a new project, 'on the fly projection' is enabled automatically and a pre-selected Coordinate Reference System of your choice is used. + + + + + Sponsor QGIS + + + + + If QGIS is saving you money or you like our work and have the financial ability to help, please consider sponsoring the development of Quantum GIS. We use money from sponsors to pay for travel and costs related to our bi-annual hackfests, and to generally support the goals of our project. Please see the <a href="http://qgis.org/en/sponsorship.html">QGIS Sponsorship Web Page</a> for more details. + + + + + Quantum GIS has Plugins! + + + + + Quantum GIS has plugins that extend its functionality. QGIS ships with some core plugins you can explore from the Plugins->Manage Plugins menu. In addition there are over 150 Python plugins contributed by the user community that can be installed from the Plugins->Fetch Python Plugins menu. Don't miss out on all QGIS has to offer---check out the plugins and see what they can do for you. + + + + + QgsTipGui + + + &Previous + + + + + &Next + + + + + QgsTipGuiBase + + + QGIS Tips! + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:10pt;">A nice tip goes here...</span></p></body></html> + + + + + I've had enough tips, don't show this on start up any more! + + + + + QgsTransformOptionsDialog + + + Dialog + + + + + Select transformation type: + + + + + Linear + + + + + Polynomial 1 + + + + + Polynomial 2 + + + + + Polynomial 3 + + + + + Thin plate spline (TPS) + + + + + Generate ESRI world file (.tfw) + + + + + QgsTransformSettingsDialog + + + Transformation settings + + + + + Transformation type: + + + + + Resampling method: + + + + + Nearest neighbour + + + + + + + Linear + + + + + Cubic + + + + + Cubic Spline + + + + + Lanczos + + + + + Compression: + + + + + Output raster: + + + + + + + + ... + + + + + Target SRS: + + + + + Generate pdf report: + + + + + Set Target Resolution + + + + + Horizontal + + + + + Vertical + + + + + Create world file + + + + + Generate pdf map: + + + + + Use 0 for transparency when needed + + + + + Load in QGIS when done + + + + + Helmert + + + + + Polynomial 1 + + + + + Polynomial 2 + + + + + Polynomial 3 + + + + + Thin Plate Spline + + + + + Projective + + + + + + + Info + + + + + Please set output name + + + + + %1 requires at least %2 GCPs. Please define more + + + + + Invalid output file name + + + + + Save raster + + + + + + Select save PDF file + + + + + + PDF Format + + + + + _modified + Georeferencer:QgsOpenRasterDialog.cpp - used to modify a user given file name + + + + + QgsUniqueValueDialog + + + default + + + + + Confirm Delete + + + + + The classification field was changed from '%1' to '%2'. +Should the existing classes be deleted before classification? + + + + + QgsUniqueValueDialogBase + + + Form1 + + + + + Classification field + + + + + Classify + + + + + Add class + + + + + Delete classes + + + + + Randomize Colors + + + + + Reset Colors + + + + + Restrict changes to common properties + + + + + QgsVectorColorBrewerColorRampV2DialogBase + + + ColorBrewer ramp + + + + + Scheme name + + + + + Colors + + + + + Preview + + + + + QgsVectorDataProvider + + + Codec %1 not found. Falling back to system locale + + + + + Add Features + + + + + Delete Features + + + + + Change Attribute Values + + + + + Add Attributes + + + + + Delete Attributes + + + + + Create Spatial Index + + + + + Fast Access to Features at ID + + + + + Change Geometries + + + + + QgsVectorFieldSymbolLayerWidget + + + X attribute + + + + + Y attribute + + + + + Length attribute + + + + + Angle attribute + + + + + Height attribute + + + + + QgsVectorGradientColorRampV2Dialog + + + Discrete + + + + + Continous + + + + + Gradient file : %1 + + + + + License file : %1 + + + + + + + + Offset of the stop + + + + + + + + Please enter offset in percents (%) of the new stop + + + + + QgsVectorGradientColorRampV2DialogBase + + + Gradient color ramp + + + + + Color 1 + + + + + + Change + + + + + Color 2 + + + + + Type + + + + + Multiple stops + + + + + Add stop + + + + + Remove stop + + + + + Color + + + + + Offset (%) + + + + + Preview + + + + + Information + + + + + QgsVectorLayer + + + Updating feature count for layer %1 + + + + + Abort + + + + + Unknown renderer + + + + + No renderer object + + + + + Classification field not found + + + + + renderer failed to save + + + + + no renderer + + + + + ERROR: no provider + + + + + ERROR: layer not editable + + + + + SUCCESS: %n attribute(s) deleted. + deleted attributes count + + + + + + + + ERROR: %n attribute(s) not deleted. + not deleted attributes count + + + + + + + + SUCCESS: %n attribute(s) added. + added attributes count + + + + + + + + ERROR: %n new attribute(s) not added + not added attributes count + + + + + + + + SUCCESS: attribute %1 was added. + + + + + ERROR: attribute %1 not added + + + + + SUCCESS: %n attribute value(s) changed. + changed attribute values count + + + + + + + + ERROR: %n attribute value change(s) not applied. + not changed attribute values count + + + + + + + + SUCCESS: %n feature(s) added. + added features count + + + + + + + + ERROR: %n feature(s) not added. + not added features count + + + + + + + + ERROR: %n feature(s) not added - provider doesn't support adding features. + not added features count + + + + + + + + SUCCESS: %n geometries were changed. + changed geometries count + + + + + + + + ERROR: %n geometries not changed. + not changed geometries count + + + + + + + + SUCCESS: %n feature(s) deleted. + deleted features count + + + + + + + + ERROR: %n feature(s) not deleted. + not deleted features count + + + + + + + + + Provider errors: + + + + + Commit errors: + %1 + + + + + General: + + + + + Layer comment: %1 + + + + + Storage type of this layer: %1 + + + + + Source for this layer: %1 + + + + + Geometry type of the features in this layer: %1 + + + + + The number of features in this layer: %1 + + + + + Editing capabilities of this layer: %1 + + + + + Extents: + + + + + In layer spatial reference system units : + + + + + + xMin,yMin %1,%2 : xMax,yMax %3,%4 + + + + + unknown extent + + + + + + In project spatial reference system units : + + + + + Layer Spatial Reference System: + + + + + Project (Output) Spatial Reference System: + + + + + (Invalid transformation of layer extents) + + + + + Attribute field info: + + + + + Field + + + + + Type + + + + + Length + + + + + Precision + + + + + Comment + + + + + QgsVectorLayerProperties + + + + + QGIS Layer Style File + + + + + + + SLD File + + + + + Layer Properties - %1 + + + + + + Stop editing mode to enable this. + + + + + Transparency: %1% + + + + + + Single Symbol + + + + + + Graduated Symbol + + + + + + Continuous Color + + + + + + Unique Value + + + + + Insert expression + + + + + This button opens the query builder and allows you to create a subset of features to display on the map canvas rather than displaying all features in the layer + + + + + The query used to limit the features in the layer is shown here. To enter or modify the query, click on the Query Builder button + + + + + + Spatial Index + + + + + Creation of spatial index successful + + + + + Creation of spatial index failed + + + + + + Default Style + + + + + Load layer properties from style file + + + + + Load Style + + + + + Save layer properties as style file + + + + + Saved Style + + + + + Symbology + + + + + Do you wish to use the new symbology implementation for this layer? + + + + + Save Style + + + + + Save Style... + + + + + QgsVectorLayerPropertiesBase + + + Layer Properties + + + + + Restore Default Style + + + + + Save As Default + + + + + Load Style ... + + + + + Save Style ... + + + + + Style + + + + + Legend type + + + + + Transparency + + + + + New symbology + + + + + Labels + + + + + Labels (deprecated) + + + + + Display labels + + + + + Fields + + + + + General + + + + + Options + + + + + CRS + + + + + Create Spatial Index + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify CRS + + + + + Update Extents + + + + + Use scale dependent rendering + + + + + + Minimum scale, i.e. maximum scale denominator. This limit is exclusive, that means the layer will not be displayed on this scale. + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Minimum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exclusive)</p></body></html> + + + + + + Maximum scale, i.e. minimum scale denominator. This limit is inclusive, that means the layer will be displayed on this scale. + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Maximum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inclusive)</p></body></html> + + + + + + Current + + + + + Subset + + + + + Query Builder + + + + + Provider-specific options + + + + + Encoding + + + + + Display + + + + + Legend display text + + + + + Map Tip display text + + + + + Inserts an expression into the action + + + + + Insert expression... + + + + + The valid attribute names for this layer + + + + + Inserts the selected field into the action + + + + + Insert field + + + + + HTML + + + + + Field + + + + + Metadata + + + + + Title + + + + + Abstract + + + + + Actions + + + + + Joins + + + + + Join layer + + + + + Join field + + + + + Target field + + + + + Diagrams + + + + + QgsVectorLayerSaveAsDialog + + + Layer CRS + + + + + Project CRS + + + + + Selected CRS + + + + + Save layer as... + + + + + Select the coordinate reference system for the vector file. The data points will be transformed from the layer coordinate reference system. + + + + + QgsVectorLayerSaveAsDialogBase + + + Save vector layer as... + + + + + Save as + + + + + + Browse + + + + + Encoding + + + + + Format + + + + + OGR creation options + + + + + Data source + + + + + Layer + + + + + This allows one to surpress attribute creation as some OGR drivers (eg. DGN, DXF) don't support it. + + + + + Skip attribute creation + + + + + Add saved file to map + + + + + CRS + + + + + QgsVectorRandomColorRampV2DialogBase + + + Random color ramp + + + + + Hue + + + + + + + from + + + + + + + to + + + + + Saturation + + + + + Value + + + + + Classes + + + + + Preview + + + + + QgsWCSConnectionItem + + + Edit... + + + + + Delete + + + + + QgsWCSRootItem + + + New Connection... + + + + + QgsWCSSourceSelect + + + Select a layer + + + + + No CRS selected + + + + + QgsWFSConnectionItem + + + Edit... + + + + + Delete + + + + + Modify WFS connection + + + + + QgsWFSData + + + Loading WFS data +%1 + + + + + Abort + + + + + QgsWFSProvider + + + unknown + + + + + received %1 bytes from %2 + + + + + Error + + + + + QgsWFSRootItem + + + New Connection... + + + + + Create a new WFS connection + + + + + QgsWFSSourceSelect + + + Network Error + + + + + Capabilities document is not valid + + + + + Server Exception + + + + + Error + + + + + No Layers + + + + + capabilities document contained no layers. + + + + + Create a new WFS connection + + + + + Modify WFS connection + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + QgsWFSSourceSelectBase + + + Add WFS Layer from a Server + + + + + Server connections + + + + + C&onnect + + + + + &New + + + + + Edit + + + + + Delete + + + + + Load connections from file + + + + + Load + + + + + Save connections to file + + + + + Save + + + + + Title + + + + + Name + + + + + Abstract + + + + + Cache +Features + + + + + Filter + + + + + Coordinate reference system + + + + + Change ... + + + + + QgsWMSConnection + + + WMS Password for %1 + + + + + QgsWMSConnectionItem + + + Edit... + + + + + Delete + + + + + QgsWMSRootItem + + + New Connection... + + + + + QgsWMSSourceSelect + + + &Add + + + + + Add selected layers to map + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + encoding %1 not supported. + + + + + WMS Provider + + + + + Could not open the WMS Provider + + + + + Options (%n coordinate reference systems available) + crs count + + + + + + + + Select layer(s) + + + + + Select layer(s) or a tileset + + + + + Select either layer(s) or a tileset + + + + + Coordinate Reference System (%n available) + crs count + + + + + + + + No common CRS for selected layers. + + + + + No CRS selected + + + + + No image encoding selected + + + + + %n Layer(s) selected + selected layer count + + + + + + + + Tileset selected + + + + + Could not understand the response. The %1 provider said: +%2 + + + + + WMS proxies + + + + + Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. + + + + + parse error at row %1, column %2: %3 + + + + + network error: %1 + + + + + The %1 connection already exists. Do you want to overwrite it? + + + + + Confirm Overwrite + + + + + QgsWMSSourceSelectBase + + + Add Layer(s) from a Server + + + + + Ready + + + + + Layers + + + + + C&onnect + + + + + &New + + + + + Edit + + + + + Delete + + + + + Adds a few example WMS servers + + + + + Add default servers + + + + + ID + + + + + Name + + + + + + + Title + + + + + Abstract + + + + + Image encoding + + + + + Save connections to file + + + + + Save + + + + + Load connections from file + + + + + Load + + + + + Options + + + + + Layer name + + + + + Coordinate Reference System + + + + + Change ... + + + + + Tile size + + + + + Feature limit for GetFeatureInfo + + + + + 10 + + + + + Layer Order + + + + + Move selected layer UP + + + + + Up + + + + + Move selected layer DOWN + + + + + Down + + + + + + Layer + + + + + + Style + + + + + Tilesets + + + + + Format + + + + + Tileset + + + + + CRS + + + + + Server Search + + + + + Search + + + + + Description + + + + + URL + + + + + Add selected row to WMS list + + + + + QgsWcsCapabilities + + + empty capabilities document + + + + + + +Tried URL: %1 + + + + + Capabilities request redirected. + + + + + empty of capabilities: %1 + + + + + Download of capabilities failed: %1 + + + + + WCS + + + + + %1 of %2 bytes of capabilities downloaded. + + + + + Exception + + + + + Could not get WCS capabilities: %1 + + + + + + + + Dom Exception + + + + + + + Could not get WCS capabilities in the expected format (DTD): no %1 found. +This might be due to an incorrect WCS Server URL. +Tag:%3 +Response was: +%4 + + + + + Version not supported + + + + + WCS server version %1 is not supported by Quantum GIS (supported versions: 1.0.0, 1.1.0, 1.1.2) + + + + + Could not get WCS capabilities: %1 at line %2 column %3 +This is probably due to an incorrect WCS Server URL. +Response was: + +%4 + + + + + QgsWcsProvider + + + Cannot describe coverage + + + + + Coverage not found + + + + + Cannot calculate extent + + + + + Cannot get test dataset. + + + + + Received coverage has wrong extent %1 (expected %2) + + + + + + + + + + + + + + + + + + + + WCS + + + + + Rotating raster + + + + + Block read OK + + + + + Received coverage has wrong size %1 x %2 (expected %3 x %4) + + + + + Getting map via WCS. + + + + + Map request error (Status: %1; Reason phrase: %2; URL:%3) + + + + + Map request error:<br>Title: %1<br>Error: %2<br>URL: <a href='%3'>%3</a>) + + + + + Map request error (Status: %1; Response: %2; URL:%3) + + + + + Cannot find boundary in multipart content type + + + + + Expected 2 parts, %1 received + + + + + More than 2 parts (%1) received + + + + + Map request error (Title:%1; Error:%2; URL: %3) + + + + + Map request error (Response: %1; URL:%2) + + + + + Content-Transfer-Encoding %1 not supported + + + + + No data received + + + + + Cannot create memory file + + + + + Map request failed [error:%1 url:%2] + + + + + Not logging more than 100 request errors. + + + + + %1 of %2 bytes of map downloaded. + + + + + Dom Exception + + + + + Could not get WCS Service Exception at %1: %2 at line %3 column %4 + +Response was: + +%5 + + + + + Request contains a format not offered by the server. + + + + + Request is for a Coverage not offered by the service instance. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. + + + + + Request does not include a parameter value, and the server instance did not declare a default value for that dimension. + + + + + Request contains an invalid parameter value. + + + + + No other exceptionCode specified by this service and server applies to this exception. + + + + + Operation request contains an output CRS that can not be used within the output format. + + + + + Operation request specifies to "store" the result, but not enough storage is available to do this. + + + + + (No error code was reported) + + + + + (Unknown error code) + + + + + The WCS vendor also reported: + + + + + composed error message '%1'. + + + + + + Property + + + + + + Value + + + + + Name (identifier) + + + + + + Title + + + + + + Abstract + + + + + Fixed Width + + + + + Fixed Height + + + + + Native CRS + + + + + Native Bounding Box + + + + + WGS 84 Bounding Box + + + + + + Available in CRS + + + + + + (and %n more) + crs + + + + + + + + + Available in format + + + + + + Coverages + + + + + Cache Stats + + + + + Server Properties + + + + + Keywords + + + + + Online Resource + + + + + Contact Person + + + + + Fees + + + + + Access Constraints + + + + + Image Formats + + + + + GetCapabilitiesUrl + + + + + Get Coverage Url + + + + + &nbsp;<font color="red">(advertised but ignored)</font> + + + + + And %1 more coverages + + + + + QgsWmsProvider + + + Cannot parse URI + + + + + Cannot calculate extent + + + + + Cannot set CRS + + + + + Number of layers and styles don't match + + + + + + + + + + + + + + + + + + + + + WMS + + + + + Number of tile layers must be one + + + + + Tile layer not found + + + + + Tile layer or tile matrix set not found + + + + + Getting map via WMS. + + + + + Getting tiles. + + + + + + %n tile requests in background + tile request count + + + + + + + + + , %n cache hits + tile cache hits + + + + + + + + + , %n cache misses. + tile cache missed + + + + + + + + + , %n errors. + errors + + + + + + + + image is NULL + + + + + unexpected image size + + + + + Tile request error + + + + + Status: %1 +Reason phrase: %2 + + + + + Tile request error (Title:%1; Error:%2; URL: %3) + + + + + Tile request error (Status:%1; Content-Type:%2; Length:%3; URL: %4) + + + + + + Returned image is flawed [%1] + + + + + Tile request failed [error:%1 url:%2] + + + + + + Not logging more than 100 request errors. + + + + + Map request error (Status: %1; Reason phrase: %2; URL:%3) + + + + + Map request error (Title:%1; Error:%2; URL: %3) + + + + + Map request error (Status: %1; Response: %2; URL:%3) + + + + + Map request failed [error:%1 url:%2] + + + + + empty capabilities document + + + + + +Tried URL: %1 + + + + + Capabilities request redirected. + + + + + empty of capabilities: %1 + + + + + Download of capabilities failed: %1 + + + + + %1 of %2 bytes of capabilities downloaded. + + + + + %1 of %2 bytes of map downloaded. + + + + + + + Dom Exception + + + + + Could not get WMS capabilities: %1 at line %2 column %3 +This is probably due to an incorrect WMS Server URL. +Response was: + +%4 + + + + + Could not get WMS capabilities in the expected format (DTD): no %1 or %2 found. +This might be due to an incorrect WMS Server URL. +Tag:%3 +Response was: +%4 + + + + + Could not get WMS Service Exception at %1: %2 at line %3 column %4 + +Response was: + +%5 + + + + + Request contains a format not offered by the server. + + + + + Request contains a CRS not offered by the server for one or more of the Layers in the request. + + + + + Request contains a SRS not offered by the server for one or more of the Layers in the request. + + + + + GetMap request is for a Layer not offered by the server, or GetFeatureInfo request is for a Layer not shown on the map. + + + + + Request is for a Layer in a Style not offered by the server. + + + + + GetFeatureInfo request is applied to a Layer which is not declared queryable. + + + + + GetFeatureInfo request contains invalid X or Y value. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. + + + + + Request does not include a sample dimension value, and the server did not declare a default value for that dimension. + + + + + Request contains an invalid sample dimension value. + + + + + Request is for an optional operation that is not supported by the server. + + + + + (No error code was reported) + + + + + (Unknown error code) + + + + + The WMS vendor also reported: + + + + + composed error message '%1'. + + + + + Extent for layer %1 not found in capabilities + + + + + + + + Property + + + + + + + + Value + + + + + + Name + + + + + Visibility + + + + + Visible + + + + + Hidden + + + + + + + Title + + + + + + + Abstract + + + + + Can Identify + + + + + + + + Yes + + + + + + + + No + + + + + Can be Transparent + + + + + Can Zoom In + + + + + Cascade Count + + + + + Fixed Width + + + + + Fixed Height + + + + + WGS 84 Bounding Box + + + + + + Available in CRS + + + + + (and %n more) + crs + + + + + + + + Available in style + + + + + + Server Properties + + + + + + Selected Layers + + + + + + Other Layers + + + + + Tile Layer Properties + + + + + Cache Stats + + + + + WMS Version + + + + + Keywords + + + + + Online Resource + + + + + Contact Person + + + + + Fees + + + + + Access Constraints + + + + + Image Formats + + + + + Identify Formats + + + + + Layer Count + + + + + Tile Layer Count + + + + + GetCapabilitiesUrl + + + + + GetMapUrl + + + + + + &nbsp;<font color="red">(advertised but ignored)</font> + + + + + GetFeatureInfoUrl + + + + + GetTileUrl + + + + + Tile templates + + + + + FeatureInfo templates + + + + + Tileset Properties + + + + + WMTS + + + + + WMS-C + + + + + Selected + + + + + Available Styles + + + + + CRS + + + + + Bounding Box + + + + + Available Tilesets + + + + + Cache stats + + + + + Hits + + + + + Misses + + + + + Errors + + + + + identify request redirected. + + + + + Map getfeatureinfo error %1: %2 + + + + + ERROR: GetFeatureInfo failed + + + + + Map getfeatureinfo error: %1 [%2] + + + + + QgsWmtsDimensionsBase + + + Dialog + + + + + Dimension + + + + + + Value + + + + + Abstract + + + + + Default + + + + + QgsZonalStatisticsDialogBase + + + Dialog + + + + + Raster layer: + + + + + Polygon layer containing the zones: + + + + + Output column prefix: + + + + + QgsZonalStatisticsPlugin + + + + + &Zonal statistics + + + + + Calculating zonal statistics... + + + + + Abort... + + + + + RgExportDlg + + + Export feature + + + + + Select destination layer + + + + + New temporary layer + + + + + RgLineVectorLayerSettingsWidget + + + Transportation layer + + + + + Layer + + + + + Direction field + + + + + Value for forward direction + + + + + Value for reverse direction + + + + + Value two-way direction + + + + + Speed field + + + + + km/h + + + + + m/s + + + + + Default settings + + + + + Direction + + + + + Two-way direction + + + + + Forward direction + + + + + Reverse direction + + + + + Cost + + + + + Line lengths + + + + + Speed + + + + + + Always use default + + + + + RgSettingsDlg + + + Road graph plugin settings + + + + + Time unit + + + + + Distance unit + + + + + Topology tolerance + + + + + second + + + + + hour + + + + + meter + + + + + kilometer + + + + + RgShortestPathWidget + + + Shortest path + + + + + Start + + + + + Stop + + + + + Criterion + + + + + + Length + + + + + + Time + + + + + Calculate + + + + + Export + + + + + Clear + + + + + Help + + + + + Point not selected + + + + + First, select start and stop points. + + + + + Plugin isn't configured + + + + + Plugin isn't configured! + + + + + + Tie point failed + + + + + Start point doesn't tie to the road! + + + + + Stop point doesn't tie to the road! + + + + + Path not found + + + + + RoadGraphPlugin + + + Settings + + + + + Road graph plugin settings + + + + + + Road graph + + + + + SEXTANTE + + Analysis + + + + &SEXTANTE toolbox + + + + &SEXTANTE modeler + + + + &SEXTANTE history and log + + + + &SEXTANTE options and configuration + + + + &SEXTANTE results viewer + + + + + SaDbTableModel + + + Schema + + + + + Table + + + + + Type + + + + + SRID + + + + + Line Interpretation + + + + + Geometry column + + + + + Sql + + + + + SaNewConnection + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + Failed to load interface + + + + + + Test connection + + + + + Connection to %1 was successful + + + + + Connection failed. Check settings and try again. + +SQL Anywhere error code: %1 +Description: %2 + + + + + SaNewConnectionBase + + + Create a new SQL Anywhere connection + + + + + Connection Information + + + + + Name + + + + + Host + + + + + Port + + + + + Server + + + + + Database + + + + + Connection Parameters + + + + + Username + + + + + Password + + + + + Name of the new connection + + + + + Name or IP address of computer hosting the database server (leave blank for local connections) + + + + + Port number used by the database server (leave blank for default 2638) + + + + + Name of the database server (leave blank for default server on host) + + + + + Name of the database (leave blank for default database on server) + + + + + Additional connection parameters + + + + + Database username + + + + + Database password + + + + + Save the connection username in the registry + + + + + Save Username + + + + + &Test Connect + + + + + Save the connection password in the registry (WARNING: NOT SECURE) + + + + + Save Password + + + + + Encrypt packets using simple encryption + + + + + Simple Encryption + + + + + Use estimates for certain layer properties such as cardinality, extent, etc. (improves performance) + + + + + Estimate table metadata + + + + + Search for geometry columns in tables owned by other users + + + + + Search other users' tables + + + + + SaSourceSelect + + + &Add + + + + + &Build Query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Schema + + + + + + Table + + + + + + Type + + + + + + SRID + + + + + + Line Interpretation + + + + + + Geometry column + + + + + + Sql + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Select Table + + + + + You must select a table in order to add a layer. + + + + + Failed to load interface + + + + + Connection failed + + + + + Connection to database %1 failed. Check settings and try again. + +SQL Anywhere error code: %2 +Description: %3 + + + + + No accessible tables found + + + + + Database connection was successful, but no tables containing geometry columns were %1. + + + + + found + + + + + found in your schema + + + + + SaSourceSelectBase + + + Add SQL Anywhere layer + + + + + SQL Anywhere Connections + + + + + Delete + + + + + Edit + + + + + New + + + + + Connect + + + + + Search options + + + + + Search + + + + + Search mode + + + + + Search in columns + + + + + SelectGeoRasterBase + + + Select Oracle Spatial GeoRaster + + + + + Server Connections + + + + + Edit + + + + + Delete + + + + + &New + + + + + C&onnect + + + + + Subdatasets + + + + + Selection + + + + + Update + + + + + Ready + + + + + SettingsDialog + + + Font + + + + + Size + + + + + API file + + + + + Browse + + + + + Use preloaded API file + + + + + SextanteToolbox + + + SEXTANTE Toolbox + + + + + Click here to configure +additional algorithm providers + + + + + Enter algorithm name to filter list + + + + Search... + + + + Execute + + + + Execute as batch process + + + + Edit rendering styles for outputs + + + + Warning + + + + Recently used algorithms + + + + + SimplifyLineDialog + + + Simplify line tolerance + + + + + Set tolerance + + + + + OK + + + + + SqlAnywhere + + + Add SQL Anywhere Layer... + + + + + Store vector layers within a SQL Anywhere database + + + + + Invalid Layer + + + + + %1 is an invalid layer and cannot be loaded. + + + + + SymbolsListWidget + + + Form + + + + + Unit + + + + + Millimeter + + + + + Map unit + + + + + Opacity + + + + + Color + + + + + Change + + + + + Size + + + + + Rotation + + + + + ° + + + + + Width + + + + + Saved styles + + + + + Symbol Name + + + + + Style + + + + + Advanced + + + + + UndoWidget + + + Undo/Redo + + + + + Undo + + + + + Redo + + + + + ValidateDialog + + Check geometry validity + + + + Geometry errors + + + + Total encountered errors + + + + Error! + + + + Please specify input vector layer + + + + Please specify input field + + + + Please specify output shapefile + + + + Cancel + + + + Geometry + + + + Created output shapefile: +%1 +%2 + +Would you like to add the new layer to the TOC? + + + + Error loading output shapefile: +%1 + + + + Feature + + + + Error(s) + + + + + VisualDialog + + Error! + + + + Please specify input vector layer + + + + Please specify input field + + + + List unique values + + + + Unique values + + + + Total unique values + + + + Basics statistics + + + + Statistics output + + + + Nearest neighbour analysis + + + + Nearest neighbour statistics + + + + Cancel + + + + Parameter + + + + Value + + + + + WidgetCentroidFill + + + Form + + + + + WidgetEllipseBase + + + Form + + + + + Settings + + + + + Border color + + + + + + Change + + + + + + Fill color + + + + + + Symbol width + + + + + + Outline width + + + + + + Symbol height + + + + + + Rotation + + + + + Data defined settings + + + + + Outline color + + + + + Shape + + + + + WidgetFontMarker + + + Form + + + + + Size + + + + + Change + + + + + Font family + + + + + ° + + + + + Offset X,Y + + + + + Color + + + + + Rotation + + + + + WidgetLineDecoration + + + Form + + + + + Change + + + + + Pen width + + + + + Color + + + + + WidgetLinePatternFill + + + Form + + + + + Line width + + + + + Color + + + + + Angle + + + + + Change + + + + + Distance + + + + + Offset + + + + + WidgetMarkerLine + + + Form + + + + + Marker placement + + + + + with interval + + + + + on every vertex + + + + + on last vertex only + + + + + on first vertex only + + + + + Rotate marker + + + + + Line offset + + + + + on central point + + + + + WidgetPointPatternFill + + + Form + + + + + Horizontal distance + + + + + Vertical distance + + + + + Horizontal displacement + + + + + Vertical displacement + + + + + WidgetSVGFill + + + Form + + + + + Border color + + + + + Color + + + + + + Change + + + + + Texture width + + + + + Rotation + + + + + Border width + + + + + SVG Groups + + + + + SVG Symbols + + + + + ... + + + + + WidgetSimpleFill + + + Form + + + + + Border color + + + + + Fill style + + + + + Color + + + + + Offset X,Y + + + + + + Change + + + + + Border style + + + + + Border width + + + + + WidgetSimpleLine + + + Form + + + + + Color + + + + + + Change + + + + + Pen width + + + + + Offset + + + + + Pen style + + + + + Use custom dash pattern + + + + + Join style + + + + + Cap style + + + + + WidgetSimpleMarker + + + Form + + + + + Angle + + + + + + Change + + + + + Border color + + + + + Size + + + + + Fill color + + + + + Offset X,Y + + + + + WidgetSvgMarker + + + Form + + + + + Size + + + + + + Change + + + + + Offset X,Y + + + + + Angle + + + + + Border color + + + + + Border width + + + + + Color + + + + + SVG Groups + + + + + SVG Image + + + + + ... + + + + + WidgetVectorFieldBase + + + Form + + + + + X attribute + + + + + Y attribute + + + + + Scale + + + + + Vector field type + + + + + Height only + + + + + Polar + + + + + Cartesian + + + + + Angle units + + + + + Degrees + + + + + Radians + + + + + Angle orientation + + + + + Counterclockwise from east + + + + + Clockwise from north + + + + + [pluginname]GuiBase + + + QGIS Plugin Template + + + + + Plugin Template + + + + + dxf2shpConverter + + + Converts DXF files in Shapefile format + + + + + + &Dxf2Shp + + + + + dxf2shpConverterGui + + + Dxf Importer + + + + + Input and output + + + + + Input DXF file + + + + + + ... + + + + + Output file + + + + + Export text labels + + + + + Output file type + + + + + Polyline + + + + + Polygon + + + + + Point + + + + + + Warning + + + + + Please specify a file to convert. + + + + + Please specify an output file + + + + + Fields description: +* Input DXF file: path to the DXF file to be converted +* Output Shp file: desired name of the shape file to be created +* Shp output file type: specifies the type of the output shape file +* Export text labels checkbox: if checked, an additional shp points layer will be created, and the associated dbf table will contain information about the "TEXT" fields found in the dxf file, and the text strings themselves + +--- +Developed by Paolo L. Scala, Barbara Rita Barricelli, Marco Padula +CNR, Milan Unit (Information Technology), Construction Technologies Institute. +For support send a mail to scala@itc.cnr.it + + + + + + Choose a DXF file to open + + + + + DXF files + + + + + Choose a file name to save to + + + + + Shapefile + + + + + eVis + + + eVis Database Connection + + + + + eVis Event Id Tool + + + + + eVis Event Browser + + + + + Create layer from a database query + + + + + Open an Event Browers and display the selected feature + + + + + Open an Event Browser to explore the current layer's features + + + + + eVisDatabaseConnectionGui + + + + Undefined + + + + + No predefined queries loaded + + + + + + + + + Open File + + + + + New Database connection requested... + + + + + Error: You must select a database type + + + + + Error: No host name entered + + + + + Error: No database name entered + + + + + Connection to [%1.%2] established + + + + + connected + + + + + Tables + + + + + Connection to [%1.%2] failed: %3 + + + + + Error: Parse error at line %1, column %2: %3 + + + + + Error: Unabled to open file [%1] + + + + + Error: Query failed: %1 + + + + + Error: Could not create temporary file, process halted + + + + + Error: A database connection is not currently established + + + + + eVisDatabaseConnectionGuiBase + + + + Database Connection + + + + + Predefined Queries + + + + + Load predefined queries + + + + + Loads an XML file with predefined queries. Use the Open File window to locate the XML file that contains one or more predefined queries using the format described in the user guide. + + + + + The description of the selected query. + + + + + Select the predefined query you want to use from the drop-down list containing queries identified from the file loaded using the Open File icon above. To run the query you need to click on the SQL Query tab. The query will be automatically entered in the query window. + + + + + not connected + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Connection Status: </span></p></body></html> + + + + + Database Host + + + + + Enter the database host. If the database resides on your desktop you should enter ¨localhost¨. If you selected ¨MSAccess¨ as the database type this option will not be available. + + + + + Password to access the database. + + + + + Enter the name of the database. + + + + + Username + + + + + Enter the port through which the database must be accessed if a MYSQL database is used. + + + + + Connect to the database using the parameters selected above. If the connection was successful a message will be displayed in the Output Console below saying the connection was established. + + + + + Connect + + + + + User name to access the database. + + + + + Select the type of database from the list of supported databases in the drop-down menu. + + + + + Database Name + + + + + Password + + + + + Database Type + + + + + Port + + + + + SQL Query + + + + + Run the query entered above. The status of the query will be displayed in the Output Console below. + + + + + Run Query + + + + + Enter the query you want to run in this window. + + + + + A window for status messages to be displayed. + + + + + Output Console + + + + + eVisDatabaseLayerFieldSelectionGuiBase + + + Database File Selection + + + + + The name of the field that contains the Y coordinate of the points. + + + + + The name of the field that contains the X coordinate of the points. + + + + + Enter the name for the new layer that will be created and displayed in QGIS. + + + + + Y Coordinate + + + + + X Coordinate + + + + + Name of New Layer + + + + + eVisGenericEventBrowserGui + + + Generic Event Browser + + + + + Field + + + + + Value + + + + + + + + Warning + + + + + + This tool only supports vector data + + + + + + No active layers found + + + + + + Error + + + + + Unable to connect to either the map canvas or application interface + + + + + An invalid feature was received during initialization + + + + + Event Browser - Displaying records 01 of %1 + + + + + Attribute Contents + + + + + + Event Browser - Displaying records %1 of %2 + + + + + Select Application + + + + + All ( * ) + + + + + eVisGenericEventBrowserGuiBase + + + Display + + + + + Use the Previous button to display the previous photo when more than one photo is available for display. + + + + + Previous + + + + + Use the Next button to display the next photo when more than one photo is available for display. + + + + + Next + + + + + All of the attribute information for the point associated with the photo being viewed is displayed here. If the file type being referenced in the displayed record is not an image but is of a file type defined in the “Configure External Applications” tab then when you double-click on the value of the field containing the path to the file the application to open the file will be launched to view or hear the contents of the file. If the file extension is recognized the attribute data will be displayed in green. + + + + + 1 + + + + + Image display area + + + + + Display area for the image. + + + + + Options + + + + + File path + + + + + Attribute containing path to file + + + + + Use the drop-down list to select the field containing a directory path to the image. This can be an absolute or relative path. + + + + + If checked the path to the image will be defined appending the attribute in the field selected from the “Attribute Containing Path to Image” drop-down list to the “Base Path” defined below. + + + + + Path is relative + + + + + If checked, the relative path values will be saved for the next session. + + + + + + + + + + Remember this + + + + + + + + + + Reset to default + + + + + + Resets the values on this line to the default setting. + + + + + + + + + + Reset + + + + + Compass bearing + + + + + Attribute containing compass bearing + + + + + Use the drop-down list to select the field containing the compass bearing for the image. This bearing usually references the direction the camera was pointing when the image was acquired. + + + + + If checked an arrow pointing in the direction defined by the attribute in the field selected from the drop-down list to the right will be displayed in the QGIS window on top of the point for this image. + + + + + Display compass bearing + + + + + If checked, the Display Compass Bearing values will be saved for the next session. + + + + + Compass offset + + + + + Define the compass offset manually. + + + + + Manual + + + + + A value to be added to the compass bearing. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values. + + + + + Define the compass offset using a field from the vector layer attribute table. + + + + + From Attribute + + + + + Use the drop-down list to select the field containing the compass bearing offset. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values. + + + + + If checked, the compass offset values will be saved for the next session. + + + + + Resets the compass offset values to the default settings. + + + + + Relative paths + + + + + The base path or url from which images and documents can be “relative” + + + + + + Base Path + + + + + The Base Path onto which the relative path defined above will be appended. + + + + + If checked, the Base Path will be saved for the next session. + + + + + Enters the default “Base Path” which is the path to the directory of the vector layer containing the image information. + + + + + If checked, the Base Path will append only the file name instead of the entire relative path (defined above) to create the full directory path to the file. + + + + + Replace entire path/url stored in image path attribute with user defined +Base Path (i.e. keep only filename from attribute) + + + + + + If checked, the current check-box setting will be saved for the next session. + + + + + + Clears the check-box on this line. + + + + + If checked, the same path rules that are defined for images will be used for non-image documents such as movies, text documents, and sound files. If not checked the path rules will only apply to images and other documents will ignore the Base Path parameter. + + + + + Apply Path to Image rules when loading docs in external applications + + + + + Clicking on Save will save the settings without closing the Options pane. Clicking on Restore Defaults will reset all of the fields to their default settings. It has the same effect as clicking all of the “Reset to default” buttons. + + + + + Configure External Applications + + + + + File extension and external application in which to load a document of that type + + + + + A table containing file types that can be opened using eVis. Each file type needs a file extension and the path to an application that can open that type of file. This provides the capability of opening a broad range of files such as movies, sound recording, and text documents instead of only images. + + + + + Extension + + + + + Application + + + + + Add new file type + + + + + Add a new file type with a unique extension and the path for the application that can open the file. + + + + + Delete current row + + + + + Delete the file type highlighted in the table and defined by a file extension and a path to an associated application. + + + + + eVisImageDisplayWidget + + + Zoom in + + + + + Zoom in to see more detail. + + + + + Zoom out + + + + + Zoom out to see more area. + + + + + Zoom to full extent + + + + + Zoom to display the entire image. + + + + + fTools + + Quantum GIS version detected: + + + + This version of fTools requires at least QGIS version 1.0.0 +Plugin will not be enabled. + + + + &Analysis Tools + + + + Distance matrix + + + + Sum line lengths + + + + Points in polygon + + + + Basic statistics + + + + List unique values + + + + Nearest neighbour analysis + + + + Mean coordinate(s) + + + + Line intersections + + + + &Research Tools + + + + Random selection + + + + Random selection within subsets + + + + Random points + + + + Regular points + + + + Vector grid + + + + Select by location + + + + Polygon from layer extent + + + + &Geoprocessing Tools + + + + Convex hull(s) + + + + Buffer(s) + + + + Intersect + + + + Union + + + + Symetrical difference + + + + Clip + + + + Dissolve + + + + Difference + + + + Eliminate sliver polygons + + + + G&eometry Tools + + + + Export/Add geometry columns + + + + Check geometry validity + + + + Polygon centroids + + + + Delaunay triangulation + + + + Voronoi Polygons + + + + Extract nodes + + + + Simplify geometries + + + + Densify geometries + + + + Multipart to singleparts + + + + Singleparts to multipart + + + + Polygons to lines + + + + Lines to polygons + + + + &Data Management Tools + + + + Define current projection + + + + Join attributes by location + + + + Split vector layer + + + + Merge shapefiles to one + + + + Create spatial index + + + + + geometryThread + + Merge all + + + + Polygon area + + + + Polygon perimeter + + + + Line length + + + + Point x coordinate + + + + Point y coordinate + + + + + grasslabel + + + (1-256) + + + + + (Optional) column to read labels + + + + + 3D-Viewer (NVIZ) + + + + + 3d Visualization + + + + + Add a value to the current category values + + + + + Add elements to layer (ALL elements of the selected layer type!) + + + + + Add missing centroids to closed boundaries + + + + + Add one or more columns to attribute table + + + + + Allocate network + + + + + Assign constant value to column + + + + + Assign new constant value to column only if the result of query is TRUE + + + + + Assign new value as result of operation on columns to column in attribute table + + + + + Assign new value to column as result of operation on columns only if the result of query is TRUE + + + + + Attribute field + + + + + Attribute field (interpolated values) + + + + + Attribute field to (over)write + + + + + Attribute field to join + + + + + Auto-balancing of colors for LANDSAT-TM raster + + + + + Bicubic or bilinear spline interpolation with Tykhonov regularization + + + + + Bilinear interpolation utility for raster maps + + + + + Blend color components for two rasters by given ratio + + + + + Blend red, green, raster layers to obtain one color raster + + + + + Break (topologically clean) polygons (imported from non topological format, like ShapeFile). Boundaries are broken on each point shared between 2 and more polygons where angles of segments are different + + + + + Break lines at each intersection of vector + + + + + Brovey transform to merge multispectral and high-res panchromatic channels + + + + + Buffer + + + + + Build polylines from lines + + + + + Calculate average of raster within areas with the same category in a user-defined base map + + + + + Calculate covariance/correlation matrix for user-defined rasters + + + + + Calculate error matrix and kappa parameter for accuracy assessment of classification result + + + + + Calculate geometry statistics for vectors + + + + + Calculate linear regression from two rasters: y = a + b*x + + + + + Calculate median of raster within areas with the same category in a user-defined base map + + + + + Calculate mode of raster within areas with the same category in a user-defined base map + + + + + Calculate optimal index factor table for LANDSAT-TM raster + + + + + Calculate raster surface area + + + + + Calculate shadow maps from exact sun position + + + + + Calculate shadow maps from sun position determinated by date/time + + + + + Calculate statistics for raster + + + + + Calculate univariate statistics for numeric attributes in a data table + + + + + Calculate univariate statistics from raster based on vector objects + + + + + Calculate univariate statistics from the non-null cells of raster + + + + + Calculate univariate statistics of vector map features + + + + + Calculate volume of data clumps, and create vector with centroids of clumps + + + + + Category or object oriented statistics + + + + + Cats + + + + + Cats (select from the map or using their id) + + + + + Change category values and labels + + + + + Change field + + + + + Change layer number + + + + + Change resolution + + + + + Change the type of boundary dangle to line + + + + + Change the type of bridges connecting area and island or 2 islands from boundary to line + + + + + Change the type of geometry elements + + + + + Choose appropriate format + + + + + Columns management + + + + + Compares bit patterns with raster + + + + + Compress and decompress raster + + + + + Compress raster + + + + + Computes a coordinate transformation based on the control points + + + + + Concentric circles + + + + + Connect nodes by shortest route (traveling salesman) + + + + + Connect selected nodes by shortest tree (Steiner tree) + + + + + Connect vector to database + + + + + Convert 2D vector to 3D by sampling raster + + + + + Convert 2D vector to 3D vector by sampling of elevation raster. Default sampling by nearest neighbour + + + + + Convert GRASS binary vector to GRASS ASCII vector + + + + + Convert a raster to vector within GRASS + + + + + Convert a vector to raster within GRASS + + + + + Convert bearing and distance measurements to coordinates and vice versa + + + + + Convert boundaries to lines + + + + + Convert centroids to points + + + + + Convert coordinates + + + + + Convert coordinates from one projection to another (cs2cs frontend) + + + + + Convert lines to boundaries + + + + + Convert points to centroids + + + + + Convert raster to vector areas + + + + + Convert raster to vector lines + + + + + Convert raster to vector points + + + + + Convert vector to raster using attribute values + + + + + Convert vector to raster using constant + + + + + Convex hull + + + + + Copy a table + + + + + Copy also attribute table (only the table of layer 1 is currently supported) + + + + + Count of neighbouring points + + + + + Create 3D volume map based on 2D elevation and value rasters + + + + + Create a MASK for limiting raster operation + + + + + Create a map containing concentric rings + + + + + Create a raster plane + + + + + Create and add new table to vector + + + + + Create and/or modify raster support files + + + + + Create aspect raster from DEM (digital elevation model) + + + + + Create cross product of category values from multiple rasters + + + + + Create fractal surface of given fractal dimension + + + + + Create grid in current region + + + + + Create new GRASS location and transfer data into it + + + + + Create new GRASS location from metadata file + + + + + Create new GRASS location from raster data + + + + + Create new GRASS location from vector data + + + + + Create new layer with category values based upon user's reclassification of categories in existing raster + + + + + Create new location from .prj (WKT) file + + + + + Create new raster by combining other rasters + + + + + Create new vector by combining other vectors + + + + + Create new vector with current region extent + + + + + Create nodes on network + + + + + Create parallel line to input lines + + + + + Create points + + + + + Create points along input lines + + + + + Create points/segments from input vector lines and positions + + + + + Create quantization file for floating-point raster + + + + + Create random 2D/3D vector points + + + + + Create random cell values with spatial dependence + + + + + Create random points + + + + + Create random vector point contained in raster + + + + + Create raster images with textural features from raster (first serie of indices) + + + + + Create raster of distance to features in input layer + + + + + Create raster of gaussian deviates with user-defined mean and standard deviation + + + + + Create raster of uniform random deviates with user-defined range + + + + + Create raster with contiguous areas grown by one cell + + + + + Create raster with textural features from raster (second serie of indices) + + + + + Create red, green and blue rasters combining hue, intensity, and saturation (his) values from rasters + + + + + Create shaded map + + + + + Create slope raster from DEM (digital elevation model) + + + + + Create standard vectors + + + + + Create surface from rasterized contours + + + + + Create vector contour from raster at specified levels + + + + + Create vector contour from raster at specified steps + + + + + Create watershed basin + + + + + Create watershed subbasins raster + + + + + Cut network by cost isolines + + + + + DXF vector layer + + + + + Database + + + + + Database connection + + + + + Database file + + + + + Database management + + + + + Delaunay triangulation (areas) + + + + + Delaunay triangulation (lines) + + + + + Delaunay triangulation, Voronoi diagram and convex hull + + + + + Delete category values + + + + + Develop images and group + + + + + Develop map + + + + + Directory of rasters to be linked + + + + + Disconnect vector from database + + + + + Display general DB connection + + + + + Display list of category values found in raster + + + + + Display projection information from PROJ.4 projection description file + + + + + Display projection information from PROJ.4 projection description file and create a new location based on it + + + + + Display projection information from a georeferenced file (raster, vector or image) and create a new location based on it + + + + + Display projection information from georeferenced ASCII file containing WKT projection description + + + + + Display projection information from georeferenced ASCII file containing WKT projection description and create a new location based on it + + + + + Display projection information from georeferenced file (raster, vector or image) + + + + + Display projection information of the current location + + + + + Display raster category values and labels + + + + + Display results of SQL selection from database + + + + + Display the HTML manual pages of GRASS + + + + + Display vector attributes + + + + + Display vector map attributes with SQL + + + + + Dissolves boundaries between adjacent areas sharing a common category number or attribute + + + + + Download and import data from WMS server + + + + + Drop column from attribute table + + + + + E00 vector layer + + + + + Elevation raster for height extraction (optional) + + + + + Execute any SQL statement + + + + + Export 3 GRASS rasters (R,G,B) to PPM image at the resolution of the current region + + + + + Export from GRASS + + + + + Export raster as non-georeferenced PNG image format + + + + + Export raster from GRASS + + + + + Export raster series to MPEG movie + + + + + Export raster to 8/24bit TIFF image at the resolution of the current region + + + + + Export raster to ASCII text file + + + + + Export raster to ESRI ARCGRID + + + + + Export raster to GRIDATB.FOR map file (TOPMODEL) + + + + + Export raster to Geo TIFF + + + + + Export raster to POVRAY height-field file + + + + + Export raster to PPM image at the resolution of the current region + + + + + Export raster to VTK-ASCII + + + + + Export raster to Virtual Reality Modeling Language (VRML) + + + + + Export raster to binary MAT-File + + + + + Export raster to binary array + + + + + Export raster to text file as x,y,z values based on cell centers + + + + + Export raster to various formats (GDAL library) + + + + + Export vector from GRASS + + + + + Export vector table from GRASS to database format + + + + + Export vector to DXF + + + + + Export vector to GML + + + + + Export vector to Mapinfo + + + + + Export vector to POV-Ray + + + + + Export vector to PostGIS (PostgreSQL) database table + + + + + Export vector to SVG + + + + + Export vector to Shapefile + + + + + Export vector to VTK-ASCII + + + + + Export vector to various formats (OGR library) + + + + + Exports attribute tables into various format + + + + + Extract features from vector + + + + + Extract selected features + + + + + Extracts terrain parameters from DEM + + + + + Extrudes flat vector object to 3D with fixed height + + + + + Extrudes flat vector object to 3D with height based on attribute + + + + + Fast fourier transform for image processing + + + + + Feature type (for polygons, choose Boundary) + + + + + File management + + + + + Fill lake from seed at given level + + + + + Fill lake from seed point at given level + + + + + Fill no-data areas in raster using v.surf.rst splines interpolation + + + + + Filter and create depressionless elevation map and flow direction map from elevation raster + + + + + Filter image + + + + + Find nearest element in vector 'to' for elements in vector 'from'. Various information about this relation may be uploaded to attribute table of input vector 'from' + + + + + Find shortest path on vector network + + + + + GRASS MODULES + + + + + GRASS shell + + + + + Gaussian kernel density + + + + + Generalization + + + + + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) coordinates + + + + + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) raster + + + + + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) vector + + + + + Generate raster of cumulative cost of moving between locations, based on elevation and friction input rasters and starting point(s) coordinates + + + + + Generate raster of cumulative cost of moving between locations, based on elevation and friction input rasters and starting point(s) vector + + + + + Generate surface + + + + + Generate vector contour lines + + + + + Generates area statistics for rasters + + + + + Georeferencing, rectification, and import Terra-ASTER imagery and DEM using gdalwarp + + + + + Graphical raster map calculator + + + + + Help + + + + + Hue Intensity Saturation (HIS) to Red Green Blue (RGB) raster color transform function + + + + + Hydrologic modelling + + + + + Imagery + + + + + Import ASCII raster + + + + + Import DXF vector + + + + + Import ESRI ARC/INFO ASCII GRID + + + + + Import ESRI E00 vector + + + + + Import GDAL supported raster + + + + + Import GDAL supported raster and create a fitted location + + + + + Import GRIDATB.FOR (TOPMODEL) + + + + + Import MapGen or MatLab vector + + + + + Import OGR vector + + + + + Import OGR vector and create a fitted location + + + + + Import OGR vectors in a given data source combining them in a GRASS vector + + + + + Import SPOT VGT NDVI + + + + + Import SRTM HGT + + + + + Import US-NGA GEOnet Names Server (GNS) country file + + + + + Import all OGR/PostGIS vectors in a given data source and create a fitted location + + + + + Import attribute tables in various formats + + + + + Import binary MAT-File(v4) + + + + + Import binary raster + + + + + Import from database into GRASS + + + + + Import geonames.org country files + + + + + Import into GRASS + + + + + Import loaded raster + + + + + Import loaded raster and create a fitted location + + + + + Import loaded vector + + + + + Import loaded vector and create a fitted location + + + + + Import only some layers of a DXF vector + + + + + Import raster from ASCII polygon/line + + + + + Import raster from coordinates using univariate statistics + + + + + Import raster into GRASS + + + + + Import raster into GRASS from QGIS view + + + + + Import raster into GRASS from external data sources in GRASS + + + + + Import text file + + + + + Import vector from gps using gpsbabel + + + + + Import vector from gps using gpstrans + + + + + Import vector into GRASS + + + + + Import vector points from database table containing coordinates + + + + + Input nodes + + + + + Input table + + + + + Interpolate surface + + + + + Inverse distance squared weighting raster interpolation + + + + + Inverse distance squared weighting raster interpolation based on vector points + + + + + Inverse fast fourier transform for image processing + + + + + Join table to existing vector table + + + + + Layers categories management + + + + + Line-of-sight raster analysis + + + + + Link GDAL supported raster as GRASS raster + + + + + Link GDAL supported raster loaded in QGIS as GRASS raster + + + + + Link all GDAL supported rasters in a directory as GRASS rasters + + + + + Loaded layer + + + + + Locate the closest points between objects in two raster maps + + + + + Make each output cell function of the values assigned to the corresponding cells in the input rasters + + + + + Manage features + + + + + Manage image colors + + + + + Manage map colors + + + + + Manage raster cells value + + + + + Manage training dataset + + + + + Map algebra + + + + + Map type conversion + + + + + MapGen or MatLab vector layer + + + + + Mask + + + + + Maximal tolerance value (higher value=more simplification) + + + + + Metadata support + + + + + Minimum size for each basin (number of cells) + + + + + Mosaic up to 4 images + + + + + Name for new raster file (specify file extension) + + + + + Name for new vector file (specify file extension) + + + + + Name for output vector map (optional) + + + + + Name for the output raster map (optional) + + + + + Neighborhood analysis + + + + + Network analysis + + + + + Network maintenance + + + + + Number of rows to be skipped + + + + + Others + + + + + Output GML file + + + + + Output Shapefile + + + + + Output layer name (used in GML file) + + + + + Output raster values along user-defined transect line(s) + + + + + Overlay + + + + + Overlay maps + + + + + Path to GRASS database of input location (optional) + + + + + Path to the OGR data source + + + + + Percentage of first layer (0-99) + + + + + Perform affine transformation (shift, scale and rotate, or GPCs) on vector + + + + + Print projection information from a georeferenced file + + + + + Print projection information from a georeferenced file and create a new location based on it + + + + + Print projection information of the current location + + + + + Projection conversion of vector + + + + + Projection management + + + + + Put geometry variables in database + + + + + Query rasters on their category values and labels + + + + + Random location perturbations of vector points + + + + + Randomly partition points into test/train sets + + + + + Raster + + + + + Raster buffer + + + + + Raster file matrix filter + + + + + Raster neighbours analysis + + + + + Raster support + + + + + Re-project raster from a location to the current location + + + + + Rebuild topology of a vector in mapset + + + + + Rebuild topology of all vectors in mapset + + + + + Recategorize contiguous cells to unique categories + + + + + Reclass category values + + + + + Reclass category values using a column attribute (integer positive) + + + + + Reclass category values using a rules file + + + + + Reclass raster using reclassification rules + + + + + Reclass raster with patches larger than user-defined area size (in hectares) + + + + + Reclass raster with patches smaller than user-defined area size (in hectares) + + + + + Reclassify raster greater or less than user-defined area size (in hectares) + + + + + Recode categorical raster using reclassification rules + + + + + Recode raster + + + + + Reconnect vector to a new database + + + + + Red Green Blue (RGB) to Hue Intensity Saturation (HIS) raster color transformation function + + + + + Region settings + + + + + Register external data sources in GRASS + + + + + Regularized spline with tension raster interpolation based on vector points + + + + + Reinterpolate and compute topographic analysis using regularized spline with tension and smoothing + + + + + Remove all lines or boundaries of zero length + + + + + Remove bridges connecting area and island or 2 islands + + + + + Remove dangles + + + + + Remove duplicate area centroids + + + + + Remove duplicate lines (pay attention to categories!) + + + + + Remove existing attribute table of vector + + + + + Remove outliers from vector point data + + + + + Remove small angles between lines at nodes + + + + + Remove small areas, the longest boundary with adjacent area is removed + + + + + Remove vertices in threshold from lines and boundaries, boundary is pruned only if topology is not damaged (new intersection, changed attachement of centroid), first and last segment of the boundary is never changed + + + + + Rename column in attribute table + + + + + Reports + + + + + Reports and statistics + + + + + Reproject raster from another Location + + + + + Reproject vector from another Location + + + + + Resample raster using aggregation + + + + + Resample raster using interpolation + + + + + Resample raster. Set new resolution first + + + + + Rescale the range of category values in raster + + + + + Sample raster at site locations + + + + + Save the current region as a named region + + + + + Select features by attributes + + + + + Select features overlapped by features in another map + + + + + Separator (| , etc.) + + + + + Set PostgreSQL DB connection + + + + + Set boundary definitions by edge (n-s-e-w) + + + + + Set boundary definitions for raster + + + + + Set boundary definitions from raster + + + + + Set boundary definitions from vector + + + + + Set boundary definitions to current or default region + + + + + Set color rules based on stddev from a map's mean value + + + + + Set general DB connection + + + + + Set general DB connection with a schema (PostgreSQL only) + + + + + Set raster color table + + + + + Set raster color table from existing raster + + + + + Set raster color table from setted tables + + + + + Set raster color table from user-defined rules + + + + + Set region to align to raster + + + + + Set the region to match multiple rasters + + + + + Set the region to match multiple vectors + + + + + Set user/password for driver/database + + + + + Sets the boundary definitions for a raster map + + + + + Show database connection for vector + + + + + Shrink current region until it meets non-NULL data from raster + + + + + Simple map algebra + + + + + Simplify vector + + + + + Snap lines to vertex in threshold + + + + + Solar and irradiation model + + + + + Spatial analysis + + + + + Spatial models + + + + + Split lines to shorter segments + + + + + Statistics + + + + + Sum raster cell values + + + + + Surface management + + + + + Tables management + + + + + Tabulate mutual occurrence (coincidence) of categories for two rasters + + + + + Take vector stream data, transform it to raster, and subtract depth from the output DEM + + + + + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 4 raster + + + + + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 5 raster + + + + + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 7 raster + + + + + Tassled cap vegetation index + + + + + Terrain analysis + + + + + Tests of normality on vector points + + + + + Text file + + + + + Thin no-zero cells that denote line features + + + + + Toolset for cleaning topology of vector map + + + + + Topology management + + + + + Trace a flow through an elevation model + + + + + Transform cells with value in null cells + + + + + Transform features + + + + + Transform image + + + + + Transform null cells in value cells + + + + + Transform value cells in null cells + + + + + Type in map names separated by a comma + + + + + Update raster statistics + + + + + Update vector map metadata + + + + + Upload raster values at positions of vector points to the table + + + + + Upload vector values at positions of vector points + + + + + Vector + + + + + Vector buffer + + + + + Vector geometry analysis + + + + + Vector intersection + + + + + Vector non-intersection + + + + + Vector subtraction + + + + + Vector union + + + + + Vector update by other maps + + + + + Visibility graph construction + + + + + Voronoi diagram (area) + + + + + Voronoi diagram (lines) + + + + + Watershed Analysis + + + + + Which column for the X coordinate? The first is 1 + + + + + Which column for the Y coordinate? + + + + + Which column for the Z coordinate? If 0, z coordinate is not used + + + + + Work with vector points + + + + + Write only features link to a record + + + + + Zero-crossing edge detection raster function for image processing + + + + + visualThread + + Max. len: + + + + Min. len: + + + + Mean. len: + + + + Filled: + + + + Empty: + + + + N: + + + + Mean: + + + + StdDev: + + + + Sum: + + + + Min: + + + + Max: + + + + CV: + + + + Number of unique values: + + + + Range: + + + + Median: + + + + Observed mean distance: + + + + Expected mean distance: + + + + Nearest neighbour index: + + + + Z-Score: + + + + diff --git a/i18n/qgis_fr.ts b/i18n/qgis_fr.ts index 132b92933e64..1d2cd308f8b2 100644 --- a/i18n/qgis_fr.ts +++ b/i18n/qgis_fr.ts @@ -16111,22 +16111,22 @@ Les classes existantes doivent-elles être effacées avant la classification ? Title Font... - Police du tite... + Police du titre... Group Font... - Groupe de police... + Police des groupes... Layer Font... - Police de la couche... + Police des couches... Item Font... - Police de l'objet... + Police des objets... @@ -16182,7 +16182,7 @@ Les classes existantes doivent-elles être effacées avant la classification ? Wrap text on - Retour à la ligne activé + Activer le retour à la ligne après diff --git a/i18n/qgis_gl_ES.ts b/i18n/qgis_gl_ES.ts index d88c8a434fdd..7f2100a6fc95 100644 --- a/i18n/qgis_gl_ES.ts +++ b/i18n/qgis_gl_ES.ts @@ -25,15 +25,38 @@ <p>For more information, please visit our website at <a href="http://sextantegis.com">http://sextantegis.com</a></p> - + + <img src="qrc:/sextante/images/sextante_logo.png" /> + <h2>SEXTANTE para QGIS</h2> + <p>SEXTANTE, unha plataforma de xeoprocesamento para QGIS</p> + <p>Un proxecto desarrollado por Victor Olaya (volayaf@gmail.com).</p> + <p>Partes deste software foron aportadas por: + <ul> + <li>Alexander Bruy</li> + <li>Carson Farmer (algorítmos fTools)</li> + <li>Julien Malik (conectores da caixa de ferramentas Orfeo)</li> + <li>Evgeniy Nikulin (código orixinal da calculadora de campos Python)</li> + <li>Michael Nimm (algorítmos mmqgis)</li> + <li>Camilo Polymeris (Organización do código). Desarrollado como parte do Google + Summer of Code 2012</li> + </ul> + </p> + <p>Actualmente está usando a versión de SEXTANTE v%1</p> + <p>Este software distrtibúese baixo os termos da licencia GNU GPL v2. + <p>Para máis información, visite a páxina web + <a href="http://sextantegis.com">http://sextantegis.com</a></p> CharacterWidget - <p>Character: <span style="font-size: 24pt; font-family: %1%2</span><p>Value: 0x%3"> - <p>Carácter: <span style="font-size: 24pt; font-family: %1%2</span><p>Value: 0x%3"> + <p>Carácter: <span style="font-size: 24pt; font-family: %1%2</span><p>Value: 0x%3"> + + + + <p>Character: <span style="font-size: 24pt; font-family: %1">%2</span><p>Value: 0x%3 + @@ -142,10 +165,12 @@ + Output point shapefile Saída shapefile de puntos + @@ -162,6 +187,7 @@ + Browse Buscar @@ -171,6 +197,7 @@ Xeoprocesamento + @@ -183,7 +210,7 @@ - + Use only selected features features Utilizar só as entidades seleccionadas @@ -591,11 +618,38 @@ Simplificar tolerancia + + Eliminate sliver polygons + Eliminar polígonos esgazados + + + + area + Área + + + + Selected features: + Entidades seleccionadas: + + + + common boundary + Límite en común + + + + Merge selection with the neighbouring polygon with the largest + Xunta-la selección do polígono veciño co máis longo + + + Save to new file Gardar nun novo ficheiro + Add result to canvas Engadir resultado á vista do mapa @@ -801,22 +855,27 @@ Amosar Valores Únicos - + Target field Campo obxectivo - + Unique values list Lista de valores únicos - + Unique value count Contar valores únicos - + + Save errors location + + + + Press Ctrl+C to copy results to the clipboard Pulse Ctrl+C para copia-los resultados ó portapapeis @@ -1020,6 +1079,50 @@ foron reducidos a %2 vértices logo da simplificación Please specify select layer Especificar capa de selección + + Selected features: %1 + Entidades seleccionadas: %1 + + + Eliminate + Eliminar + + + No selection in input layer + Non se seleccionou a capa de entrada + + + Error creating output file + Erro na creación do ficheiro de saída + + + Could not replace geometry of feature with id + Non se pode reemplaza-la xeometría da entidade coa id + + + Could not delete feature with id + Non se pode elimina-la entidade coa id + + + Commit error + Erro na integración + + + Commit Error + Erro na integración + + + Created output shapefile: +%1 + Creado shapefile de saída: +%1 + + + Could not eliminate features with these ids: +%1 + Non se poden elimina-las entidades coas seguintes IDs: +%1 + Join attributes by location Unir atributos por localización @@ -1066,6 +1169,14 @@ Os seguintes nomes de campo son maiores de 10 caracteres: Random selection Selección aleatoria + + Could not replace geometry of feature with id %1 + + + + Could not delete feature with id %1 + + Define current projection Definir proxección actual @@ -1319,14 +1430,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:10pt;">Para soporte, contáctenos en </span><a href="mailto:info@faunalia.com?subject=$MAIL_SUBJECT$&amp;body=$MAIL_BODY$"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">info@faunalia.com</span></a></p></body></html> - About SEXTANTE - + Acerca de SEXTANTE - about:blank - en branco + en branco @@ -2399,14 +2508,14 @@ Do you want terminate it anyway? &Cargar na vista do mapa cando finalice - + Edit Editar - + Reset Reaxustar @@ -3395,7 +3504,7 @@ cando prema no botón de ferramentas de diálogo AXUDA. cubic - + cúbico @@ -4179,28 +4288,39 @@ GEOS geoprocessing error: One or more input features have invalid geometry.Globo - + Launch Globe Comezar Globo - + Globe Settings Axustes de Globo - + + Unload Globe + Non cargar Globo + + + Overlay data on a 3D globe Sobrepoñer datos nun globo 3D - + Settings for 3D globe Axustes para globo 3D - + Unload globe + Non cargar Globo + + + + + &Globe &Globo @@ -4397,6 +4517,19 @@ GEOS geoprocessing error: One or more input features have invalid geometry.Utilice peso do campo + + Help + + + Dialog + Diálogo + + + + about:blank + en branco + + LayerPropertiesWidget @@ -4473,321 +4606,321 @@ GEOS geoprocessing error: One or more input features have invalid geometry.Novo - + &Plugins &Plugins - + &Raster &Ráster - + &Help &Axuda - + &Settings &Configuración - + File Ficheiro - + Manage Layers Administrar capas - + Digitizing Dixitalización - + Advanced Digitizing Dixitalización Avanzada - + Map Navigation Navegación no mapa - + Attributes Atributos - + Plugins Plugins - + Help Axuda - + Raster Ráster - + Label Etiqueta - + Vector Vector - + Database Base de datos - + Web Web - + &New Project &Novo Proxecto - + Ctrl+N Ctrl+N - + &Open Project... &Abrir Proxecto... - + Ctrl+O Ctrl+O - + &Save Project &Gardar Proxecto - + Ctrl+S Ctrl+S - + Save Project &As... Gardar Proxecto &como... - + Ctrl+Shift+S Ctrl+Shift+S - + Save as Image... Gardar como Imaxe... - + &New Print Composer &Novo Deseñador de Impresión - + Ctrl+P Ctrl+P - + Composer Manager... Xestión do Deseñador... - + Add Feature Engadir entidade - + Merge Selected Features Xuntar entidades seleccionadas - + Merge Attributes of Selected Features Xuntar atributos das entidades seleccionadas - + Select Single Feature Seleccione unha entidade - + Select Features by Rectangle Seleccione entidades por rectángulo - + Select Features by Polygon Seleccione entidades por polígono - + Select Features by Freehand Seleccionar Entidades a Man - + Select Features by Radius Seleccione entidades por radio - + Deselect Features from All Layers Deseleccionar entidades en tódalas capas - + Form Annotation Anotación no Formulario - + Layer Labeling Options Opcións de etiquetado da capa - + Add PostGIS Layers... Engadir Capas PostGis... - + Toggle Editing Activar/Desactivar Edición - + Save Edits Gardar o editado - + Save As... Gardar como... - + Save Selection as Vector File... Gardar Selección como ficheiro vectorial... - + Set Project CRS from Layer Fixar o SRC do proxecto dende a capa - + Remove All from Overview Eliminar Todo da Vista Xeral - + Rotate Label Ctl (Cmd) increments by 15 deg. Rotar etiqueta Crtl (Cmd) incrementa en 15 graos. - + Style Manager... Administrador de Estilo... - + Stretch Histogram to Full Dataset Despregar histograma ó conxunto dos datos - + Embed Layers and Groups... Integrar capas e grupos... - + Feature Action Acción de entidade - + Run Feature Action Executar acción de entidade - + Pan Map to Selection Ampliar mapa á selección - + Touch zoom and pan Toque zoom e ampliar - + Offset Curve Desprazamento da curva - + Copy style Copiar estilo - + Paste style Pegar estilo - + Add WCS Layer... Engadir capa WCS... - + &Grid &Grella - + Grid Grella - + Pin/Unpin Labels Clavar/Desclavar Etiquetas - + Pin/Unpin Labels Click or marquee on label to pin Shift unpins, Ctl (Cmd) toggles state @@ -4798,18 +4931,18 @@ A tecla Shift desclava, Ctrl(Cmd) alterna o estado Actúa en tódalas capas editables - + Highlight Pinned Labels Resalta-las etiquetas clavadas - + Show/Hide Labels Amosar/Agochar Etiquetas - + Show/Hide Labels Click or marquee on feature to show label Shift+click or marquee on label to hide it @@ -4820,11 +4953,33 @@ Tecla Shift+ clic ou marque na etiqueta para agochala Actúa sobre a capa editable activa actual - - + + Html Annotation Anotación HTML + + + + Duplicate Layer(s) + Duplicar Capa(s) + + + + SVG annotation + Anotación SVG + + + + + Save All Edits + + + + + Save edits to editing layers, but continue editing + + Freeze or Thaw Labels Enganchar ou desenganchar etiquetas @@ -4842,22 +4997,22 @@ Shift thaws, Alt toggles, Ctl (Cmd) hides Shift desengancha, Alt alterna, Ctrl (Cmd) agocha - + Local Cumulative Cut Stretch Despregar corte acumulativo local - + Local cumulative cut stretch using current extent, default limits and estimated values. Despregar corte acumulativo local utilizando a actual extensión, límites predefinidos e valores estimados. - + Full Dataset Cumulative Cut Stretch Despregar corte acumulativo a todo o conxunto de datos - + Cumulative cut stretch using full dataset extent, default limits and estimated values. Despregar corte acumulativo utilizando a extensión de todo o conxunto de datos, límites predefinidos e valores estimados. @@ -4880,8 +5035,8 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Amosar etiquetas enganchadas - + New Blank Project Novo Proxecto en blanco @@ -4890,62 +5045,62 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Xestión do Deseñador... - + Exit Saír - + Ctrl+Q Ctrl+Q - + &Undo &Desfacer - + Ctrl+Z Ctrl+Z - + &Redo &Refacer - + Ctrl+Shift+Z Ctrl+Shift+Z - + Cut Features Cortar Entidades - + Ctrl+X Ctrl+X - + Copy Features Copiar Entidades - + Ctrl+C Ctrl+C - + Paste Features Pegar Entidades - + Ctrl+V Ctrl+V @@ -4954,52 +5109,52 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Engadir entidade - + Ctrl+. Ctrl+. - + Move Feature(s) Mover Entidade(s) - + Reshape Features Remodelar Entidades - + Split Features Dividir Entidades - + Delete Selected Borrar o seleccionado - + Add Ring Engadir Anel - + Add Part Engadir illa - + Simplify Feature Simplificar Entidade - + Delete Ring Eliminar Anel - + Delete Part Eliminar illa @@ -5012,42 +5167,42 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Xuntar atributos das entidades seleccionadas - + Node Tool Ferramenta dos Nós - + Rotate Point Symbols Rotar Símbolos de Puntos - + Snapping Options... Opcións de Autoaxuste (Edición)... - + Pan Map Mover Mapa - + Zoom In Achegar - + Ctrl++ Ctrl++ - + Zoom Out Afastar - + Ctrl+- Ctrl+- @@ -5076,128 +5231,128 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Deseleccionar entidades en tódalas capas - + Identify Features Identificar Entidades - + Ctrl+Shift+I Ctrl+Shift+I - + Measure Line Medir Liña - - + + Ctrl+Shift+M Ctrl+Shift+M - + Measure Area Medir Área - + Ctrl+Shift+J Ctrl+Shift+J - + Measure Angle Medir Ángulo - + Zoom Full Ver Todo - + Ctrl+Shift+F Ctrl+Shift+F - + Zoom to Layer Zoom á capa - + Zoom to Selection Zoom á Selección - + Ctrl+J Ctrl+J - + Zoom Last Vista Anterior - + Zoom Next Seguinte Vista - + Zoom Actual Size Achegar a Tamaño Real - + Zoom to Native Pixel Resolution Achegar á Resolución Nativa do Pixel - + Map Tips Avisos do Mapa - + Show information about a feature when the mouse is hovered over it Amosar información da entidade cando o rato está sobre ela - + New Bookmark... Novo Marcador... - + Ctrl+B Ctrl+B - + Show Bookmarks Amosar Marcadores - + Ctrl+Shift+B Ctrl+Shift+B - + Refresh Recargar - + Ctrl+R Ctrl+R - + Text Annotation Anotación de Texto @@ -5206,57 +5361,57 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Anotación no Formulario - + Move Annotation Mover Anotación - + Labeling Etiquetado - + New Shapefile Layer... Nova capa Shapefile... - + Ctrl+Shift+N Ctrl+Shift+N - + New SpatiaLite Layer ... Nova capa SpatiaLite... - + Ctrl+Shift+A Ctrl+Shift+A - + Raster calculator ... Calculadora Ráster... - + Add Vector Layer... Engadir Capa Vectorial... - + Ctrl+Shift+V Ctrl+Shift+V - + Add Raster Layer... Engadir Capa Ráster... - + Ctrl+Shift+R Ctrl+Shift+R @@ -5265,37 +5420,37 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Engadir Capa PostGis... - + Ctrl+Shift+D Ctrl+Shift+D - + Add SpatiaLite Layer... Engadir Capa SpatiaLite... - + Ctrl+Shift+L Ctrl+Shift+L - + Add MSSQL Spatial Layer... Engadir capa MSSQL Spatial... - + Add WMS Layer... Engadir capa WMS... - + Ctrl+Shift+W Ctrl+Shift+W - + Open Attribute Table Abrir Táboa de Atributos @@ -5304,7 +5459,7 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Activar/Desactivar Edición - + Toggles the editing state of the current layer Mudar o estado de edición da presente capa @@ -5313,7 +5468,7 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Gardar o editado - + Save edits to current layer, but continue editing Gardar o editado na capa actual e seguir editando @@ -5326,22 +5481,22 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Gardar Selección como ficheiro vectorial... - + Remove Layer(s) Eliminar Capa(s) - + Ctrl+D Ctrl+D - + Set CRS of Layer(s) Fixar o SRC da Capa(s) - + Ctrl+Shift+C Ctrl+Shift+C @@ -5354,28 +5509,28 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Escala deslizante - + Properties... Propiedades... - + Query... Query... Consulta... - + Add to Overview Engadir á vista xeral - + Ctrl+Shift+O Ctrl+Shift+O - + Add All to Overview Engadir Todo á Vista Xeral @@ -5384,133 +5539,133 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Eliminar Todo da Vista Xeral - + Show All Layers Amosar Tódalas Capas - + Ctrl+Shift+U Ctrl+Shift+U - + Hide All Layers Agochar Tódalas Capas - + Ctrl+Shift+H Ctrl+Shift+H - + Manage Plugins... Administar Plugins... - + Toggle Full Screen Mode Mudar o modo Pantalla Completa - + Ctrl+F Ctrl+F - + Project Properties... Propiedades do Proxecto... - + Ctrl+Shift+P Ctrl+Shift+P - + Options... Opcións... - + Custom CRS... SRC personalizado... - + Configure shortcuts... Configure Atallos... - + Local Histogram Stretch Despregar Histograma Local - + Stretch histogram of active raster to view extents Despregar histograma do ráster activo para amosa-la súa extensión - + Help Contents Contidos da Axuda - + F1 F1 - + API documentation Documentación API - + QGIS Home Page Páxina de Inicio de QGIS - + Ctrl+H Ctrl+H - + Check QGIS Version Comprobar Versión de QGIS - + Check if your QGIS version is up to date (requires internet access) Comprobe que a súa versión de QGIS estea actualizada (require acceso a internet) - + About Acerca de - + QGIS Sponsors Patrocinadores de QGIS - + Move Label Mover Etiqueta - + Rotate Label Virar Etiqueta - + Change Label Cambiar Etiqueta @@ -5519,12 +5674,12 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Administrador de Estilo... - + Python Console Consola Python - + Full histogram stretch Despregar histograma completo @@ -5533,22 +5688,22 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Desplegar histograma ó conxunto dos datos - + Customization... Personalización... - + mActionCatchForCustomization mActionCatchForCustomization - + This is here just to avoid shortcut conflicts, the shortcut is caught in QgsCustomization Isto serve para evitar conflictos cos atallos, o atallo reside en QgsCustomization - + Ctrl+M Ctrl+M @@ -5557,48 +5712,48 @@ Prema na tecla ALT para alterna-las etiquetas seleccionadas entre o estado engan Engadir capas e grupos... - + Embed layers and groups from other project files Integrar capas e grupos dende outro ficheiro de proxecto - + &Copyright Label &Etiqueta de Copyright - + Creates a copyright label that is displayed on the map canvas. Crea unha etiqueta de copyright que é mostrada na vista do mapa. - + &North Arrow &Rosa dos Ventos - + "Creates a north arrow that is displayed on the map canvas" "Crea unha rosa dos ventos na vista do mapa" - + &Scale Bar &Barra de Escala - - + + Creates a scale bar that is displayed on the map canvas Crea unha barra de escala na vista do mapa - + Add WFS Layer... Engadir capa WFS... - + Add WFS Layer Engadir capa WFS @@ -6650,47 +6805,51 @@ Remedie esta situación primeiro, porque o Plugin OSM non sabe que capa será o Clear console - + Limpar consola + + + Settings + Configuración Import Class - + Importar Clase Manage Script - + Administrar Script Import Sextante class - + Importar Clase de Sextante Import QgisInterface class - + Importar Clase QgisInterface Import PyQt.QtCore class - + Importar Clase PyQt.QtCore Import PyQt.QtGui class - + Importar Clase PyQt.QtGui Open script file - + Abrir ficheiro de script Save to script file - + Gardar a un ficheiro de script Run command - + Executar comando Help - Axuda + Axuda To access Quantum GIS environment from this console @@ -6717,25 +6876,25 @@ use a ferramenta qgis.util.iface (no canto de QgisInterface.class). QGis::UnitType - + meters metros - + feet pés - - - + + + degrees Graos - + <unknown> <descoñecido> @@ -6764,7 +6923,7 @@ use a ferramenta qgis.util.iface (no canto de QgisInterface.class). Estimando desviacións normais... - + QGIS starting in non-interactive mode not supported. You are seeing this message most likely because you have no DISPLAY environment variable set. @@ -6772,17 +6931,17 @@ You are seeing this message most likely because you have no DISPLAY environment Está vendo esta mensaxe porque seguramente non estableceu o conxunto das variable do entorno. - + CRS undefined - defaulting to project CRS SRC non definido - asignado SRC por defecto ó proxecto - + CRS undefined - defaulting to default CRS: %1 SRC non definido - asignado SRC por defecto: %1 - + Reading raster Lendo ráster @@ -6827,85 +6986,85 @@ Está vendo esta mensaxe porque seguramente non estableceu o conxunto das variab A selección esténdese máis alá do sistema de coordenadas da capa. - + Python is not enabled in QGIS. Python non activado en QGIS. - - - - - - - + + + + + + + - + Plugins Plugins - + Loaded %1 (package: %2) Cargado %1 (paquete: %2) - + Library name is %1 O nome da librería é %1 - - + + Failed to load %1 (Reason: %2) Fallou a carga %1 (Razón: %2) - + Attempting to resolve the classFactory function Tentando resolver a función classFactory - + Loaded %1 (Path: %2) Cargado %1 (Ruta: %2) - + Error Loading Plugin Erro cargando o plugin - + There was an error loading a plugin.The following diagnostic information may help the QGIS developers resolve the issue: %1. Houbo un erro cargando un plugin. A seguinte información de diagnóstico pode axudas ós desarrolladores de QGIS a resolver a cuestión: %1. - + Unable to find the class factory for %1. Incapaz de atopa-la clase factoría para %1. - + Plugin %1 did not return a valid type and cannot be loaded O plugin %1 non devolveu un tipo válido e non pode ser cargado - + Python error Erro de Python - + Error when reading metadata of plugin %1 Erro lendo os metadatos do plugin %1 @@ -6929,31 +7088,31 @@ Está vendo esta mensaxe porque seguramente non estableceu o conxunto das variab Non se puido abrir a base de datos do SRC %1<br>Erro(%2): %3 - + Could not open CRS database %1 Error(%2): %3 Non se puido abrir a base de datos do SRC %1 Erro(%2): %3 - - + + CRS SRC - + Generated CRS A CRS automatically generated from layer info get this prefix for description SRC Xerado - + Saved user CRS [%1] Garda-lo SRC do usuario [%1] - + Imported from GDAL Importado dende GDAL @@ -7158,93 +7317,93 @@ Erro(%2): %3 horas - + Cannot convert '%1' to double Non se pode convertir '%1' a doble - + Cannot convert '%1' to int Non se pode convertir '%1' a int - + Cannot convert '%1' to DateTime Non se pode convertir '%1' a DataHora - + Cannot convert '%1' to Date Non se pode convertir '%1' a Data - + Cannot convert '%1' to Time Non se pode convertir '%1' a Hora - + Cannot convert '%1' to Interval Non se pode convertir '%1' a Intervalo - + Cannot convert '%1' to boolean Non se pode convertir '%1' a buleano - + Invalid regular expression '%1': %2 Expresión habitual inválida '%1': %2 - + Index is out of range Índice fóra de rango - - - - - - - - - - - - - + + + + + + + + + + + + + Math Matemática - - - - - - - + + + + + + + Conversions Conversións - + Conditionals Condicionais - - - - - - - - - + + + + + + + + + Date and Time Data e Hora @@ -7253,76 +7412,97 @@ Erro(%2): %3 Data/Hora - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + String Cadea - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + Geometry Xeometría - - - - + + + + Record Rexistro - + Special - + Especial - - + + No root node! Parsing failed? ¡Ningún nó raíz! ¿Fallou a análise? - + (no root) (non root) - + Unary minus only for numeric values. Unidade de menos só para valores numéricos. - + Can't preform /, *, or % on DateTime and Interval Non se pode preformatear /, *, ou % en DataHora e Intervalo - + [unsupported type;%1; value:%2] [Tipo insoportado;%1; valor:%2] - + Column '%1' not found Columna '%1' non atopada @@ -7555,199 +7735,213 @@ Erro(%2): %3 O valor '%1' non é numérico - + OGR driver for '%1' not found (OGR error: %2) Driver OGR para '%1' non atopado (erro OGr: %2) - + trimming attribute name '%1' to ten significant characters produces duplicate column name. Recorta-lo nome do atributo '%1' a só dez caracteres produce duplicados no nome da columna. - + creation of data source failed (OGR error:%1) Fallou a creación da fonte de datos (erro OGR:%1) - + creation of layer failed (OGR error:%1) Fallou a creación da capa (erro OGR:%1) - + unsupported type for field %1 tipo non admitido para campo %1 - + creation of field %1 failed (OGR error: %2) Fallou a creación do campo %1 (erro OGR:%2) - + created field %1 not found (OGR error: %2) non atopado o campo creado %1 (erro OGR: %2) - + Invalid variant type for field %1[%2]: received %3 with type %4 Tipo variante non válido para campo%1[%2]: recibido %3 co tipo %4 - - + + Feature geometry not imported (OGR error: %1) Xeometría da entidade non importada (erro OGR: %1) - + Feature creation error (OGR error: %1) Erro na creación da entidade (erro OGR: %1) - - + + Failed to transform a point while drawing a feature of type '%1'. Writing stopped. (Exception: %2) Fallou a transformación mentras se debuxaba unha entidade do tipo '%1'. Parada a escritura (Excepción:%2) - - + + Feature write errors: Erros na escritura da entidade: - - + + Stopping after %1 errors Detido logo de %1 erros - + Only %1 of %2 features written. Só %1 de %2 entidades escritas. - + Arc/Info ASCII Coverage Coberturas Arc/Info ASCII - + Atlas BNA Atlas BNA - + Comma Separated Value Valores Separados por Comas - + ESRI Shapefile ESRI Shapefile - + FMEObjects Gateway Entrada FMEObjects - + GeoJSON GeoJSON - + GeoRSS GeoRSS - + Geography Markup Language [GML] Geography Markup Language [GML] - + Generic Mapping Tools [GMT] Generic Mapping Tools [GMT] - + GPS eXchange Format [GPX] GPS eXchange Format [GPX] - + INTERLIS 1 INTERLIS 1 - + INTERLIS 2 INTERLIS 2 - + Keyhole Markup Language [KML] Keyhole Markup Language [KML] - + + Mapinfo TAB + Mapinfo TAB + + + + Mapinfo MIF + Mapinfo MIF + + Mapinfo File Ficheiro Mapinfo - + Microstation DGN Microstation DGN - + S-57 Base file S-57 Base file - + Spatial Data Transfer Standard [SDTS] Spatial Data Transfer Standard [SDTS] - + SQLite SQLite - + + SpatiaLite + SpatiaLite + + + AutoCAD DXF AutoCAD DXF - + Geoconcept Geoconcept @@ -7768,19 +7962,19 @@ Só %1 de %2 entidades escritas. Fallou a carga da capa - + Creation error for features from #%1 to #%2. Provider errors was: %3 Erro de creación para entidades dende #%1 a #%2. O causante dos erros foi: %3 - + Vector import Importar vector - + Only %1 of %2 features written. Só %1 de %2 entidades escritas. @@ -7919,7 +8113,7 @@ Só %1 de %2 entidades escritas. - + @@ -7963,7 +8157,7 @@ Só %1 de %2 entidades escritas. Diagram Overlay (Legacy) - + Sobrepoñer Diagrama (Legado) @@ -7973,7 +8167,7 @@ Só %1 de %2 entidades escritas. Version 0.0.1 (Legacy) - + Versión 0.0.1 (Legado) Version 0.0.1 @@ -8011,7 +8205,6 @@ Só %1 de %2 entidades escritas. - @@ -8023,12 +8216,11 @@ Só %1 de %2 entidades escritas. - - - - - - + + + + + Warning Atención @@ -8087,12 +8279,12 @@ Só %1 de %2 entidades escritas. Axustar unha transformación proxectiva require polo menos 4 puntos correspondentes. - + Globe Globo - + Overlay data on a 3D globe Suporpoñer datos nun globo 3D @@ -8551,8 +8743,7 @@ Só %1 de %2 entidades escritas. Un plugin para contar, sumar, realizar medias de ráster para cada polígono da capa vectorial - - + Cannot get GDAL raster band: %1 Non se pode obter unha banda ráster GDAL: %1 @@ -8577,18 +8768,18 @@ Só %1 de %2 entidades escritas. Non se pode ChunkAndWarpImage: %1 - + [GDAL] All files (*) [GDAL] Tódolos ficheiros (*) - + GDAL/OGR VSIFileHandler GDAL/OGR VSIFileHandler - + This raster file has no bands and is invalid as a raster layer. Este ficheiro ráster non ten bandas e non é válido como capa ráster. @@ -8746,14 +8937,13 @@ Would you like to specify path (GISBASE) to your GRASS installation? Non se pode consulta-lo ráster - Groups not yet supported - Grupos aínda non soportados + Grupos aínda non soportados - - - + + + Cannot draw raster Non se pode debuxa-lo ráster @@ -8763,11 +8953,11 @@ Would you like to specify path (GISBASE) to your GRASS installation? OGR[%1] erro %2: %3 - - - + - + + + @@ -8800,7 +8990,7 @@ Would you like to specify path (GISBASE) to your GRASS installation? DODS - + ESRI FileGDB Ficheiro GDB ESRI @@ -8926,28 +9116,28 @@ Would you like to specify path (GISBASE) to your GRASS installation? Non se pode crea-lo ficheiro %1.qpj - - + + - + Connection to database failed Fallou a conexión á base de datos - + Creation of data source %1 failed: %2 A creación da fonte de datos %1 fallou: %2 - + Loading of the layer %1 failed Fallou a carga da capa %1 - - + + Unable to delete layer %1: %2 Incapaz de borra-la capa %1: @@ -8960,13 +9150,13 @@ Would you like to specify path (GISBASE) to your GRASS installation? - + Unsupported type for field %1 Tipo non soportado para o campo %1 - + Creation of fields failed Fallou a creación dos campos @@ -8986,26 +9176,26 @@ Would you like to specify path (GISBASE) to your GRASS installation? Fallou a creación dos campos - + Unable to initialize SpatialMetadata: Incapaz de iniciar SpatialMetadata: - + Could not create a new database Non se pode crear unha nova base de datos - + Unable to activate FOREIGN_KEY constraints [%1] Incapaz de activa-las restriccións FOREIGN_KEY [%1] - + Unable to delete table %1: Incapaz de borra-la táboa %1: @@ -9098,60 +9288,60 @@ Would you like to specify path (GISBASE) to your GRASS installation? Buffer sen resultado - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Exception: %1 Excepción: %1 - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + GEOS GEOS - + GEOS prior to 3.2 doesn't support GEOSInterpolate GEOS previo a 3.2 non soporta GEOSInterpolate @@ -9194,39 +9384,45 @@ Would you like to specify path (GISBASE) to your GRASS installation? Lendo parte %1 de %2 do ráster - + Building pyramids failed - write access denied Fallou a creación de pirámides - denegado o acceso de escritura - + Write access denied. Adjust the file permissions and try again. Denegado o acceso de escritura. Axuste os permisos de ficheiro e ténteo de novo. - - - - + + + + Building pyramids failed. Fallou a creación de pirámides. - + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. Este ficheiro non foi escrito. Algúns formatos non soportan vistas xerais de pirámides. Consulte a documentación GDAL en caso de dúbida. - - + + Building pyramid overviews is not supported on this type of raster. A creación de vistas xerais de pirámides non está soportada neste tipo de ráster. - + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. A creación de vistas xerais de pirámides internas non está soportada en capas ráster con compresión JPEG nin na súa librería actual libtiff. + + + + All Ramps + + QextSerialPort @@ -9319,17 +9515,17 @@ Would you like to specify path (GISBASE) to your GRASS installation? &Ráster - + Quantum GIS Quantum GIS - + Multiple Instances of QgisApp Casos múltiples de QgisApp - + Multiple instances of Quantum GIS application object detected. Please contact the developers. @@ -9338,151 +9534,151 @@ Póñase en contacto cos desarrolladores. - + Checking database Comprobando base de datos - + Reading settings Lendo configuración - + Setting up the GUI Establecendo a IGU - + Map canvas. This is where raster and vector layers are displayed when added to the map Vista do mapa. É onde as capas ráster e vectoriais son amosadas cando se engaden ó mapa - + Security warning: Advertencia de seguridade: - macros have been disabled. - As macros foron desactivadas. + As macros foron desactivadas. - Enable - Activar + Activar - + GPS Information Información GPS - + Log Messages Mensaxes do programa - + Quantum GIS - %1 ('%2') Quantum GIS - %1 ('%2') - + QGIS starting... Comezando AGIS... - + Checking provider plugins Comprobando os plugins do provedor - + Starting Python Comezando Python - + Restoring loaded plugins Restablecendo plugins cargados - + Initializing file filters Iniciando filtros de ficheiro - + Restoring window state Restablecendo estado da fiestra - - + + QGIS Ready! ¡QGIS Listo! - + Minimize Minimizar - + Ctrl+M Minimize Window Minimizar Fiestra Ctrl+M - + Minimizes the active window to the dock Minimiza a fiestra activa á base - + Zoom Achegar - + Toggles between a predefined size and the window size set by the user Cambia entre o tamaño predefinido de fiestra e o fixado polo usuario - + Bring All to Front Traer todo á fronte - + Bring forward all open windows Poñer detrás tódalas fiestras abertas - - - - - - - + + + + + + + + + Error Erro - + Failed to open Python console: Fallou a apertura da consola de Python: - + Panels Paneis - + Toolbars Barras de ferramentas @@ -9491,38 +9687,38 @@ Póñase en contacto cos desarrolladores. &Fiestra - + &Database &Base de datos - + Vect&or Vect&or - + &Web &Web - + Progress bar that displays the status of rendering layers and other time-intensive operations Barra de progreso que amosa o estado da renderización das capas e outras operacións que se alongan no tempo - + Toggle extents and mouse position display Cambia a visualización da posición do rato e a extensión - - + + Coordinate: Coordenadas: - + Current map coordinate Coordenadas do mapa actual @@ -9535,149 +9731,149 @@ Póñase en contacto cos desarrolladores. Coordenadas actuais do mapa (no formato x,y) - + Scale Escala - + Current map scale Actual escala do mapa - + Displays the current map scale Amosa a actual escala do mapa - + Current map scale (formatted as x:y) Escala actual do mapa (no formato x:y) - + Stop map rendering Parar renderizado do mapa - + Render Renderizar - + When checked, the map layers are rendered in response to map navigation commands and other events. When not checked, no rendering is done. This allows you to add a large number of layers and symbolize them before rendering. Cando estea activo, as capas do mapa son renderizadas es resposta ós comandos de navegación do mapa e outros eventos. Cando non estea activo, non haberá renderización. Isto permite engadir un gran número de capas e etiquetalas antes da renderización. - + Toggle map rendering Alterna o renderizado do mapa - + This icon shows whether on the fly coordinate reference system transformation is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour. Esta icona amosa se está activada a transformación 'sobre a marcha' do sistema de coordenadas de referencia ou non. Faga clic na icona para abrir o proxecto de diálogo de propiedades para cambiar este comportamento. - + CRS status - Click to open coordinate reference system dialog Estado do SRC - Clique para abrir o diálogo do sistema de referencia de coordenadas - + Ready Listo - + Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas. Vista previa. Esta vista do mapa será usada para amosar un localizador de mapa que amose a actual extensión da vista do mapa. A actual extensión será amosada cun rectángulo vermello. Calquera capa no mapa poderá ser engadida á vista previa. - + Overview Vista xeral - + Map legend that displays all the layers currently on the map canvas. Click on the check box to turn a layer on or off. Double click on a layer in the legend to customize its appearance and set other properties. Lenda do mapa que amosa tódalas capas que están presentes na vista do mapa. Clique na caixa de verificación para activar-la capa ou non. Doble clic na lenda da capa para personaliza-la apariencia e fixar outras propiedades. - + Layers Capas - + Control rendering order Control de orde de renderización - + Map layer list that displays all layers in drawing order. Lista de capas do mapa que amosa tódalas capas na orde de debuxado. - + Layer order Orde da capa - + [ERROR] Can not make qgis.db private copy [ERROR] Non se pode facer unha copia privada de qgis.db - - - + + + Private qgis.db qgis.db privado - + Could not open qgis.db Non se pode abri qgis.db - + Migration of private qgis.db failed. %1 Fallou a migración da qgis.db privada. %1 - + Update of view in private qgis.db failed. %1 Fallou a actualización da vista no qgis.db privado. %1 - - + + < Blank > < En Blanco > - + QGIS version Versión QGIS - + QGIS code revision Revisión de código QGIS - + Compiled against Qt Compilado con Qt - + Running against Qt Funcionando con Qt @@ -9686,171 +9882,178 @@ Póñase en contacto cos desarrolladores. Versión GDAL/OGR - + GEOS Version Versión GEOS - + PostgreSQL Client Version Versión do cliente PostgreSQL - - + + No support. Sen soporte. - + SpatiaLite Version Versión SpatiaLite - + QWT Version Versión QWT - + PROJ.4 Version Versión PROJ.4 - + + QScintilla2 Version + Versión de QScintilla2 + + + This copy of QGIS writes debugging output. Esta copia de QGIS grava a saída da depuración. - + %1 doesn't have any layers %1 non ten ningunha capa - - - + + Invalid Data Source Fonte de Datos Inválida - + %1 is not a valid or recognized data source %1 non é unha fonte de datos válida ou recoñecida - + Select zip layers to add... Seleccione capas zip a engadir... - + Vector Vector - + Select raster layers to add... Seleccione capas ráster a engadir... - + Raster Ráster - + Select vector layers to add... Seleccione capas vectoriais a engadir... - + PostgreSQL PostgreSQL - + Cannot get PostgreSQL select dialog from provider. Non se pode obte-lo diálogo de selección PostgreSQL do provedor. - + %1 is an invalid layer - not loaded %1 é unha capa inválida - non cargada - + + + + Invalid Layer Capa Inválida - + %1 is an invalid layer and cannot be loaded. %1 é unha capa inválida e non pode ser cargada. - + SpatiaLite SpatiaLite - + Cannot get SpatiaLite select dialog from provider. Non se pode obte-lo diálogo de selección SpatiaLite do provedor. - + MSSQL MSSQL - + Cannot get MSSQL select dialog from provider. Non se pode obte-lo diálogo de selección MSSQL do provedor. - + WMS WMS - + Cannot get WMS select dialog from provider. Non se pode obte-lo diálogo de selección WMS do provedor. - + WCS WCS - + Cannot get WCS select dialog from provider. Non se pode obte-lo diálogo de selección WCS do provedor. - + WFS WFS - + Cannot get WFS select dialog from provider. Non se pode obte-lo diálogo de selección WFS do provedor. - + Calculating... Calculando... - - + + Abort... Cancelar... - + Choose a QGIS project file to open Escolla un ficheiro de proxecto QGIS para abrir @@ -9863,134 +10066,144 @@ Póñase en contacto cos desarrolladores. Erro de Lectura Proxecto QGIS - + Unable to open project Incapaz de abrir o proxecto - + + project macros have been disabled. + as macros do proxecto foron desactivadas. + + + + Enable macros + Activar macros + + + Choose a QGIS project file Escolla un ficheiro de proxecto QGIS - - + + Saved project to: %1 Proxecto gardado a: %1 - - + + Unable to save project %1 Incapaz de gardar o proxecto %1 - + Choose a file name to save the QGIS project file as Escolla un nome de ficheiro para garda-lo ficheiro de proxecto QGIS como - + Unable to load %1 Incapaz de cargar %1 - + Choose a file name to save the map image as Escolla un nome de ficheiro para gardar imaxe de mapa como - + Saved map image to %1 Gardada imaxe do mapa a %1 - + Labeling Etiquetado - + Please select a vector layer first. Seleccione primeiro unha capa vectorial. - + Layer labeling settings Configuración do etiquetado de capa - + Saving done Gardado - + Export to vector file has been completed Completada a exportacion do ficheiro vectorial - + Save error Erro ó gardar - + Export to vector file failed. Error: %1 Fallou a exportación do ficheiro vectorial. Erro: %1 - - + + No Layer Selected Non seleccionada ningunha capa - + To delete features, you must select a vector layer in the legend Para eliminar entidades, debe selecciónar unha capa vectorial na lenda - + No Vector Layer Selected Ningunha capa vectorial seleccionada - + Deleting features only works on vector layers Eliminación de entidades só funciona con capas vectoriais - + Provider does not support deletion O provedor non soporta o borrado - + Data provider does not support deleting features O provedor de datos non soporta borrado de entidades - - - + + + Layer not editable Capa non editable - + The current layer is not editable. Choose 'Start editing' in the digitizing toolbar. A capa actual non é editable. Escolla 'Comezar edición' na barra de ferramentas de dixitalización. - + Delete features Eliminar entidades - + Delete %n feature(s)? number of features to delete Número de entidades a eliminar @@ -10000,141 +10213,141 @@ Erro: %1 - + Features deleted Entidades eliminadas - + Problem deleting features Problema eliminando entidades - + A problem occured during deletion of features Ocorreu un problema durante o borrado de entidades - + Merging features... Xuntando entidades... - + Abort Cancelar - - + + Composer %1 Compositor %1 - - + + No active layer Sen capa activa - - + + No active layer found. Please select a layer in the layer list Non se atopou capa activa. Seleccione unha capa la lista das capas - - + + Active layer is not vector A capa activa non é vectorial - - + + The merge features tool only works on vector layers. Please select a vector layer from the layer list A ferramenta de unión de entidades só función en capas vectorias. Seleccione unha capa vectorial da lista de capas - - + + Merging features can only be done for layers in editing mode. To use the merge tool, go to Layer->Toggle editing Xuntar entidades só pode facerse para capas en modo edición. Para usa-la ferramenta de unión, vaia a Capa->Alternar edición - - - + + + Not enough features selected Non seleccionadas suficientes entidades - - - + + + The merge tool requires at least two selected features A ferramenta unión require polo menos dúas entidades seleccionadas - + Merged feature attributes Atributos das entidades unidas - - + + Merge failed Fallou a unión - - + + An error occured during the merge operation Ocorreu un erro durante a operación de xuntado - + Union operation canceled Operación de unión cancelada - - + + The union operation would result in a geometry type that is not compatible with the current layer and therefore is canceled A operación de unión pode resultar nun tipo de xeometría que non é compatible coa capa actual e polo tanto será cancelada - + Merged features Entidades unidas - + Features cut Cortar Entidades - + Features pasted Entidades pegadas - + Cannot copy style: %1 Non se pode copia-lo estilo: %1 - + Cannot parse style: %1:%2:%3 Non se pode analiza-lo estilo: %1:%2:%3 - + Cannot read style: %1 Non se pode ler o estilo: %1 - - + + Could not commit changes to layer %1 Errors: %2 @@ -10145,30 +10358,74 @@ Erros:%2 - + Start editing failed Fallou Comezar edición - + Provider cannot be opened for editing Non se pode abri-lo provedor para edición - + Stop editing Parar edición - + Do you want to save the changes to layer %1? ¿Desexa garda-los cambios na capa %1? - + Problems during roll back Problemas ó recuar + + + Plugin layer + Capa de plugin + + + + Memory layer + Capa de memoria + + + + + Duplicate layer: + Duplicar capa: + + + + %1 (duplication resulted in invalid layer) + %1 (a duplicación creou unha capa inválida) + + + + %1 (%2type unsupported) + %1 (tipo %2 non soportado) + + + + Do you want to save the current project?%1 + + + + + + Error adding valid layer to map canvas + + + + + + + Raster layer + + Invalid scale Escala inválida @@ -10178,88 +10435,88 @@ Erros:%2 Escala - + Couldn't load Python support library: %1 Non se pode cargala librería de soporte de Python: %1 - + Couldn't resolve python support library's instance() symbol. Non de pode resolve-la instancia de librería de soporte de Python() do símbolo. - + Python support ENABLED :-) ACTIVADO soporte de Python :-) - + There is a new version of QGIS available Hai dispoñible unha nova versión de QGIS - + You are running a development version of QGIS Está usando unha versión de desarrollo de QGIS - + You are running the current version of QGIS Está usando a versión actual de QGIS - + Would you like more information? ¿Desexa máis información? - - - - + + + + QGIS Version Information Información da versión de QGIS - + QGIS - Changes since last release QGIS - Cambios dende o último lanzamento - + Unable to get current version information from server Incapaz de adquirir información da versión actual dende o servidor - + Connection refused - server may be down Conexión rexeitada - o servidor pode estar caído - + QGIS server was not found O servidor QGIS non foi atopado - + Unknown network socket error: %1 Erro de socket de rede descoñecido: %1 - + Unable to communicate with QGIS Version server %1 Incapaz de comunicarse co servidor da versión QGIS %1 - - + + To perform a full histogram stretch, you need to have a raster layer selected. Para realizar un despregamento completo do histograma, necesita ter unha capa ráster seleccionada. - + No Raster Layer Selected Non hai seleccionada ningunha capa ráster @@ -10276,65 +10533,67 @@ Erros:%2 Para levar a cabo un despregamento do histograma local, necesita ter unha capa ráster seleccionada. - - - + + Layer is not valid Capa non válida - + The layer %1 is not a valid layer and can not be added to the map A capa %1 non é unha capa válida e non pode ser engadida ó mapa - - + The layer is not a valid layer and can not be added to the map A capa non é unha capa válida e non pode ser engadida ó mapa - + + Project has layer(s) in edit mode with unsaved edits, which will NOT be saved! + + + + Save? ¿Gardar? - Do you want to save the current project? - ¿Desexa garda-lo actual proxecto? + ¿Desexa garda-lo actual proxecto? - + Current CRS: %1 (OTFR enabled) Actual SRC: %1 (OTFR activado) - + Current CRS: %1 (OTFR disabled) Actual SRC: %1 (OTFR desactivado) - + Map coordinates for the current view extents Coordenadas do mapa para a actual extensión da vista - + Map coordinates at mouse cursor position Coordenadas do mapa na posición do punteiro do rato - + Extents: Extensións: - + Maptips require an active layer Consellos do mapa requiren unha capa activa - + %n feature(s) selected on layer %1. number of selected features número de entidades seleccionadas @@ -10344,22 +10603,21 @@ Erros:%2 - + Open a GDAL Supported Raster Data Source Abrir unha fonte de datos ráster soportada por GDAL - %1 is not a valid or recognized raster data source - %1 non é unha fonte de datos ráster recoñecida ou válida + %1 non é unha fonte de datos ráster recoñecida ou válida - + %1 is not a supported raster data source %1 non é una fonte de datos soportada - + Unsupported Data Source Fonte de datos non soportada @@ -10376,91 +10634,108 @@ Erros:%2 Incapaz de crea-lo marcador. O seu usuario da base de datos podería estar perdido ou corrupto - + Project file is older O ficheiro de proxecto é antigo - + <p>This project file was saved by an older version of QGIS. When saving this project file, QGIS will update it to the latest version, possibly rendering it useless for older versions of QGIS.<p>Even though QGIS developers try to maintain backwards compatibility, some of the information from the old project file might be lost. To improve the quality of QGIS, we appreciate if you file a bug report at %3. Be sure to include the old project file, and state the version of QGIS you used to discover the error.<p>To remove this warning when opening an older project file, uncheck the box '%5' in the %4 menu.<p>Version of the project file: %1<br>Current version of QGIS: %2 <p> Este ficheiro de proxecto foi gardado cunha versión antiga de QGIS. Ó gardar este ficheiro de proxecto, QGIS o actualizará á última versión, posiblemente renderizándoo e facéndoo inservible para vellas versións de QGIS.<p> Incluso pensando que os desarrolladores de QGIS tentan mante-la compatibilidade coas vellas versións, algunha información destes vellos proxectos podería perderse. Para mellorar a calidade de Qgis, apreciamos se presenta un informe de erro en %3. Estea seguro de incluír o vello ficheiro de proxecto e o estado da versión de QGIS que usou para descubrir o erro.<p>Para eliminar este aviso cando abra un vello ficheiro de proxecto, desmarque a casilla '%5' no menú %4.<p> Versión do ficheiro de proxecto: %1 <br>Actual versiónde QGIS:%2 - + Window Fiestra - + Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved. It also allows editing to set the canvas center to a given position. The format is lat,lon or east,north Amosa as coordenadas do mapa na actual posición do cursor. A visualización será actualizada continuamente segundo o rato sexa movido. Tamén permite a edición para establece-la vista do mapa centrada nunha posición dada. O formato é latitude,lonxitude ou este, norte - + Current map coordinate (lat,lon or east,north) Coordenadas do mapa actual (latitude, lonxitude ou este, norte) - + Compiled against GDAL/OGR Compilado con GDAL/OGR - + Running against GDAL/OGR Funcionando con GDAL/OGR - - - + + + QGis files Ficheiros QGIS - + + copy + copiar + + + Unsupported Layer + Capa non soportada + + + %1 + +Duplication of layer type is unsupported. + %1 + +A duplicación deste tipo de capa non está soportada. + + + <tt>Settings:Options:General</tt> Menu path to setting options Ruta do menú para as opcións de axuste <tt>Axustes:Opcións:Xeral</tt> - + Warn me when opening a project file saved with an older version of QGIS Avísame ó abrir un ficheiro de proxecto gardado cunha vella versión de QGIS - + This project file was saved by an older version of QGIS Este ficheiro de proxecto foi gardado por unha versión anterior de QGIS - + Warning Atención - + This layer doesn't have a properties dialog. Esta capa non ten un diálogo de propiedades. - + Authentication required Requerida autentificación - + Proxy authentication required Requerida autentificación do Proxy - + SSL errors occured accessing URL %1: Ocorreron erros SSL accedento á URL %1: - + Always ignore these errors? @@ -10469,7 +10744,7 @@ Always ignore these errors? ¿Ignorar sempre estes erros? - + %n SSL errors occured number of errors número de erros @@ -10482,7 +10757,7 @@ Always ignore these errors? QgisAppInterface - + Attributes changed Atributos cambiados @@ -10546,22 +10821,27 @@ p, li { white-space: pre-wrap; } Desarrolladores - + + Essen (Germany), Developer meeting 2012 + Essen (Alemaña), encontro de Desarrolladores 2012 + + + Contributors Colaboradores - + Translators Tradutores - + about:blank en branco - + Donors Doadores @@ -10683,13 +10963,54 @@ p, li { white-space: pre-wrap; } Caché xuntar capa na memoria virtual + + QgsAddTabOrGroup + + + Add tab or group for %1 + Engadir lapela ou grupo para %1 + + + + QgsAddTabOrGroupBase + + + Dialog + Diálogo + + + + Create category + Crear categoría + + + + as + coma + + + + a tab + unha lapela + + + + a group in container + un grupo no recipiente + + QgsAnnotationWidget - + Select frame color Seleccione cor do cadro + + + Select background color + Seleccione cor do fondo + QgsAnnotationWidgetBase @@ -10709,12 +11030,17 @@ p, li { white-space: pre-wrap; } Marcador de mapa - + Frame width Ancho do marco - + + Background color + Cor de fondo + + + Frame color Cor do marco @@ -10722,19 +11048,19 @@ p, li { white-space: pre-wrap; } QgsApplication - - - + + + Exception Excepción - + unknown exception Excepción descoñecida - + Application state: QGIS_PREFIX_PATH env var: %1 Prefix: %2 @@ -10746,7 +11072,16 @@ Default Theme Path: %7 SVG Search Paths: %8 User DB Path: %9 - + Estado da aplicación: +QGIS_PREFIXO_RUTA env var: %1 +Prefixo: %2 +Ruta do Plugin: %3 +Ruta ós Datos do Paquete: %4 +Nome do Tema Activo: %5 +Ruta ó Tema Activo: %6 +Ruta ó Tema Predeterminado: %7 +Ruta ás buscas SVG: %8 +Ruta á Base de Datos do Usuario: %9 Application state: @@ -10771,7 +11106,7 @@ Ruta da BD de usuario: %8 - + match indentation of application state @@ -10785,12 +11120,12 @@ Ruta da BD de usuario: %8 Map %1 - Mapa %1 + Mapa %1 Expression based filename - + Nome de ficheiro baseado nunha expresión @@ -10798,125 +11133,125 @@ Ruta da BD de usuario: %8 Atlas generation - + Xeración do Atlas Atlas options - + Opcións do Atlas Hide the coverage layer when generating the output - + Agochar a capa de cobertura cando se xenere a saída Hidden coverage layer - + Capa de cobertura agochada Margin around coverage - + Marxe arredor da cobertura Output filename expression - + Expresión do nome de ficheiro de saída % - % + % ... - ... + ... Coverage layer - + Capa de cobertura Fixed scale - + Escala fixada Single file export when possible - + Exportar a un só ficheiro cando sexa posible Composer map to use - + Deseñador do mapa a usar Generate an atlas - + Xerar un atlas QgsAttributeActionDialog - + Select an action File dialog window title Título da fiestra de diálogo de Ficheiro Seleccione unha acción - + Insert expression Inserte expresión - + Missing Information Información Perdida - + To create an attribute action, you must provide both a name and the action to perform. Para crear unha acción de atributo, debe introducir tanto o nome como a acción a realizar. - + Echo attribute's value Devolver valor de atributo - + Run an application Executar unha aplicación - + Get feature id Tomar id de entidade - + Selected field's value (Identify features tool) Valor de campo seleccionado (ferrametna de identificación de entidades) - + Clicked coordinates (Run feature actions tool) Coordenadas clicadas (Executar ferramenta de acción de entidade) - + Open file Abrir arquivo - + Search on web based on attribute's value Buscar valor de atributo baseado na web @@ -11163,17 +11498,17 @@ Ruta da BD de usuario: %8 QgsAttributeDialog - + Error Erro - + Error: %1 Erro: %1 - + Attributes - %1 Atributos - %1 @@ -11181,22 +11516,22 @@ Ruta da BD de usuario: %8 QgsAttributeEditor - + Select a file Seleccione un ficheiro - + Select a date Seleccione unha data - + (no selection) (Sen selección) - + ... ... @@ -11298,7 +11633,7 @@ Ruta da BD de usuario: %8 QgsAttributeTableAction - + Attributes changed Atributos cambiados @@ -11505,7 +11840,7 @@ Ruta da BD de usuario: %8 &Buscar - + Attribute table - %1 (%n Feature(s)) feature count Contador de entidades @@ -11515,7 +11850,7 @@ Ruta da BD de usuario: %8 - + Attribute table - %1 :: %n / %2 feature(s) selected feature count Contador de entidades @@ -11525,22 +11860,22 @@ Ruta da BD de usuario: %8 - + Parsing error Erro de análise - + Evaluation error Erro de avaliación - + Error during search Erro durante a busca - + Attribute table - %1 (%n matching features) matching features Entidades coincidentes @@ -11550,69 +11885,69 @@ Ruta da BD de usuario: %8 - + Attribute table - %1 (No matching features) Táboa de atributos - %1 (Sen entidades coincidentes) - + Attribute added Atributo engadido - - + + Attribute Error Erro de atributo - + The attribute could not be added to the layer Os atributos non poden ser engadidos á capa - + Deleted attribute Eliminar atributo - + The attribute(s) could not be deleted O atributo(s) non poden ser eliminados - + Geometryless feature added Engadida entidade sen xeometría - + Run action Executar acción - - + + Open form Abrir formulario - + Loading feature attributes... Cargando atributos de entidade... - + Abort Cancelar - + Attribute table Táboa de Atributos - + %1 features loaded. %1 entidades cargadas. @@ -11620,7 +11955,7 @@ Ruta da BD de usuario: %8 QgsAttributeTableModel - + feature id ID de entidades @@ -12190,75 +12525,159 @@ Base de datos: %2 Ctrl+Shift+W + + QgsBrowserDirectoryPropertiesBase + + + Dialog + Diálogo + + + + Path + Ruta + + QgsBrowserDockWidget - + Browser Buscador - - Refresh - Recargar + Recargar - Add Selection - Engadir selección + Engadir selección - - + Add Selected Layers Engadir capas seleccionadas - Collapse All - Contraer todo + Contraer todo - + Add as a favourite Engadir como favorito - + Remove favourite Eliminar favorito - + Add Layer Engadir capa - + + Properties Propiedades - - Add a directory + + Filter Pattern Syntax + Sintaxe do patrón do filtro + + + + Wildcard(s) + Comodín(s) + + + + Regular Expression + Expresión regular + + + + Fast scan this dir. - + + Add a directory + Engadir un directorio + + + Add directory to favourites - + Engadir directorio a favoritos - + Error Erro - + Layer Properties Propiedades de capa + + + Directory Properties + Propiedades de directorio + + + + QgsBrowserDockWidgetBase + + + Browser + Buscador + + + + + Refresh + Recargar + + + + Add Selected Layers + Engadir capas seleccionadas + + + + Add + Engadir + + + + Filter Files + Ficheiros de filtro + + + + + ... + ... + + + + Collapse All + Contraer todo + + + + Options + Opcións + + + + Filter files + Ficheiros de filtro + QgsBrowserLayerPropertiesBase @@ -12379,6 +12798,24 @@ Base de datos: %2 Denso 7 + + QgsCategorizedSymbolRendererV2Model + + + Symbol + Símbolo + + + + Value + Valor + + + + Label + Etiqueta + + QgsCategorizedSymbolRendererV2Widget @@ -12388,8 +12825,6 @@ Base de datos: %2 - - Symbol Símbolo @@ -12404,81 +12839,105 @@ Base de datos: %2 Rampla de cor - + Classify Clasificar - + Add Engadir - + Delete Borrar - + Delete all Borrar todo - + Join Xuntar - + Advanced Avanzada - - Value - Valor + Valor - - Label - Etiqueta + Etiqueta - + Symbol levels... Niveis de símbolo... - - + + High number of classes! + + + + + Classification would yield %1 entries which might not be expected. Continue? + + + + + Error Erro - + There are no available color ramps. You can add them in Style Manager. Non hai ramplas de cor dispoñibles. Pode engadir unha no Xestor de Estilos. - + The selected color ramp is not available. A rampla de cor seleccionada non está dispoñible. - + Confirm Delete Confirmar eliminación - + The classification field was changed from '%1' to '%2'. Should the existing classes be deleted before classification? O campo de clasificación foi cambiado de '%1' a '%2'. ¿Deben ser eliminadas as clases existentes antes da clasificación? + + QgsCharacterSelectorBase + + + Character Selector + + + + + Font: + + + + + Current font family and style + + + QgsColorRampComboBox @@ -12565,16 +13024,16 @@ Should the existing classes be deleted before classification? Atlas generation - + Xeración do Atlas - - + + Choose a file name to save the map as Escolla un nome de ficheiro para garda-lo mapa - + PDF Format Formato PDF @@ -12587,12 +13046,12 @@ Should the existing classes be deleted before classification? Fallou a creación da imaxe con %1x%2 pixels. ¿Tentar sen 'Imprimir como Ráster'? - + Big image Imaxe grande - + To create image %1x%2 requires about %3 MB of memory. Proceed? Crear unha imaxe %1x%2 require sobre %3 MB de memoria. ¿Proceder? @@ -12610,77 +13069,77 @@ Should the existing classes be deleted before classification? Item Properties Propiedaes de elemento - - - - - Empty filename pattern - - - The filename pattern is empty. A default one will be used. - + Empty filename pattern + Patrón de nome de ficheiro baleiro - - Directory where to save PDF files - + + + + The filename pattern is empty. A default one will be used. + O Patrón do nome de ficheiro está baleiro. Será utilizado un predeterminado. - - - - Unable to write into the directory - + + Directory where to save PDF files + Directorio no que garda-los ficheiros PDF + Unable to write into the directory + Incapaz de escribir no directorio + + + + + The given output directory is not writeable. Cancelling. - + O directorio de saída aportado non é escribible. Cancelando. - - - - + + + + Rendering maps... - + Renderizando mapas... - - - - + + + + Abort - Cancelar + Cancelar - - - - + + + + Atlas processing error - + Erro de procesamento do Atlas - + Choose a file name to save the map image as Escolla un nome de ficheiro para gardar como nome de imaxe do mapa - + Directory where to save image files - + Directorio no que garda-los ficheiros de imaxe - + Image format: - + Formato de imaxe: Image too big @@ -12691,13 +13150,13 @@ Should the existing classes be deleted before classification? Fallou a creación da imaxe con %1x%2 píxeles. Cancelada a exportación. - + SVG warning Advertencia SVG - - + + Don't show this message again Non amosar esta mensaxe de novo @@ -12706,27 +13165,27 @@ Should the existing classes be deleted before classification? <p>A función de exportado SVG en Qgis sufriu graves problemas debido a erros e deficiencias no - + Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p> código Qt4 svg. en particular, hai problemas con capas que non son recortadas á caixa de límites do mapa.</p> - + If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p> Se requerise un ficheiro de saída baseado en vectores dende Qgis suxerímoslle que tente imprimir a PostScript se a saída SVG non é satisfactoria.</p> - + SVG Format Formato SVG - + Save template Gardar modelo - + Composer templates Modelos do deseñador @@ -12735,37 +13194,37 @@ Should the existing classes be deleted before classification? Gardar modelo - + <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the <p>A función de exportado SVG en Qgis sufriu graves problemas debido a erros e deficiencias no - + Directory where to save SVG files - + Directorio no que garda-los ficheiros SVG - + Save error Erro ó gardar - + Error, could not save file Erro, non se pode garda-lo ficheiro - + Load template Cargar modelo - + Read error Erro de lectura - + Error, could not read file Erro, non se pode ler o ficheiro @@ -12774,17 +13233,17 @@ Should the existing classes be deleted before classification? O contido do ficheiro modelo non é válido - + Composer Deseñador - + Project contains WMS layers O proxecto contén capas WMS - + Some WMS servers (e.g. UMN mapserver) have a limit for the WIDTH and HEIGHT parameter. Printing layers from such servers may exceed this limit. If this is the case, the WMS layer will not be printed Algúns servidores WMS (ex: servidor de mapas UMN) teñen un límite para o ANCHO e a ALTURA dos parámetros. Imprimir capas destes servidores pode sobrepasar este límite. De se-lo caso, a capa WMS non será impresa @@ -13463,7 +13922,7 @@ Should the existing classes be deleted before classification? Insert expression - Inserte expresión + Inserte expresión @@ -13570,13 +14029,13 @@ Should the existing classes be deleted before classification? Insert an expression - + Inserte unha expresión QgsComposerLegend - + Legend Lenda @@ -13605,103 +14064,120 @@ Should the existing classes be deleted before classification? QgsComposerLegendWidget - + General Options Opcións Xerais - + Item wrapping changed Cambiada a deformación do elemento - + Legend title changed Cambiado o título da lenda - + + Legend column count + + + + + Legend split layers + + + + + Legend equal column width + + + + Legend symbol width Ancho do símbolo da lenda - + Legend symbol height Alto do símbolo da lenda - + Legend group space Espazo do grupo da lenda - + Legend layer space Espazo da capa da lenda - + Legend symbol space Espazo do símbolo da lenda - + Legend icon label space Espazo da etiqueta de icona da lenda - + Title font changed Cambiada a fonte do título - + Legend group font changed Cambiada a fonte de grupo da lenda - + Legend layer font changed Cambiada a fonte da capa da lenda - + Legend item font changed Cambiada a fonte do elemento da lenda - + + Legend box space Espazo da caixa da lenda - + Legend map changed Cambiado o mapa da lenda - + Legend item edited Editado o elemento da lenda - - + + + Legend updated Lenda actualizada - + Legend group added Engadido grupo de lenda - + Map %1 Mapa %1 - + None Ningún @@ -13719,111 +14195,142 @@ Should the existing classes be deleted before classification? Xeral - + &Title &Título - + Title Font... Fonte do título... - + Group Font... Fonte do grupo... - + Layer Font... Fonte da capa... - + Item Font... Fonte do elemento... - + Symbol width Ancho do símbolo - - - - - - - + + + + + + + + mm mm - + Symbol height Alto do símbolo - + Layer space Espazo da capa - + Symbol space Espazo do símbolo - + Icon label space Espazo da etiqueta da icona - + Box space Espazo da caixa - + Map Mapa - + Group Space Espazo do grupo - + Wrap text on Axusta-lo texto en - + + Column count + + + + + Allow to split layer items into multiple columns. + + + + + Split layers + + + + + Equal column widths + + + + + Column space + + + + Legend items Elementos da lenda - + Auto Update Auto Actualización - + Update Actualizar - + All Todo - + Add group Engadir grupo + + + Show feature count for each class of vector layer. + Amosar contador de entidade para cada clase de capa vectorial. + QgsComposerManager @@ -13884,13 +14391,13 @@ Should the existing classes be deleted before classification? QgsComposerMap - - + + Map %1 Mapa %1 - + Map will be printed here O mapa será impreso aquí @@ -13904,35 +14411,35 @@ Should the existing classes be deleted before classification? - - + + Cache Caché - - + + Render Renderizar - - + + Rectangle Rectángulo - + Solid Sólido - - + + Cross Cruzado @@ -13953,40 +14460,40 @@ Should the existing classes be deleted before classification? - + No frame Sen marco - - + + Zebra Cebra - - - + + + Inside frame Dentro do marco - - + + Outside frame Fóra do marco - - - + + + Horizontal Horizontal - - + + Vertical Vertical @@ -13999,130 +14506,129 @@ Should the existing classes be deleted before classification? Dirección do límite - + Change item width Cambiar ancho do elemento - + Change item height Cambiar altura do elemento - + Map scale changed Cambiada a escala do mapa - + Map rotation changed Cambiada a rotación do mapa - - + + Map extent changed Cambiada a extensión do mapa - + Canvas items toggled Cambiados os elementos da vista do mapa - - - + + + None Ningún - + Grid checkbox toggled Cambiada a caixa de verificación da grella - - + + Grid interval changed Cambiado o intervalo da grella - - + + Grid offset changed Cambiada a compensación da grella - - + Grid pen changed Cambiado o lapis da grella - + Grid type changed Cambiado o tipo da grella - + Grid cross width changed Cambiado o ancho de cruzamento da grella - + Annotation font changed Cambiada a fonte de anotación - + Annotation distance changed Cambiada a distancia de anotación - + Annotation format changed Cambiado o formato de anotación - + Changed grid frame style Cambiado o estilo da grella do marco - + Changed grid frame width Cambiado o ancho do grella do marco - - - + + + Disabled Deshabilitado - + Annotation position changed Cambiada a posición de anotación - + Map %1 Mapa %1 - + Annotation toggled Anotación cambiada - + Changed annotation direction Cambiada a dirección da anotación - + Changed annotation precision Cambiada a precisión da anotación @@ -14240,77 +14746,86 @@ Should the existing classes be deleted before classification? &Tipo de Grella - + Interval X Intervalo X - + Offset X Desprazamento X - Line width - Ancho da liña + Ancho da liña - + Frame style Estilo do marco - + Frame width Ancho do marco - + + Line style + + + + + change... + + + + Draw annotation Debuxar anotación - + Annotation position left side Posición da anotación na marxe esquerda - + Annotation position right side Posición da anotación na marxe dereita - + Annotation position top side Posición da anotación na parte de arriba - + Annotation position bottom side Posición da anotación na parte de abaixo - + Annotation direction left side Dirección da anotación na marxe esquerda - + Annotation direction right side Dirección da anotación na marxe dereita - + Annotation direction top side Dirección da anotación na parte de arriba - + Annotation direction bottom side Dirección da anotación na parte de abaixo - + Annotation format Formato de anotación @@ -14323,22 +14838,22 @@ Should the existing classes be deleted before classification? Dirección da anotación - + Font... Fonte... - + Distance to map frame Distancia ó marco do mapa - + Coordinate precision Coordinar precisión - + Interval Y Intervalo Y @@ -14353,9 +14868,8 @@ Should the existing classes be deleted before classification? Ancho do cruzamento - Line color - Cor da liña + Cor da liña @@ -14490,12 +15004,12 @@ Should the existing classes be deleted before classification? QgsComposerScaleBar - + km km - + m m @@ -15751,12 +16265,12 @@ Erro: %5 QgsCptCityBrowserModel - + Name Nome - + Info Info @@ -15764,27 +16278,27 @@ Erro: %5 QgsCptCityColorRampItem - + colors Cores - + continuous continua - + continuous (multi) continua (multi) - + discrete discreta - + variants variantes @@ -15814,17 +16328,17 @@ Este ficheiro pode atoparse en [%2] e o ficheiro actual está en [%3] - + %1 directory details %1 detalles do directorio - + %1 gradient details %1 detalles do gradiente - + Error - cpt-city gradient files not found. You have two means of installing them: @@ -15849,17 +16363,17 @@ Este ficheiro pode atoparse en [%2] e o ficheiro actual está en [%3] - + Selections by theme Seleccións por tema - + All by author Todo por autor - + You can download a more complete set of cpt-city gradients by installing the "Color Ramp Manager" plugin (you must enable Experimental plugins in the plugin manager). @@ -15867,6 +16381,11 @@ e o ficheiro actual está en [%3] + + + All Ramps (%1) + + colors Cores @@ -15929,6 +16448,11 @@ e o ficheiro actual está en [%3] Path Ruta + + + Save as standard gradient + + Palette @@ -16212,34 +16736,34 @@ e o ficheiro actual está en [%3] QgsCustomizationDialog - + Object name Nome de obxecto - + Label Etiqueta - + Description Descrición - - + + Choose a customization INI file Escolla un ficheiro de personalización INI - - + + Customization files (*.ini) Ficheiros de personalización (*.ini) - + Widgets trebellos Widgets @@ -16253,52 +16777,57 @@ e o ficheiro actual está en [%3] Personalización - + + Enable customization + + + + toolBar Barra de ferramentas - + Catch Capturar - + Switch to catching widgets in main application Cambiar a widgets de captura na aplicación principal - + Save Gardar - + Save to file Gardar nun ficheiro - + Load Cargar - + Load from file Cargar dende ficheiro - + Expand All Expandir todo - + Collapse All Contraer todo - + Select All Seleccione todo @@ -17190,22 +17719,22 @@ p, li { white-space: pre-wrap; } Introduza un nome de capa antes de engadi-la capa ó mapa - + Choose a delimited text file to open Escolla un ficheiro de texto delimitado a abrir - + Text files Ficheiros de texto - + Well Known Text files Ficheiros de Texto Ben Coñecidos (WKT) - + All files Tódolos ficheiros @@ -17568,37 +18097,37 @@ p, li { white-space: pre-wrap; } O tipo de diagrama '%1' é descoñecido. Un tipo predeterminado será seleccionado para vostede. - + Transparency: %1% Transparencia: %1% - + Background color Cor de fondo - + Pen color Cor da pluma - + No attributes added. Non se engadiu ningún atributo. - + You did not add any attributes to this diagram layer. Please specify the attributes to visualize on the diagrams or disable diagrams. Vostede non engadiu ningún atributo a esta capa de diagrama. Especifique os atributos a visualizar nos diagramas ou desactive os diagramas. - + No attribute value specified Non se especificou ningún valor de atributo - + You did not specify a maximum value for the diagram size. Please specify the attribute and a reference value as a base for scaling in the Tab Diagram / Size. Non especificou un valor máximo para o tamaño do diagrama. Especifique o atributo e un valor de referenza como base para a escala no Menú Diagrama/Tamaño. @@ -17846,59 +18375,59 @@ p, li { white-space: pre-wrap; } QgsDirectoryParamWidget - - + + Name Nome - - + + Size Tamaño - - + + Date Data - - + + Permissions Permisos - - + + Owner Propietario - - + + Group Grupo - - + + Type Tipo - + folder Cartafol - + file Ficheiro - + link Enlace @@ -17936,42 +18465,35 @@ p, li { white-space: pre-wrap; } QgsEmbedLayerDialog - Select project file - Seleccione o ficheiro de proxecto + Seleccione o ficheiro de proxecto - QGis files - Ficheiros QGIS + Ficheiros QGIS - Recursive embeding not possible - A integración recursiva non é posible + A integración recursiva non é posible - It is not possible to embed layers / groups from the current project - Non é posible integrar capas/grupos ó proxecto actual + Non é posible integrar capas/grupos ó proxecto actual QgsEmbedLayerDialogBase - Select layers and groups to embed - Seleccione capas e grupos a integrar + Seleccione capas e grupos a integrar - Project file - Ficheiro de proxecto + Ficheiro de proxecto - ... - ... + ... @@ -17990,72 +18512,77 @@ p, li { white-space: pre-wrap; } QgsEngineConfigDialog - + Dialog Diálogo - + Search method Método de busca - + Chain (fast) Cadea (rápido) - + Popmusic Tabu Tabú MúsicaPop - + Popmusic Chain Cadea Popmusic - + Popmusic Tabu Chain Cadea tabú Popmusic - + FALP (fastest) FALP (o máis rápido) - + Number of candidates Número de candidatos - + Point Punto - + Line Liña - + Polygon Polígono - + Show all labels and features for all layers Amosar tódalas etiquetas e entidades para tódalas capas - + Show candidates (for debugging) Amosar candidatos (para depuración) - + + Save settings with project + + + + (i.e. including colliding objects) (é dicir incluídos obxectos solapados) @@ -18068,6 +18595,58 @@ p, li { white-space: pre-wrap; } Amosar etiqueta candidatos (para depuración) + + QgsErrorDialog + + + Error + Erro + + + + QgsErrorDialogBase + + + Dialog + Diálogo + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Summary</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Sumario</p></body></html> + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detailed report.</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Informe Detallado.</p></body></html> + + + + Always show details + Amosa-los detalles sempre + + + + Details >> + Detalles >> + + QgsExpressionBuilderDialogBase @@ -18138,52 +18717,52 @@ p, li { white-space: pre-wrap; } Campos e Valores - + Parser Error Erro do analizador - + Eval Error Erro de avaliación - + Expression is invalid <a href=more>(more info)</a> Expresión inválida <a href=more>(more info)</a> - + More info on expression error Máis información no erro de expresión - + Load top 10 unique values Cargar 10 valores únicos - + Load all unique values Cargar tódolos valores únicos - + <h3>Oops! QGIS can't find help for this function.</h3>The help file for %1 was not found.<br> <h3> ¡Ups! QGIS non pode atopar axuda para esta función. </h3>O ficheiro de axuda para %1 non foi atopado.<br> - + (Showing English version as there was no help available in your language (%1). If you would like to create it, contact the QGIS translation team).<br> (Amosando versión en inglés porque non hai axuda dispoñible no seu idioma (%1). Se desexa creala, contacte co equipo de tradución de QGIS).<br> - + It was neither available in your language (%1) nor English. Non está dispoñible nin no seu idioma (%1) nin en inglés. - + <br>If you would like to create it, contact the QGIS development team. <br>Se desexa creala, contacte co equipo de desarrolladores de QGIS. @@ -18310,45 +18889,45 @@ p, li { white-space: pre-wrap; } Erro de sintaxe - - + + Not available for layer Non dispoñible para a capa - + Evaluation error Erro de avaliación - + Provider error Erro de provedor - + Could not add the new field to the provider. Non se pode engadi-lo novo campo ó provedor. - + Error Erro - + An error occured while evaluating the calculation string: %1 Ocorreu un erro cando se avaliaban as cadeas de cálculo: %1 - + Please enter a field name Introduza un nome de campo - + The expression is invalid see (more info) for details @@ -18511,6 +19090,271 @@ p, li { white-space: pre-wrap; } Valores + + QgsFieldsProperties + + + Label + Etiqueta + + + + Id + Id + + + + Name + Nome + + + + Type + Tipo + + + + Length + Lonxitude + + + + Precision + Precisión + + + + Comment + Comentario + + + + Edit widget + Editar widget + + + + Alias + Alias + + + + + Name conflict + Conflito de nome + + + + + The attribute could not be inserted. The name already exists in the table. + O atributo no puido ser insertado. O nome xa existe na táboa. + + + + Added attribute + Atributo engadido + + + + + Deleted attribute + Atributo eliminado + + + + Line edit + Editar liña + + + + Unique values + Valores únicos + + + + Unique values editable + Valores únicos etitables + + + + Classification + Clasificación + + + + Value map + Mapa de valores + + + + Edit range + Editar rango + + + + Slider range + Rango deslizante + + + + Dial range + Marcar rango + + + + File name + Nome de ficheiro + + + + Enumeration + Enumeración + + + + Immutable + Inmutable + + + + Hidden + Oculto + + + + Checkbox + caixa de verificación + + + + Text edit + Editar texto + + + + Calendar + Calendario + + + + Value relation + Relación de valores + + + + UUID generator + Xenerador de UUID + + + + Select edit form + Seleccione formulario a editar + + + + UI file + Ficheiro UI + + + + QgsFieldsPropertiesBase + + + Field calculator + Calculadora de campo + + + + + Click to toggle table editing + Clique para activar/desactivar edición de táboa + + + + Toggle editing mode + Activar/Desactivar modo edición + + + + New column + Nova columna + + + + Ctrl+N + Ctrl+N + + + + Delete column + Eliminar columna + + + + Ctrl+X + Ctrl+X + + + + ... + ... + + + + Init function + Función Init + + + + Edit UI + Editar UI + + + + + + + + + + + - + - + + + + > + > + + + + ^ + ^ + + + + v + + + + + Autogenerate + Autoxenerar + + + + Drag and drop designer + Deseñador arrastrar e soltar + + + + Provide ui-file + Proporcionar ficheiro UI + + + + Attribute editor layout: + Esquema do editro de atributo: + + QgsFormAnnotationDialog @@ -18527,9 +19371,13 @@ p, li { white-space: pre-wrap; } QgsFormAnnotationDialogBase - Dialog - Diálogo + Diálogo + + + + Form annotation + Anotación no Formulario @@ -19718,35 +20566,40 @@ Seleccione de novo un ficheiro válido. QgsGdalProvider - + Dataset Description Descrición do conxunto de datos - + Band %1 Banda %1 - + Dimensions: Dismensións: - + X: %1 Y: %2 Bands: %3 X: %1 Y: %2 Bandas: %3 - + Origin: Orixe: - + Pixel Size: Tamaño do pixel: + + + Cannot get GDAL raster band: %1 + Non se pode obter unha banda ráster GDAL: %1 + out of extent Fóra da extesión @@ -19756,22 +20609,22 @@ Seleccione de novo un ficheiro válido. nulo (sen datos) - + Gauss Gauss - + Cubic Cúbica - + Mode Modo - + None Ningún @@ -19780,7 +20633,7 @@ Seleccione de novo un ficheiro válido. Magphase promedio - + Average Promedio @@ -20620,7 +21473,7 @@ p, li { espazo en branco: pre-embalar; } - + All files Tódolos ficheiros @@ -20645,12 +21498,12 @@ p, li { espazo en branco: pre-embalar; } ¿Desexa engadi-la fonte de datos de todos xeitos? - + Open 3D model file Abrir ficheiro modelo 3D - + Model files Ficheiros de modelo @@ -20860,6 +21713,24 @@ p, li { espazo en branco: pre-embalar; } Eliminar clase + + QgsGraduatedSymbolRendererV2Model + + + Symbol + Símbolo + + + + Value + Valor + + + + Label + Etiqueta + + QgsGraduatedSymbolRendererV2Widget @@ -20869,7 +21740,6 @@ p, li { espazo en branco: pre-embalar; } - Symbol Símbolo @@ -20919,61 +21789,66 @@ p, li { espazo en branco: pre-embalar; } Saltos bonitos - + Classify Clasificar - + Add class Engadir clase - + + Delete + + + + + Delete all + Borrar todo + + Delete class - Eliminar clase + Eliminar clase - + Advanced Avanzada - - Range - Rango + Rango - - Label - Etiqueta + Etiqueta - + Symbol levels... Niveis de símbolo... - - - + + + Error Erro - + There are no available color ramps. You can add them in Style Manager. Non hai ramplas de cor dispoñibles. Pode engadir unha no Xestor de Estilos. - + The selected color ramp is not available. A rampla de cor seleccionada non está dispoñible. - + Renderer creation has failed. Fallou a creación do renderizador. @@ -22120,13 +22995,13 @@ na liña %2 columna %3 - - - - - - - + + + + + + + Warning Atención @@ -22142,13 +23017,13 @@ na liña %2 columna %3 - + Cannot read module file (%1) Non se pode ler o ficheiro de módulo (%1) - + %1 at line %2 column %3 @@ -22172,74 +23047,74 @@ na liña %2 columna %3 Asegúrese de ter instalada a documentación de GRASS. - + Not available, description not found (%1) Non dispoñible, descrición non atopada (%1) - + Not available, cannot open description (%1) Non dispoñible, non se pode abri-la descrición (%1) - + Not available, incorrect description (%1) Non dispoñible, descrición incorrecta (%1) - - + + Run Executar - - + + Cannot get input region Non se pode obte-la rexión de entrada - + Input %1 outside current region! ¡Entrada %1 fóra da actual rexión! - + Use Input Region Utilice rexión de entrada - + Output %1 exists! Overwrite? ¡ Saída %1 xa existe! ¿Sobreescribir? - + Cannot find module %1 Non se pode atopa-lo módulo %1 - + Cannot start module: %1 Non se pode comeza-lo módulo: %1 - + Stop Parar - + <B>Successfully finished</B> <B>Finalizado satisfactoriamente</B> - + <B>Finished with error</B> <B>Finalizado con erro</B> - + <B>Module crashed or killed</B> <B>Módulo estragado ou inservible</B> @@ -22290,17 +23165,17 @@ na liña %2 columna %3 QgsGrassModuleField - + Attribute field Campo Atributo - + Warning Atención - + 'layer' attribute in field tag with key= %1 is missing. 'capa' atributo na etiqueta de campo coa clave=%1 está perdida. @@ -22308,17 +23183,17 @@ na liña %2 columna %3 QgsGrassModuleFile - + File Ficheiro - + %1:&nbsp;missing value %1:&nbsp;Valor perdido - + %1:&nbsp;directory does not exist %1:&nbsp;o directorion non existe @@ -22326,44 +23201,44 @@ na liña %2 columna %3 QgsGrassModuleGdalInput - + OGR/PostGIS/GDAL Input Entrada OGR/PostGIS/GDAL - - - + + + Warning Atención - + Cannot find layeroption %1 Non se pode atopa-la opción de capa %1 - + Cannot find whereoption %1 Non se pode atopa-la opción onde%1 - + Password Contrasinal - + Select a layer Seleccione unha capa - + PostGIS driver in OGR does not support schemas!<br>Only the table name will be used.<br>It can result in wrong input if more tables of the same name<br>are present in the database. ¡O driver PostGIS en OGR non soporta esquemas !<br>Só o nome da táboa será utilizado.<br>Pode resultar nunha entrada errónea se máis dunha táboa ten o mesmo nome<br>na mesma base de datos. - + %1:&nbsp;no input %1:&nbsp;ningunha entrada @@ -22371,50 +23246,50 @@ na liña %2 columna %3 QgsGrassModuleInput - + Input Entrada - - - - + + + + Warning Atención - + Cannot find typeoption %1 Non se pode atopa-la opción tipo%1 - + Cannot find values for typeoption %1 Non se poden atopar valores para opcion tipo %1 - + Cannot find layeroption %1 Non se pode atopa-la opción capa %1 - + GRASS element %1 not supported Elemento GRASS %1 non soportado - + Use region of this map Utilice a rexión deste mapa - + Select a layer Seleccione unha capa - + %1:&nbsp;no input %1:&nbsp;ningunha entrada @@ -22422,23 +23297,23 @@ na liña %2 columna %3 QgsGrassModuleOption - - + + Warning Atención - + Cannot parse version_min %1 Non se pode analizar versión_min %1 - + Cannot parse version_max %1 Non se pode analizar versión_max %1 - + %1:&nbsp;missing value %1:&nbsp;Valor perdido @@ -22446,7 +23321,7 @@ na liña %2 columna %3 QgsGrassModuleSelection - + Selected categories Categorías seleccionadas @@ -22456,14 +23331,14 @@ na liña %2 columna %3 - - - - - - - - + + + + + + + + Warning Atención @@ -22483,12 +23358,12 @@ na liña %2 columna %3 <br>comando: %1 %2<br>%3<br>%4 - + Cannot read module description (%1): Non se pode ler a descrición do módulo (%1): - + %1 at line %2 column %3 @@ -22497,43 +23372,43 @@ at line %2 column %3 na liña %2 columna %3 - + Cannot find key %1 Non se pode atopa-la chave %1 - + << Hide advanced options << Agochar opcións avanzadas - + Show advanced options >> Amosar opcións avanzadas >> - + Item with key %1 not found Elemento cunha clava %1 non atopado - + Item with id %1 not found Elemento con id %1 non atopado - - + + Cannot get current region Non se pode obte-la rexión actual - + Cannot check region of map %1 Non se pode comproba-la rexión do mapa %1 - + Cannot set region of map %1 Non se pode fixa-la rexióndo mapa %1 @@ -23221,6 +24096,16 @@ p, li { white-space: pre-wrap; } null (no data) nulo (sen datos) + + + cellhd file %1 does not exist + O ficheiro cellhd %1 non existe + + + + Groups not yet supported + Grupos aínda non soportados + QgsGrassRegion @@ -23853,107 +24738,112 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsIdentifyResults - + Identify Results Identificar resultados - + Feature Entidade - + Value Valor - - + + (Derived) (Derivado) - + (Actions) (Accións) - - - + + + Edit feature form Editar forma da entidade - - - + + + View feature form Ver forma da entidade - + + Print + Imprimir + + + Zoom to feature Zoom á entidade - + Copy attribute value Copiar valores de atributo - + Copy feature attributes Copiar atributos da entidade - + Clear results Limpar resultados - + Clear highlights Limpar destacados - + Highlight all Destacar todo - + Highlight layer Destacar capa - + Layer properties... - + Propiedades de capa... - + Expand all Expandir todo - + Collapse all Contraer todo - + Attribute changes Cambios de atributo - + Could not open url Non se pode abri-la url - + Could not open URL '%1' Non se pode abri-la URL '%1' @@ -23965,6 +24855,34 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Identify Results Identificar resultados + + + Expand tree. + Expandir árbore. + + + + + + + ... + ... + + + + Collapse tree. + Contraer árbore. + + + + New results will be expanded by default. + Os novos resultados serán expandidos por defecto. + + + + Print selected HTML response. + Imprimi-la resposta HTML seleccionada. + QgsImageWarper @@ -23978,13 +24896,13 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.QgsInterpolationDialog - + Triangular interpolation (TIN) Interpolación Triangular (TIN) - + Inverse Distance Weighting (IDW) (IDW) Ponderación da Distancia Inversa (PDI) @@ -24011,23 +24929,23 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. - + Break lines Romper liñas - + Structure lines Liñas de estrutura - + Points Puntos - + Save interpolated raster as... Gardar ráster interpolado coma... @@ -24150,6 +25068,11 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Output file Ficheiro de saída + + + Add result to project + Engadir resultado ó proxecto + QgsInterpolationPlugin @@ -24523,18 +25446,18 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsLabelPropertyDialog - - + + Label font Fonte de etiqueta - + Font color Cor da fonte - + Buffer color Cor do buffer @@ -24559,72 +25482,82 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. - + Size Tamaño - + Display Visualizar - + Show label Amosar etiqueta - + Max Máx - + Min Mín - + Scale-based Baseado na escala - + + Ignores priority and permits collisions/overlaps + Ignora prioridade e permite colisións/solapamentos + + + + Always show (exceptions above) + Amosar sempre (agás excepcións) + + + Buffer Buffer - + Position Posición - + Label distance Distancia da etiqueta - + X Coordinate Coordenada X - + Y Coordinate Coordenada Y - + Horizontal alignment Aliñamento horizontal - + Vertical alignment Aliñamento vertical - + Rotation Rotación @@ -24644,52 +25577,52 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Mostra @ 24 pts (utilizando unidades do mapa) - + (not found!) (¡non atopado!) - + Sample @ %1 pts (using map units) Mostra @ %1 pts (utilizando unidades do mapa) - + Sample @ %1 pts (using map units, BUFFER IN MILLIMETERS) Mostra @ %1 pts (utilizando unidades do mapa, BUFFER EN MILÍMETROS) - + Sample Mostra - + Sample (BUFFER NOT SHOWN, in map units) Mostra (BUFFER NON AMOSADO, en unidades de mapa) - + Expression based label Etiqueta baseada nunha expresión - + Mixed Case Maiúsculas misturadas - + All Uppercase Todo maiúsculas - + All Lowercase Todo minúsculas - + Title Case Título en maiúsculas @@ -24721,9 +25654,11 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. - - - + + + + + ... ... @@ -24733,31 +25668,31 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Axustes de etiqueta - + Text style Estilo de texto - + Font Fonte - + TextLabel Etiqueta de texto - - - + + + Color Cor - - - + + + Size Tamaño @@ -24766,23 +25701,23 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.En puntos - - + + In map units En unidades do mapa - + Buffer Buffer - + mm mm - + Scale-based visibility Visibilidade dependendo da escala @@ -24797,118 +25732,190 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Cor de fondo da mostra - + Multiple lines Múltiples liñas - + Wrap on character Envolve-lo carácter - + Line height spacing for multi-line text Espaciado da altura da liña para texto multiliña - + Alignment Aliñamento - + Paragraph style alignment of multi-line text Aliñamento do estilo do parágrafo do texto multiliña - + Available typeface styles Hai dispoñibles estilos de tipo de letra - + Underlined Text Texto suliñado - + Strikeout text Texto tachado - - + + Space in pixels or map units, relative to size unit choice Espazo en píxeles ou unidades de mapa, en relación ó tamaño da unidade elexida - + Type case Fonte - + Capitalization style of text Estilo de capitalización do texto - + Pen Join style Estilo de unión do lápis - + Color area inside of pen stroke Cor da área dendro do trazo da pluma - + + Minimum Mínimo - + + Maximum Máximo - + Formatted numbers Números formateados - + Decimal places Número de decimais - + Show plus sign Amosar signo máis - + + Pixel size-based visibility + Visibilidade baseada no tamaño do pixel + + + + Labels will not show if larger than this on screen + As etiquetas non se amosarán se son máis largas que isto na pantalla + + + + Labels will not show if smaller than this on screen + As etiquetas non se amosarán se son menores que isto na pantalla + + + + + + + + < + < + + + + Label in Map Units + Etiqueta en Unidades do Mapa + + + + + Label + Etiqueta + + + + Line direction symbols + + + + + Symbol(s) + + + + + > + > + + + + left/right + + + + + above + + + + + below + + + + + Reverse direction + Dirección inversa + + + Advanced Avanzada - + Priority Prioridade - + Low Baixa - + High Alta - + Options Opcións @@ -24918,28 +25925,28 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Expresión - - + + mm mm - - - + + + map units Unidades do mapa - - - + + + Transparency Transparencia - - + + % % @@ -24954,51 +25961,53 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Restablecer texto da mostra - + line Liña - - + + Left Esquerda - + Center Centrado - - + + Right Dereita + + px - px + px - + Multi-line align Aliñamento Multiliña - - + + Line height Altura da liña - - + + Letter spacing Espazo entre letras - - + + Word spacing Espaciado das palabras @@ -25027,12 +26036,12 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Capitalizar - + Style Estilo - + points puntos @@ -25045,12 +26054,12 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.I - + U U - + S S @@ -25059,27 +26068,26 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Capitais - + Label every part of multi-part features Etiquetar cada parte das entidades multiparte - + Merge connected lines to avoid duplicate labels Xuntar liñas conectadas para previr etiquetas duplicadas - Add direction symbol - Engadir símbolo de dirección + Engadir símbolo de dirección - + Suppress labeling of features smaller than Eliminar etiquetado de entidades menores que - + Features don't act as obstacles for labels As entidades non actúan como obstáculos para as etiquetas @@ -25092,7 +26100,8 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Envolver etiqueta no carácter - + + Placement Posicionamento @@ -25137,28 +26146,28 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Utilizando o perímetro - - - + + + Label distance Distancia da etiqueta - - - + + + Rotation Rotación - - + + degrees Graos - - + + In mm En mm @@ -25175,287 +26184,321 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS.Debaixo da liña - + Line orientation dependent position Orientación da liña dependendo da posición - + Data defined settings Axustes dos datos definidos - + Buffer transparency Transparencia do buffer - + Uncheck to write labeling engine derived rotation on pin and NULL on unpin Desmarcar para escribi-la rotación derivada do motor de etiquetado en etiquetas clavadas e NULO nas desclavadas - + Preserve existing rotation values during label pin/unpin operations Preservar valores de rotación existentes durante as operacions de clavado/desclavado da etiqueta - + Display properties Amosar propiedades - + + Always show + Amosar sempre + + + Minimum scale Escala mínima - + Show label Amosar etiqueta - + Maximum scale Escala máxima - + Font properties Propiedades da fonte - + Bold Negriña - + Italic Cursiva - + Underline Suliñado - + Strikeout Tachado - + Font family Familia da fonte - + Capitalization Capitalización - + Add label columns to attribute table Engadir columnas de etiqueta á táboa de atributos - + About data defined values Acerca dos valores definidos dos datos - + Buffer properties Propiedades do buffer - + Automated placement settings Configuración do posicionamento automatizado - Show all labels for this layer (i.e. including colliding labels) - Amosar tódalas etiquetas para esta capa (incluído etiquetas solapadas) + Amosar tódalas etiquetas para esta capa (incluído etiquetas solapadas) - + Around point Arredor do punto - + Offset from point Desprazamento do punto - + Parallel Paralelo - + Curved Curvado - + Horizontal Horizontal - + Offset from centroid Desprazamento dende o centroide - + Around centroid Arredor do centroide - + Horizontal (slow) Horizontal (lento) - + Free (slow) Libre (lento) - + Using perimeter Utilizar perímetro - + Centroid of Centroide de - + visible polygon polígono visible - + whole polygon polígono enteiro - + Above line Sobre a liña - + On line Na liña - + Below line Debaixo da liña - + + outside + + + + + inside + + + + + Maximum angle between curved characters + + + + X X - + Y Y - + Above Right Arriba Dereita - + Above Left Arriba Esquerda - + Over Superposta - + Above Arriba - + Below Left Abaixo esquerda - + Below Abaixo - + Below Right Abaixo Dereita - + + Show all labels for this layer (including colliding labels) + Amosar tódalas etiquetas para esta capa (incluíndo etiquetas solapadas) + + + Show upside-down labels - + Amosar etiquetas invertidas - + never - nunca + nunca - + when rotation defined - + cando a rotación estea definida - + always - sempre + sempre + + + + Limit number of features to be labeled to + + + + + Number of features sent to labeling engine, though not all may be labeled + - + Buffer size Tamaño do buffer - + Buffer color Cor do buffer - + Position Posición - + X Coordinate Coordenada X - + Y Coordinate Coordenada Y - + Horizontal alignment Aliñamento horizontal - + Vertical alignment Aliñamento vertical @@ -25471,79 +26514,79 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsLegend - - + + sub-group Sub-grupo - - + + group Grupo - + Legend context Contexto da lenda - + &Make to Toplevel Item &Mover elemento ó nivel máis alto - + Zoom to Group Zoom ó grupo - + &Set Group CRS &Fixar SRC do grupo - + &Group Selected &Grupo seleccionado - + Copy Style Copiar estilo - + Paste Style Pegar estilo - + &Add New Group &Engadir novo grupo - + &Expand All &Expandir todo - + &Collapse All &Contraer todo - + &Update Drawing Order &Actualizar orde de debuxado - + &Remove &Borrar - + Re&name Re&nomear @@ -25551,80 +26594,83 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsLegendLayer - + &Remove &Eliminar - + &Query... &Consulta... - + &Zoom to Layer Extent &Zoom á extensión da capa - + &Zoom to Best Scale (100%) &Zoom á mellor escala (100%) - + &Stretch Using Current Extent &Despregar utilizando a actual extensión - + &Show in Overview &Amosar na Vista Xeral - + + &Duplicate + &Duplicar + + + &Set Layer CRS &Fixar o SRC da Capa - + Set &Project CRS from Layer Fixar o SRC do &proxecto dende a capa - + &Open Attribute Table &Abrir Táboa de Atributos - - + + Save As... Gardar como... - + Save Selection As... Gardar selección como... - + Show Feature Count Amosar contador de entidades - + &Properties &Propiedades - - + Updating feature count for layer %1 Actualizando contador de entidade para a capa %1 - - + Abort Cancelar @@ -25825,7 +26871,7 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsMapCanvas - + Could not draw %1 because: %2 COMMENTED OUT @@ -25833,7 +26879,7 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. - + Could not draw %1 because: %2 Non se puido debuxar %1 porque: @@ -25887,99 +26933,99 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsMapLayer - - + + Specify CRS for layer %1 Especificar SRC para a capa %1 - - - + + + %1 at line %2 column %3 %1 na liña %2 columna %3 - + style not found in database Estilo non atopado na base de datos - + Error: qgis element could not be found in %1 Erro: elemento de QGIS non pode ser atopado en %1 - - + + Loading style file %1 failed because: %2 Fallou a carga do ficheiro de estilo %1 porque: %2 - - - + + + Could not save symbology because: %1 Non se pode garda-la simboloxía porque: %1 - - + + The directory containing your dataset needs to be writable! ¡O directorio que contén o seu conxunto de datos necesita ser escribible! - - + + Created default style file as %1 Creado ficheiro de estilo por defecto como %1 - + ERROR: Failed to created default style file as %1. Check file permissions and retry. ERRO: fallou a creación do ficheiro de estilo por defecto %1. Verifique os permisos do ficheiro e reinténteo. - + User database could not be opened. A base de datos do usuario non pode ser accedida. - + The style table could not be created. A táboa de estilo non pode ser creada. - + The style %1 was saved to database O estilo %1 foi gardado na base de datos - + The style %1 was updated in the database. O estilo %1 foi actualizado na base de datos. - + The style %1 could not be updated in the database. O estilo %1 non puido ser actualizado na base de datos. - + The style %1 could not be inserted into database. O estilo %1 non puido ser introducido na base de datos. - + ERROR: Failed to created SLD style file as %1. Check file permissions and retry. ERRO: fallou a creación do ficheiro de estilo SLD %1. Verifique os permisos do ficheiro e reinténteo. - + Unable to open file %1 Incapaz de abri-lo ficheiro %1 @@ -25987,14 +27033,14 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsMapRenderer - - + + Transform error caught: %1 Detectado erro de transformación: %1 - - + + CRS SRC @@ -26374,92 +27420,95 @@ Isto pode ser un problema de conexión da súa rede ou do servidor WMS. QgsMapToolIdentify - + No active layer Sen capa activa - + To identify features, you must choose an active layer by clicking on its name in the legend Para identificar entidades, debe escoller unha capa vectorial activa clicando no seu nome na lenda - + Identifying on %1... Identificando en %1... - + Identifying done. Identificación realizada. - + No features at this position found. Sen entidades atopadas neste punto. - - + + (clicked coordinate) (coordenada clicada) - + Length Lonxitude - + firstX attributes get sorted; translation for lastX should be lexically larger than this one atributos son ordeados, a tradución para a últimaX debe ser lexicalmente maior que esta primeira PrimeiraX - + firstY PrimeiraY - + lastX attributes get sorted; translation for firstX should be lexically smaller than this one atributos son ordeados, a tradución para a últimaX debe ser lexicalmente menor que esta ÚltimaX - + lastY ÚltimaY - + Area Área - + + Perimeter + + + + feature id ID de entidades - + new feature Nova entidade - WMS layer - Capa WMS + Capa WMS - Feature info - Información de entidade + Información de entidade - + Raster Ráster @@ -27003,57 +28052,57 @@ http://my.host.com/cgi-bin/mapserv.exe QgsMeasureDialog - + &New &Novo - + The calculations are based on: Os cálculos están baseados en: - + Project CRS transformation is turned off. A transformación do SRC do proxecto está desactivada. - + Canvas units setting is taken from project properties setting (%1). A configuración das unidades da Vista do Mapa está tomada da configuración das propiedades do proxecto (%1). - + Ellipsoidal calculation is not possible, as project CRS is undefined. O cálculo elipsoidal non é posible, en canto o SRC do proxecto non está definido. - + Project CRS transformation is turned on and ellipsoidal calculation is selected. A transformación do SRC do proxecto está activada e o cálculo elipsoidal está seleccionado. - + The coordinates are transformed to the chosen ellipsoid (%1), and the result is in meters As coordenadas serán transformadas ó elipsoide escollido (%1) e os resultados amosaránse en metros - + Project CRS transformation is turned on but ellipsoidal calculation is not selected. A transformación do SRC está activada pero o cálculo elipsoidal non está seleccionado. - + The canvas units setting is taken from the project CRS (%1). A configuración das unidades da Vista do Mapa está tomada do SRC do proxecto (%1). - + Finally, the value is converted from %2 to %3. Finalmente, o valor será transformado de %2 a %3. - + Segments [%1] Segmentos [%1] @@ -27195,9 +28244,24 @@ http://my.host.com/cgi-bin/mapserv.exe QgsMessageBar + Remaining messages + Mensaxes restantes + + + + Close all + Pechar todo + + + Close Pechar + + + more + máis + QgsMessageLogViewer @@ -27803,17 +28867,17 @@ http://my.host.com/cgi-bin/mapserv.exe Recortar ó MínMáx - + Red Vermello - + Green Verde - + Blue Azul @@ -28601,22 +29665,22 @@ Informacion do erro extendido: Always cache - + Caché sempre Prefer cache - + Caché preferible Prefer network - + Rede preferible Always network - + Rede sempre @@ -28650,7 +29714,7 @@ Informacion do erro extendido: Coordinate Reference System - Sistema de Referencia de Coordenadas + Sistema de Referencia de Coordenadas @@ -28787,12 +29851,12 @@ Informacion do erro extendido: Coordinate Reference System: - + Sistema de Referencia de Coordenadas: Selected Coordinate Reference System - + Sistema de Referencia de Coordenadas seleccionado @@ -28832,7 +29896,7 @@ Informacion do erro extendido: Cache - Caché + Caché @@ -28846,7 +29910,16 @@ Prefer network: default value; load from the network if the cached entry is olde Always network: always load from network and do not check if the cache has a valid entry (similar to the "Reload" feature in browsers) - + Preferencias da Caché + +Sempre Caché: cargar dende a caché, mesmo se xa expirou + +Preferir Caché: cargar dende a caché se está dispoñible, doutro xeito cargar dende a rede. Teña en conta que isto posiblemente poida devolver da caché elementos pasados (anque non caducados) + +Preferir rede: valor predeterminado, cargar dende a rede se a entrada da caché é máis antiga que a entrada da rede + +Sempre rede: cargar sempre dende a rede e non comprobar se a caché ten unha entrada válida (similar a "Recargar" elemento nos buscadores) + @@ -29492,67 +30565,67 @@ Always network: always load from network and do not check if the cache has a val QgsOptions - + Current layer Capa actual - + Top down, stop at first De arriba para abaixo, parar na primeira - + Top down De arriba para abaixo - + Show all features Amosar Tódalas Entidades - + Show selected features Amosar entidades seleccionadas - + Show features in current canvas Amosar entidades na actual vista do mapa - + Always Sempre - + If needed De ser necesario - + Never Nunca - + Load all Cargar todo - + Check file contents Verificar contidos do ficheiro - + Check extension Verificar extensión - + No Non @@ -29561,254 +30634,250 @@ Always network: always load from network and do not check if the cache has a val Pasar a través - + Basic scan Escaneado básico - + Full scan Escaneado completo - + No Stretch Non despregar - + Stretch To MinMax Despregar a MínMáx - + Stretch And Clip To MinMax Despregar e recortar ó MínMáx - + Clip To MinMax Recortar ó MínMáx - + Detected active locale on your system: %1 Detectado idioma local activado no seu sistema: %1 - + None / Planimetric Ningún / Planimétrico - - + + Cumulative pixel count cut Corte de conta acumulativa de píxeles - + Minimum / maximum Mínimo / máximo - + Mean +/- standard deviation Media +/- desviación estándar - + To vertex Ó vértice - + To segment Ó segmento - + To vertex and segment Ó vértice e ó segmento - - + + map units Unidades do mapa - - + + pixels píxeles - - - + + + Semi transparent circle Círculo semitransparente - - - + + + Cross Cruzado - - - + + + None Ningún - + Off Apagado - + QGIS QGIS - + GEOS GEOS - + Round Redondo - + Mitre Mitra - + Bevel Comando - + Central point (fastest) Punto central (máis rápido) - + Chain (fast) Cadea (rápido) - + Popmusic tabu chain (slow) Cadea tabú MúsicaPop (lento) - + Popmusic tabu (slow) Tabú MúsicaPop (lento) - + Popmusic chain (very slow) Cadea MúsicaPop (moi lento) - - - + + + Save default project Gardar proxecto predeterminado - + You must set a default project Debe configurar un proxecto predeterminado - + Current project saved as default Proxecto actual gardado como predeterminado - + Error saving current project as default Erro gardando o actual proxecto como predeterminado - + Choose a directory to store project template files Escolla un directorio para almacena-los ficheiros modelo de proxecto - + Selection color Selección de cor - + Create Options - %1 Driver Opcións de Crear - Driver %1 - + Create Options - pyramids Opcións de Crear - pirámides - Parameters : - Parámetros : + Parámetros : - - - + + + Choose a directory Escolla un directorio - + Enter scale Introduza escala - + Scale denominator Denominador de escala - + Load scales Cargar escalas - - + + XML files (*.xml *.XML) Ficheiros XML (*.xml *.XML) - + Save scales Gardar escalas - - Parameters: - Parámetros: + Parámetros: - Can only use ellipsoidal calculations when CRS transformation is enabled - Só pode empregar cálculos elipsoidais cando a transformación do SRC está activada + Só pode empregar cálculos elipsoidais cando a transformación do SRC está activada @@ -29871,12 +30940,12 @@ Always network: always load from network and do not check if the cache has a val Font - Fonte + Fonte Qt default - + Qt predetermindado @@ -29971,14 +31040,14 @@ Always network: always load from network and do not check if the cache has a val - + Add Engadir - + Remove Borrar @@ -30327,57 +31396,56 @@ Always network: always load from network and do not check if the cache has a val Ferramenta de medición - Ellipsoid for distance calculations - Elipsoide para cálculo de distancias + Elipsoide para cálculo de distancias - + Rubberband color Cor da goma - + Preferred measurements units Unidades de medida preferidas - + Meters Metros - + Feet Pes - + Preferred angle units Unidades de ángulo preferidas - + Degrees Graos - + Radians Radiáns - + Gon Gon - + Decimal places Número de decimais - + Keep base unit Mante-la unidade base @@ -30422,291 +31490,289 @@ Always network: always load from network and do not check if the cache has a val Escalas predefinidas - + Overlays Solapamentos - + Position Posición - + Placement algorithm Algoritmo de posicionamento - + Digitizing Dixitalizacion - + Rubberband Goma - + Line width Ancho da liña - + Line width in pixels Ancho da liña en píxeles - + Line color Cor da liña - + Snapping Autoaxuste - + Default snap mode Modo de autoaxuste por defecto - + Default snapping tolerance Tolerancia de autoaxuste por defecto - + Search radius for vertex edits Radio de busca para editar vértices - - + + map units Unidades do mapa - - + + pixels píxeles - + Vertex markers Marcadores de vértices - + Show markers only for selected features Amosar marcadores só para entidades seleccionadas - + Marker style Estilo do marcador - + Marker size Tamaño do marcador - + Reuse last entered attribute values Reutiliza-los últimos valores de atributo introducidos - + Default expiration period for WMS-C/WMTS tiles (hours) Período de caducidade predeterminado para mosaicos WMS-C/WMTS (horas) - + Suppress attributes pop-up windows after each created feature Elimina-la fiestra emerxente de atributos logo de cada entidade creada - + Other settings Outros axustes - + Validate geometries Validar xeometrías - + Join style for curve offset Introduza estilo para desprazamento da curva - + Quadrantsegments for curve offset Segmentos de cuadrante para desprazamento da curva - + Miter limit for curve offset Límite da mitra para desprazamento da curva - + CRS SRC - + Default Coordinate Reference System for new projects Sistema de Referencia de Coordenadas por defecto para novos proxectos - + Enable 'on the &fly' reprojection by default Permitir reproxección 'sobre a &marcha' por defecto - - + + Select... Seleccione... - Semi-minor - Semi-eixo menor + Semi-eixo menor - Semi-major - Semi-eixo maior + Semi-eixo maior - + Always start new projects with this CRS Comezar sempre un proxecto con este SRC - + Automatically enable 'on the fly' reprojection if CRS of a new added layer differ from CRS of layer(s) already present. CRS of present layer(s) will be used. Activar automaticamente reproxección 'sobre a marcha' se o SRC da nova capa engadida difire do SRC da(s) capa(s) xa presentes. O SRC da(s) capa(s) presentes será o utilizado. - + Automatically enable 'on the fly' reprojection if layers have different CRS Activar automaticamente reproxección 'sobre a marcha' se as capas teñen diferentes SRC - + Coordinate Reference System for new layers Sistema de Referencia de Coordenadas para novas capas - + When a new layer is created, or when a layer is loaded that has no Coordinate Reference System (CRS) Cando unha nova capa é creada ou cando unha capa é cargada e non ten Sistema de Referencia de Coordenadas (SRC) - + Prompt for &CRS Solicitar un &SRC - + Use &project CRS Utiliza-lo SRC do &proxecto - + Use default CRS displa&yed below Utiliza-lo SRC por defecto &amosado debaixo - + Locale Internacionalización - + Override system locale Substituír configuración rexional do sistema - + Locale to use instead Configuración rexional a usar no canto de - + <b>Note:</b> Enabling / changing overide on local requires an application restart <b>Nota:</b> Permitir / cambiar substituír configuración rexional require o reinicio da aplicación - + Additional Info Información adicional - + Detected active locale on your system: Detectada configuración rexional activa no seu sistema: - + Network Rede - + Use proxy for web access Utilice proxy para acceder á web - + Host Hóspede - + Port Porto - + User Usuario - - + + Leave this blank if no proxy username / password are required Deixe isto en blanco se non é requerido usuario/contrasinal - + Password Contrasinal - + Proxy type Tipo de proxy - + Exclude URLs (starting with) Excluír URLs (comezando con) - + Cache settings Axustes de caché - + Directory Directorio @@ -30716,28 +31782,28 @@ Always network: always load from network and do not check if the cache has a val - + ... ... - + Size Tamaño - + Clear Limpar - + WMS search address Dirección de busca de WMS - + Timeout for network requests (ms) Tempo límite para resposta da rede (ms) @@ -31130,19 +32196,31 @@ Always network: always load from network and do not check if the cache has a val + Restrict the displayed tables to those that are in the layer registries. + Restrinxi-las táboas amosadas a aquelas que están nos rexistros de capa. + + + + Restricts the displayed tables to those that are found in the layer registries (geometry_columns, geography_columns, topology.layer). This can speed up the initial display of spatial tables. + Restrinxi-las táboas amosadas a aquela que se atopan nos rexistros de capa (geometry_columns, geography_columns, topology.layer). Isto pode axiliza-la visualización inicial das táboas espaciais. + + + + Only look in the layer registries + Mirar só nos rexistros da capa + + Restrict the displayed tables to those that are in the geometry_columns table columnas de xeometría - Restrinxi-las táboas amosadas a aquelas que están na táboa geometry_columns + Restrinxi-las táboas amosadas a aquelas que están na táboa geometry_columns - Restricts the displayed tables to those that are in the geometry_columns table. This can speed up the initial display of spatial tables. - Restrinxi-las táboas amosadas a aquelas que están na táboa geometry_columns. Isto pode acelera-la visualización inicial das táboas espacias. + Restrinxi-las táboas amosadas a aquelas que están na táboa geometry_columns. Isto pode acelera-la visualización inicial das táboas espacias. - Only look in the geometry_columns table - Buscar só na táboa de geometry_columns + Buscar só na táboa de geometry_columns @@ -31324,12 +32402,18 @@ Always network: always load from network and do not check if the cache has a val Parar - + + No accessible tables or views found. Check the message log for possible errors. + Non se atoparon táboas ou vistas accesibles. Comprobe o rexistro de mensaxes para posibles erros. + + + Connect Conectar + Postgres/PostGIS Provider Provedor Postgres/PostGIS @@ -31360,52 +32444,69 @@ Always network: always load from network and do not check if the cache has a val Táboa - Type - Tipo + Tipo - Geometry column - Columna de xeometría + Columna de xeometría - + SRID SRID - Primary key column - Columna de chave primaria + Columna de chave primaria - + Select at id Seleccione na id - + Sql Sql - + Detecting... Detectando... - + Select... Seleccione... - + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). Deshabilitar a capacidade 'Acceso Rápido a Entidade na ID' para forza-lo mantemento de táboas de atributos en memoria (por exemplo, en caso de vistas custosas). - + + Column + Columna + + + + Data Type + Tipo Data + + + + Spatial Type + Tipo Espacial + + + + Primary Key + Chave primaria + + + Enter... Introducir... @@ -31631,7 +32732,7 @@ Velaí a mensaxe de erro: Experimental plugin. Use at own risk - + Plugin experimental. Utilíceo baixo o seu propio risco - %d plugins available @@ -31814,7 +32915,7 @@ Necesita reiniciar Quantum GIS para recargalo. State - Estado + Estado @@ -32274,7 +33375,7 @@ p, li { white-space: pre-wrap; } - + Plugins Plugins @@ -32285,27 +33386,27 @@ p, li { white-space: pre-wrap; } - + Installed in %1 menu/toolbar Instalado no %1menú/barra de ferramentas - + No Plugins Sen Plugins - + No QGIS plugins found in %1 Ningún plugin atopado en %1 - + Error Erro - + Failed to open plugin installer! ¡Fallou a apertura do instalador de plugins! @@ -32313,32 +33414,32 @@ p, li { white-space: pre-wrap; } QgsPluginManagerBase - + QGIS Plugin Manager Administrador de Plugins de QGIS - + To enable / disable a plugin, click its checkbox or description Para activar/desactivar un plugin, clicar na súa casela de verificación ou na descripción - + &Filter &Filtro - + Plugin Directory: Directorio de plugin: - + Directory Directorio - + Plugin Installer Instalador de plugins @@ -32468,24 +33569,24 @@ p, li { white-space: pre-wrap; } - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PostGIS PostGIS @@ -32520,12 +33621,12 @@ resultado:%2 erro:%3 - + Database connection was successful, but the accessible tables could not be determined. A conexión á base de datos foi satisfactoria, pero as táboas accesibles non puideron ser determinadas. - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 @@ -32534,7 +33635,7 @@ erro:%3 - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 @@ -32544,56 +33645,56 @@ A mensaxe de erro da base de datos foi: - + Database connection was successful, but no accessible tables were found. Please verify that you have SELECT privilege on a table carrying PostGIS geometry. A conexión á base de datos foi satisfactoria, pero as táboas accesibles non foron atopadas. Verifique que posúe privilexios SELECT na táboa de leva a xeometría PostGIS. - + Unable to get list of spatially enabled tables from the database Incapaz de obte-la lista de táboas activadas espacialmente dende a base de datos - + Retrieval of postgis version failed Fallou a recuperación da versión de PostGIS - + Could not parse postgis version string '%1' Non se puido analiza-la cadea de versión PostGIS '%1' - + Connection error: %1 returned %2 [%3] Erro de conexión: %1 retornou %2 [%3] - + Erroneous query: %1 returned %2 [%3] Consulta errónea: %1 retornou %2 [%3] - + Query failed: %1 Error: no result buffer Fallou a consulta: %1 Erro: sen buffer resultante - + Not logged query failed: %1 Error: no result buffer Fallou consulta non rexistrada: %1 Erro: sen buffer resultante - + Query: %1 returned %2 [%3] Consulta: %1 retornou %2 [%3] - + %1 cursor states lost. SQL: %2 Result: %3 (%4) @@ -32602,78 +33703,98 @@ SQL: %2 Resultado: %3 (%4) - + resetting bad connection. restablecer mala conexión. - + retry after reset succeeded. reintentar logo de restablecer con éxito. - + retry after reset failed again. reintentar de novo logo do fallo de restablecemento. - + connection still bad after reset. a conexión segue sendo mala logo de restablecer. - + bad connection, not retrying. conexión mala, non está reintentando. - + Point Punto - + Multipoint Multipunto - + Line Liña - + Multiline Multiliña - + Polygon Polígono - + Multipolygon Multipolígono - + No Geometry Sen xeometría - + Unknown Geometry Xeometría descoñecida - - + + None + Ningún + + + + Geometry + Xeometría + + + + Geography + Xeografía + + + + TopoGeometry + TopoXeometría + + + + Query could not be canceled [%1] A consulta non puido ser cancelada [%1] - + PQgetCancel failed Fallou PQgetCancel @@ -32687,31 +33808,31 @@ Resultado: %3 (%4) - - - - - - + + + + + - - - - + + + + - - - - - - + + + + + + + + - - - + + PostGIS PostGIS @@ -32766,154 +33887,158 @@ Resultado: %3 (%4) Texto, lonxitule ilimitada (text) - + Couldn't get the feature geometry in binary form Non se puido obte-la xeometría de entidade en forma binaria - + Read attempt on an invalid postgresql data source Tentativa de lectura nunha fonte de datos PostgreSQL inválida - + nextFeature() without select() nextFeature() sen selección() - - + + Fetching from cursor %1 failed Database error: %2 Fallo busca dende o cursor %1 Erro da base de datos: %2 - + feature %1 not found Entidade %1 non atopada - + found %1 features instead of just one. Atopadas %1 entidades no canto dunha soa. - + FAILURE: Field %1 not found. FALLO: Campo %1 non atopado. - - + + unexpected formatted field type '%1' for field %2 formato inesperado de tipo de campo '%1' para campo %2 - - + Field %1 ignored, because of unsupported type %2 Campo %1 ignorado, debido a tipo insoportado %2 - + + Field %1 ignored, because of unsupported type type %2 + O campo %1 foi ignorado, debido a un tipo insoportado de tipo %2 + + + The custom query is not a select query. A consulta personalizada non é unha consulta de selección. - + The table has no column suitable for use as a key. Quantum GIS requires a primary key, a PostgreSQL oid column or a ctid for tables. A táboa non ten unha columna axeitada para usar coma chave. Quantum GIS require unha chave primaria, unha columna OID PostgreSQL ou unha CTID para táboas. - + Primary key field '%1' for view not unique. Campo de chave primaria '%1' para vista non único. - + Type '%1' of primary key field '%2' for view invalid. O tipo '%1' de campo de chave primaria '%2' para vista inválido. - + Key field '%1' for view not found. Campo de chave '%1' para vista non atopado. - + No key field for view given. Non foi dado ningún campo chave para vista. - + Unexpected relation type '%1'. Tipo de relación '%1' inesperado. - + No key field for query given. Non foi dado ningún campo chave para consulta. - + PostGIS error while adding features: %1 Erro de PostGIS cando se engadían entidades: %1 - + PostGIS error while deleting features: %1 Erro de PostGIS cando se eliminaban entidades: %1 - + PostGIS error while adding attributes: %1 Erro de PostGIS cando se engadían atributos: %1 - + PostGIS error while deleting attributes: %1 Erro de PostGIS cando se eliminaban atributos: %1 - + PostGIS error while changing attributes: %1 Erro de PostGIS cando se cambiaban atributos: %1 - + PostGIS error while changing geometry values: %1 Erro de PostGIS cando se cambiaban valores de xeometría: %1 - + result of extents query invalid: %1 resultado da consulta de extensión inválida: %1 - + Geometry type and srid for empty column %1 of %2 undefined. Tipo de xeometría e srid para columna baleira %1 de %2 non definidas. - + Feature type or srid for %1 of %2 could not be determined or was not requested. O tipo de entidade ou srid para %1 de %2 non puido ser determinado ou non foi solicitado. - + Editing and adding disabled for 2D+ layer (%1; %2) Edición e adición desactivadas para capas 2D+ (%1; %2) - + Duplicate field %1 found Campo duplicado %1 non atopado - + Unable to access the %1 relation. The error message from the database was: %2. @@ -32924,7 +34049,7 @@ A mensaxe de erro dende a base de datos foi: SQL: %3 - + PostgreSQL is still in recovery after a database crash (or you are connected to a (read-only) slave). Write accesses will be denied. @@ -32933,7 +34058,7 @@ Write accesses will be denied. Accesos de escritura serán denegados. - + Unable to determine table access privileges for the %1 relation. The error message from the database was: %2. @@ -32944,7 +34069,7 @@ A mensaxe de erro dende a base de datos foi: SQL: %3 - + Unable to execute the query. The error message from the database was: %1. @@ -33018,112 +34143,184 @@ Choose ignore to continue loading without the missing layers. Choose cancel to r Escolla ignorar para continuar cargando sen as capas perdidas. Escolla cancelar para volver ó estado de cargado do seu pre-proxecto. Escolla OK para tentar atopa-las capas perdidas. + + QgsProjectLayerGroupDialog + + + Select project file + Seleccione o ficheiro de proxecto + + + + QGis files + Ficheiros QGIS + + + + Recursive embedding not possible + A integración recursiva non é posible + + + + It is not possible to embed layers / groups from the current project. + Non é posible integrar capas/grupos dende proxecto actual. + + + + QgsProjectLayerGroupDialogBase + + + Select layers and groups to embed + Seleccione capas e grupos a integrar + + + + Project file + Ficheiro de proxecto + + + + ... + ... + + QgsProjectProperties - + Layer Capa - + Type Tipo - + Identifiable Identificable - + Vector Vector - + WMS WMS - + Raster Ráster - - + + Coordinate System Restriction Restricción do sistema de coordenadas - + No coordinate systems selected. Disabling restriction. Ningún sistema de coordenadas seleccionado. Desactivando restricción. - + Selection color Selección de cor - + CRS %1 was already selected O SRC %1 xa está seleccionado - + Coordinate System Restrictions Restriccións do sistema de coordenadas - + The current selection of coordinate systems will be lost. Proceed? A actual selección do sistema de coordenadas perderáse. ¿Proceder? - + + Select print composer + Seleccione deseñador de impresión + + + + Composer Title + Título do deseñador + + + + Select restricted layers and groups + Seleccionar capas e grupos restrinxidos + + + Enter scale Introduza escala - + Scale denominator Denominador de escala - + Load scales Cargar escalas - - + + XML files (*.xml *.XML) Ficheiros XML (*.xml *.XML) - + Save scales Gardar escalas - + Transparency %1% Transparencia %1% - + Select a valid symbol Seleccione un símbolo válido - + Invalid symbol : Símbolo inválido : + + + Parameters : + Parámetros : + + + + + Parameters: + Parámetros: + + + + Can only use ellipsoidal calculations when CRS transformation is enabled + Só pode empregar cálculos elipsoidais cando a transformación do SRC está activada + QgsProjectPropertiesBase @@ -33133,52 +34330,52 @@ Proceed? Propiedades do Proxecto - + General Xeral - + General settings Configuracións xerais - + Project title Título do proxecto - + Descriptive project name Nome descriptivo do proxecto - + Default project title Título do proxecto por defecto - + Selection color Selección de cor - + Background color Cor de fondo - + absolute absoluto - + relative relativo - + Save paths Gardar rutas @@ -33187,232 +34384,272 @@ Proceed? Unidades de capa (usado só cando a transformación do SRC está desactivada) - + Meters metros - + Feet Pes - + Degree Grao - + Degree display Amosar grao - + Decimal degrees Grados decimais - + Degrees, Minutes Graos, Minutos - + Degrees, Minutes, Seconds Graos, Minutos, Segundos - + Precision Precisión - + Automatically sets the number of decimal places in the mouse position display Axusta automaticamente o número de decimais na posición do rato - + The number of decimal places that are used when displaying the mouse position is automatically set to be enough so that moving the mouse by one pixel gives a change in the position display O número de decimais que son usados cando se amoasa a posición do rato é automaticamente axustada para ser suficiente e movendo o rato un pixel produce un cambio na posición amosada - + Automatic Automático - - + + Sets the number of decimal places to use for the mouse position display Axusta o número de decimais a usar na posición do rato - + Manual Manual - - + + The number of decimal places for the manual option O número de decimais para a opción manual - + decimal places Número de decimais - + Project scales Escalas de proxecto - - - - - - - - + + + + + + + + ... ... - + Coordinate Reference System (CRS) Sistema de Referencia de Coordenadas (SRC) - + Enable 'on the fly' CRS transformation Activar transformación do SRC 'sobre a marcha' - + Identifiable layers Capas identificables - - + + Layer Capa - + Type Tipo - + Identifiable Identificable - + Default Styles Estilos predeterminados - + Default Symbols Símbolos predeterminados - + Marker Marcador - + Line Liña - + Fill Encher - + Color Ramp Rampla de cor - + Style Manager Administrador de Estilo - + Options Opcións - + Assign random colors to symbols Asignar cores aleatorias ós símbolos - + Opacity Opacidade - + OWS Server Servidor OWS - + + Fees + Taxas + + + + Access constraints + Restricións de acceso + + + + Keyword list + Lista de palabras chave + + + + Exclude composers + Excluír deseñadores + + + + Exclude layers + Excluír capas + + + Advertised WMS url Url WMS anunciada - + Maximum width Anchura máxima - + Maximum height Altura máxima - + WFS Capabilitities Capacidades WFS - + Published Publicado - + + Update + Actualizar + + + + Insert + Insertar + + + + Delete + Eliminar + + + Unselect all - + Deseleccionar todo - + Select all - + Seleccionar todo - + Macros Macros - + Python macros Macros Python - + Service Capabilitities Capacidades do Servizo @@ -33421,107 +34658,127 @@ Proceed? Unidades de capa - + Title Título - + Person Persoa - + Phone Teléfono - + Abstract Resumo - + E-Mail Correo electrónico - + + Measure tool + Ferramenta de medición + + + + Ellipsoid for distance calculations + Elipsoide para cálculo de distancias + + + + Semi-minor + Semi-eixo menor + + + + Semi-major + Semi-eixo maior + + + Organization Organización - + Online resource Recurso en liña - + WMS Capabilitities Capacidades WMS - + Advertised Extent Extensión anunciada - + Min. X Mín. X - + Min. Y Mín. Y - + Max. X Máx. X - + Max. Y Máx. Y - + Use Current Canvas Extent Utilice a extensión da Vista do mapa actual - + Coordinate Systems Restrictions Restriccións do sistema de coordenadas - + Used when CRS transformation is turned off Utilizado cando a transformación do SRC está apagada - + Canvas units Unidades da Vista do Mapa - + Add Engadir - + Remove Eliminar - + Used Utilizado - + Add WKT geometry to feature info response Engadir xeometría WKT á resposta de información da entidade @@ -34105,57 +35362,67 @@ p, li { white-space: pre-wrap; } QgsRasterDataProvider - + Identify Indentificar - + Build Pyramids Construír pirámides - + Create Datasources Crear Fontes de Datos - + Remove Datasources Eliminar Fontes de Datos - + + no data + Sen datos + + + + Feature info + Información de entidade + + + Band Banda - + Average Media - + Nearest Neighbour Veciño máis cercano - + Gauss Gauss - + Cubic Cúbica - + Mode Modo - + None Ningún @@ -34461,242 +35728,246 @@ Clique no botón de axuda para obte-las opcións válidas para este formato QgsRasterLayer - - - - - + + + + + Not Set Non fixado - + QgsRasterLayer created Creada capa ráster Qgs - + Retrieving stats for %1 Recuperando estadísticas para %1 - + Could not reproject view extent: %1 Non se puido reproxecta-la extensión da vista: %1 - - - - - - - + + + + Raster Ráster - + Could not reproject layer extent: %1 Non se puido reproxecta-la extensión da capa: %1 - + Cannot read data Non se poden le-los datos - + null (no data) nulo (sen datos) - + Driver: Driver: - + No Data Value Non hai valor de datos - + NoDataValue not set Non fixado 'non hai valor de datos' - + Data Type: Tipo de datos: - + GDT_Byte - Eight bit unsigned integer GDT_Byte - Enteiro non asinado de oito bits - + GDT_UInt16 - Sixteen bit unsigned integer GDT_UInt16 -Enteiro non asinado de dezaseis bits - + GDT_Int16 - Sixteen bit signed integer GDT_Int16 -Enteiro asinado de dezaseis bits - + GDT_UInt32 - Thirty two bit unsigned integer GDT_UInt32 - Enteiro non asinado de trinta e dous bits - + GDT_Int32 - Thirty two bit signed integer GDT_Int32 - Enteiro asinado de trinta e dous bits - + GDT_Float32 - Thirty two bit floating point GDT_Float32 - Coma flotante de trinta e dous bits - + GDT_Float64 - Sixty four bit floating point GDT_Float64 - Coma flotante de sesenta e catro bits - + GDT_CInt16 - Complex Int16 GDT_CInt16 - Complexo Enteiro 16 - + GDT_CInt32 - Complex Int32 GDT_CInt32 - Complexo Enteiro 32 - + GDT_CFloat32 - Complex Float32 GDT_CFloat32 - Complexo Decimal 32 - + GDT_CFloat64 - Complex Float64 GDT_CFloat64 - Complexo Decimal 64 - + Could not determine raster data type. Non se puido determina-lo tipo de datos ráster. - + Pyramid overviews: Vista xeral das pirámides: - + Layer Spatial Reference System: Sistema de Referencia Espacial da Capa: - + Layer Extent (layer original source projection): Extensión da capa (proxección da fonte orixinal da capa): - + Project Spatial Reference System: Sistema de Referencia Espacial do Proxecto: - - + + Band Banda - + Band No Ningunha Banda - + No Stats Sen estadísticas - + No stats collected yet Ningunha estadística recollida aínda - + Min Val Valor Mínimo - + Max Val Valor Máximo - + Range Rango - + Mean Media - + Sum of squares Suma dos cadrados - + Standard Deviation Desviación estándar - + Sum of all cells Suma de tódalas celas - + Cell Count Contar celas - + + Cannot instantiate the '%1' data provider + Non se puido instancia-lo provedor de datos '%1' + + + + Provider is not valid (provider: %1, URI: %2 + Provedor non válido (provedor: %1, URI: %2) + + Failed to load provider %1 (Reason: %2) - Fallou a carga do provedor %1 (Razón: %2) + Fallou a carga do provedor %1 (Razón: %2) - Cannot resolve the classFactory function - Non se puido resolve-la función classFactory + Non se puido resolve-la función classFactory - Cannot instantiate the data provider - Non se puido instancia-lo provedor de datos + Non se puido instancia-lo provedor de datos Data provider is invalid (layers: %1, styles: %2, formats: %3) O provedor de datos é inválido (capas: %1, estilos: %2, formatos: %3) - + <maplayer> not found. <maplayer> non atopado. - + GDAL data type %1 is not supported O tipo de datos GDAL %1 non está soportado @@ -34769,105 +36040,105 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoEtiqueta - + Description Descrición - + Large resolution raster layers can slow navigation in QGIS. As capas ráster de gran resolución poden enlentecer a navegación en QGIS. - + By creating lower resolution copies of the data (pyramids) performance can be considerably improved as QGIS selects the most suitable resolution to use depending on the level of zoom. Creando copias de baixa resolución dos datos (pirámides) a manexabilidade pode incrementarse considerablemente porque QGIS selecciona a resolución máis apropiada a usar dependendo do nivel do zoom. - + You must have write access in the directory where the original data is stored to build pyramids. Debe ter acceso de escritura no directorio onde os datos orixinais están almacenados para constuír pirámides. - + Please note that building internal pyramids may alter the original data file and once created they cannot be removed! ¡Teña en conta que construíndo pirámides internas pode altera-lo arquivo de datos orixinal e unha vez creado estes non poden ser eliminados! - + Please note that building internal pyramids could corrupt your image - always make a backup of your data first! ¡Teña en conta que construíndo pirámides internas pode estraga-la súa imaxe - faga sempre unha copia de seguridade dos seus datos primeiro! - + Layer Properties - %1 Propiedades de capa - %1 - - + + Nearest neighbour Veciño máis cercano - - + + Bilinear Biliñal - - + + Cubic Cúbica - - + + Average Media - + None Ningún - - + + Red Vermello - - + + Green Verde - - + + Blue Azul - - - + + + + - Percent Transparent Porcentaxe de transparencia - - + + Gray Gris - - + + Indexed Value Valor indexado @@ -34903,41 +36174,41 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoR:%1 G:%2 B:%3 por defecto - + Columns: %1 Columnas: %1 - + Rows: %1 Ringleiras: %1 - + Columns: Columnas: + - - - + + n/a non está - + Rows: Ringleiras: - - + + No-Data Value: Non hai valor de datos: - + No-Data Value: %1 Non hai valor de datos: %1 @@ -34946,48 +36217,48 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoNon hai valor de datos: Non fixado - - + + Write access denied Denegado o acceso de escritura - + Write access denied. Adjust the file permissions and try again. Denegado o acceso de escritura. Axuste os permisos de ficheiro e ténteo de novo. - - - - + + + + Building pyramids failed. Fallou a creación de pirámides. - + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. Este ficheiro non foi escrito. Algúns formatos non soportan vistas xerais de pirámides. Consulte a documentació GDAL en caso de dúbida. - - + + Building pyramid overviews is not supported on this type of raster. A creación de vistas xerais de pirámides non está soportado neste tipo de ráster. - + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. A creación de vistas xerais de pirámides internas non está soportado en capas ráster con compresión JPEG nin na súa librería actual libtiff. - + Save file Gardar ficheiro - - + + Textfile Ficheiro de texto @@ -34996,28 +36267,28 @@ Clique no botón de axuda para obte-las opcións válidas para este formatonulo (sen datos) - + Load layer properties from style file Cargar propiedades da capa dende ficheiro de estilo - - + + QGIS Layer Style File Ficheiro de estilo de capa de QGIS - + Save layer properties as style file Gardar propiedades de capa como ficheiro de estilo - + Filter Filtro - + Bands Bandas @@ -35026,27 +36297,27 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoTempo - + QGIS Generated Transparent Pixel Value Export File QGIS xenerou un ficheiro de exportación de valor de pixel transparente - + From Dende - + To Ata - + not defined Non definido - + Write access denied. Adjust the file permissions and try again. @@ -35063,17 +36334,17 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoEscolla un nome de ficheiro para gardar como nome de imaxe do mapa - + Open file Abrir arquivo - + Import Error Erro de importación - + The following lines contained errors %1 @@ -35082,12 +36353,12 @@ Clique no botón de axuda para obte-las opcións válidas para este formato - + Read access denied Denegado o acceso de lectura - + Read access denied. Adjust the file permissions and try again. @@ -35132,14 +36403,14 @@ Clique no botón de axuda para obte-las opcións válidas para este formato - - + + Default Style Estilo por defecto - - + + Saved Style Estilo gardado @@ -35168,9 +36439,8 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoCor de tres bandas - Invert color map - Invertir cor do mapa + Invertir cor do mapa RGB mode band selection and scaling @@ -35189,12 +36459,12 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoBanda Azul - - - - - - + + + + + + ... ... @@ -35283,8 +36553,10 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoMellora do contraste + + Current - Actual + Actual Default @@ -35295,100 +36567,161 @@ Clique no botón de axuda para obte-las opcións válidas para este formatoEtiqueta de texto - + Transparency Transparencia - + Global transparency Transparencia global - + None Ningún - + 00% 00% - + <p align="right">Full</p> <p align="dereita">Full</p> - + Custom transparency options Personalizar opcións de transparencia - + Transparency band Banda transparente - + Transparent pixel list Lista de píxeles transparentes - + Add values manually Engadir valores manualmente - + Add Values from display Engadir valores dende a visualización - + Remove selected row Eliminar as ringleiras seleccionadas - + Default values Valores por defecto - + Import from file Importar dende ficheiro - + Export to file Exportar a ficheiro - + + + Maximum scale, i.e. minimum scale denominator. This limit is inclusive, that means the layer will be displayed on this scale. + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Maximum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inclusive)</p></body></html> + + + + + + Minimum scale, i.e. maximum scale denominator. This limit is exclusive, that means the layer will not be displayed on this scale. + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Minimum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exclusive)</p></body></html> + + + + MInimum scale denominator. + Denominador mínimo da escala. + + + Maximum scale: + Escala máxima: + + + Minimum scale (maximum scale denominator). + Escala mínima (denominador de escala máxima). + + + Maximum scale (minimum scale denominator). + Escala máxima (denominador mínimo de escala). + + + Maximum scale denominator + Denominador máximo da escala + + + Minimum scale + Escala mínima + + + No data value Non hai valor de datos - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {9p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {11p?} +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> @@ -35455,37 +36788,37 @@ p, li { white-space: pre-wrap; } 2 - + General Xeral - + Display name Mostrar nome - + Layer source Fonte da capa - + Columns Columnas - + Rows Ringleiras - + No Data Ningún dato - + Scale dependent visibility Visibilidade dependendo da escala @@ -35498,53 +36831,53 @@ p, li { white-space: pre-wrap; } Mínimo - + Coordinate reference system Sistema de Referencia de Coordenadas - - + + Specify the coordinate reference system of the layer's geometry. Especifique o sistema de referencia de coordenadas da xeometría da capa. - + Specify... Especifique... - + Thumbnail Miniatura - + Legend Lenda - + Palette Paleta - + Metadata Metadatos - + Title Título - + Abstract Resumo - + Pyramids Pirámides @@ -35603,12 +36936,12 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p></td></tr></table></body></html> - + Notes Notas - + Pyramid resolutions Resolucións das pirámides @@ -35677,68 +37010,66 @@ p, li { white-space: pre-wrap; } Crear pirámides internamente se é posible - + Resampling method Método de remostraxe - + Average Media - + Oversampling - + Sobremostraxe - + Use original source no data value. Utilizar valores sen datos da fonte orixinal. - + No data value: Non hai valor de datos: - + Original data source no data value, if exists. Valor sen datos da fonte de datos orixinal, se existe. - + <src no data value> <src non hai valor de datos> - - + + Additional user defined no data value. Valor sen datos adicional definido polo usuario. - + Additional no data value Valor sen datos adicional - Less than: - Menor que: + Menor que: - More than or equal to: - Máis que ou igual a: + Máis que ou igual a: - + Nearest Neighbour Veciño máis cercano - + Build pyramids Construír pirámides @@ -35755,27 +37086,27 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> - + Overview format Formato da Vista Xeral - + External Externo - + Internal (if possible) Interno (de ser posible) - + External (Erdas Imagine) Externo (Erdas Imagine) - + Histogram Histograma @@ -35784,43 +37115,43 @@ p, li { white-space: pre-wrap; } Gardar como Imaxe... - + Restore Default Style Restaurar estilo por defecto - + Save As Default Gardar como Predeterminado - + Load Style ... Cargar estilo... - + Style mRendererTab Estilo - + Render type Tipo de renderizado - + Resampling Remostraxe - + Zoomed in Achegado - + Zoomed out Afastado @@ -35893,12 +37224,12 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"><br /></p></td></tr></table></body></html> - + Pipe Tubo - + Save Style ... Gardar estilo... @@ -36250,7 +37581,7 @@ p, li { white-space: pre-wrap; } Cumulative count cut - + Corte de conta acumulativa @@ -36376,32 +37707,32 @@ p, li { white-space: pre-wrap; } Unknown - Descoñecido + Descoñecido User defined - + Definido polo usuario Estimated - + Estimado Exact - Exacto + Exacto min / max - + mín /máx of - + de @@ -36506,77 +37837,77 @@ p, li { white-space: pre-wrap; } Engadir resultado ó proxecto - + Illumination Iluminación - + Azimuth (horizontal angle) Azimut (ángulo horizontal) - + Vertical angle Ángulo vertical - + Relief colors Cores de relevo - + Create automatically Crear automaticamente - + Export distribution... Exportar distribución... - + Up Arriba - + Down Abaixo - + + + - + - - - + Lower bound Límite máis baixo - + Upper bound Límite superior - + Color Cor - + Export colors... Exportar cores... - + Import colors... Importar cores... @@ -36671,7 +38002,7 @@ p, li { white-space: pre-wrap; } - + Filter Filtro @@ -36717,24 +38048,24 @@ p, li { white-space: pre-wrap; } Símbolo - + Error Erro - + Filter expression parsing error: Erro de procesamento da expresión do filtro: - + Evaluation error Erro de avaliación - + Filter returned %n feature(s) number of filtered features @@ -36888,109 +38219,149 @@ p, li { white-space: pre-wrap; } QgsRuleBasedRendererV2Model - + (no filter) (sen filtro) - + + <li><nobr>%1 features also in rule %2</nobr></li> + <li><nobr>%1 entidades tamén en norma %2</nobr></li> + + + Label Etiqueta - + Rule Norma - + Min. scale Mínimo da escala - + Max.scale Máximo da escala + + + Count + Contar + + + + Duplicate count + Duplicar conta + + + + Number of features in this rule. + Número de entidades nesta norma. + + + + Number of features in this rule which are also present in other rule(s). + Número de entidades nesta norma que tamén están presentes noutra(s) norma(s). + QgsRuleBasedRendererV2Widget - + Add Engadir - + Edit Editar - + Remove Eliminar - + Refine current rules Refinar normas actuais - + + Count features + Contar entidades + + + Rendering order... Orde de renderizado... - + Add scales to rule Engadir escalas á norma - + Add categories to rule Engadir categorías á norma - + Add ranges to rule Engadir rangos á norma - + Refine a rule to categories Refinar unha norma a categorías - + Refine a rule to ranges Refinar unha norma a rangos - - + + Scale refinement Refinamento da escala - + Parent rule %1 must have a symbol for this operation. A norma base %1 debe ter un símbolo para esta operación. - + Please enter scale denominators at which will split the rule, separate them by commas (e.g. 1000,5000): Introduza denominadores de escala nos cales a norma quebrará, separándoos por comas (por exemplo 1000,5000): - + Error Erro - + "%1" is not valid scale denominator, ignoring it. O "%1" non é un denominador de escala válido, ignorádoo. + + + Calculating feature count. + Calculando conta de entidades. + + + + Abort + Cancelar + QgsRunProcess @@ -37187,7 +38558,7 @@ p, li { white-space: pre-wrap; } QgsSVGFillSymbolLayerWidget - + Select svg texture file Seleccione ficheiro de textura svg @@ -37421,22 +38792,32 @@ O erro foi: QgsSingleBandGrayRendererWidget - + + Black to white + Negro a branco + + + + White to black + Branco a negro + + + No enhancement Sen melloras - + Stretch to MinMax Despregar a MínMáx - + Stretch and clip to MinMax Despregar e recortar ó MínMáx - + Clip to MinMax Recortar ó MínMáx @@ -37492,32 +38873,37 @@ O erro foi: Max Máx + + + Color gradient + Gradiente de cor + QgsSingleBandPseudoColorRendererWidget - - - + + + Discrete Discreto - - - - + + + + Linear Liñal - - + + Exact Exacto @@ -37533,33 +38919,33 @@ O erro foi: Personaliza-la entrada e cores do mapa - + Load Color Map Cargar Cor do Mapa - + The color map for band %1 failed to load Fallou a carga da cor do mapa para a banda %1 - + Open file Abrir arquivo - - + + Textfile (*.txt) Ficheiro de texto (*.txt) - + Import Error Erro de importación - + The following lines contained errors @@ -37568,12 +38954,12 @@ O erro foi: - + Read access denied Denegado o acceso de lectura - + Read access denied. Adjust the file permissions and try again. @@ -37582,22 +38968,22 @@ O erro foi: - + Save file Gardar ficheiro - + QGIS Generated Color Map Export File QGIS xenerou un ficheiro de exportación de cor de mapa - + Write access denied Denegado o acceso de escritura - + Write access denied. Adjust the file permissions and try again. @@ -37653,12 +39039,12 @@ O erro foi: Add values manually - Engadir valores manualmente + Engadir valores manualmente Remove selected row - + Eliminar a ringleira seleccionada @@ -37698,17 +39084,17 @@ O erro foi: Colors - Cores + Cores Min - Mín + Mín Max - Máx + Máx @@ -37718,12 +39104,17 @@ O erro foi: Min / max origin: - + Orixe mín / máx: Min / Max origin - + Orixe mín / máx + + + + Invert colors order + Invertir orde de cores Color ramp @@ -37982,7 +39373,7 @@ O erro foi: Enable snapping on intersection - + Permitir autoaxuste na intersección @@ -38026,24 +39417,24 @@ O erro foi: - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + SQLite error: %2 SQL: %1 Erro SQLite: %2 @@ -38059,19 +39450,19 @@ SQL: %1 - - - - - - - - - - - - - + + + + + + + + + + + + + SpatiaLite SpatiaLite @@ -38079,12 +39470,12 @@ SQL: %1 - - - - - - + + + + + + unknown cause Causa descoñecida @@ -38094,7 +39485,7 @@ SQL: %1 Erro SQLite adquirindo entidade: %1 - + FAILURE: Field %1 not found. FALLO: Campo %1 non atopado. @@ -39408,7 +40799,7 @@ As actualizacións dos valores de xeometría serán desactivadas, e a acción da Import style(s) - + Importar estilo(s) @@ -39423,7 +40814,7 @@ As actualizacións dos valores de xeometría serán desactivadas, e a acción da Export style(s) - + Exportar estilo(s) @@ -39715,106 +41106,106 @@ Overwrite? nova rampla aleatoria - + Color Ramp Name Nome da rampla de cor - + Please enter a name for new color ramp: Introduza un nome para a nova rampla de cor: - + Save Color Ramp Gardar rampla de cor - + Cannot save color ramp without name. Enter a name. Non se pode garda-la rampla de cor sen un nome. Introduza un nome. - + Save color ramp Gardar rampla de cor - + Color ramp with name '%1' already exists. Overwrite? A rampla de cor co nome '%1' xa existe. ¿Sobreescribir? - - + + Invalid Selection Selección inválida - + The parent group you have selected is not user editable. Kindly select a user defined group. O grupo matriz seleccionado non é editable polo usuario. Seleccione un grupo definido polo usuario. - + Operation Not Allowed Operación non permitida - + Creation of nested smart groups are not allowed Select the 'Smart Group' to create a new group. A creación de grupos intelixentes aniñados non está permitida Seleccione o 'Grupo Intelixente' para crear un novo grupo. - + Invalid selection Selección inválida - + Cannot delete system defined categories. Kindly select a group or smart group you might want to delete. Non pode elimina-las categorías definidas polo sistema. Seleccione un grupo ou grupo intelixente que queira eliminar. - + Error! ¡Erro! - + New group could not be created. There was a problem with your symbol database. O novo grupo non puido ser creado. Houbo un problema coa base de datos de símbolos. - + Database Error Erro de base de datos - + There was a problem with the Symbols database while regrouping. Houbo un problema coa base de datos de Símbolos cando se reagrupaban. - + You have not selected a Smart Group. Kindly select a Smart Group to edit. Non seleccionou ningún Grupo Intelixente. Seleccione un Grupo Intelixente a editar. - + Database Error! ¡Erro de base de datos! - + There was some error while editing the smart group. Houbo un erro mentras se editaba o grupo intelixente. @@ -39867,12 +41258,12 @@ Houbo un problema coa base de datos de símbolos. Rampla de cor - + Add item Engadir elemento - + Share Compartir @@ -39886,17 +41277,17 @@ Houbo un problema coa base de datos de símbolos. Engadir - + Edit item Editar elemento - + Edit Editar - + Remove item Eliminar elemento @@ -39913,15 +41304,66 @@ Houbo un problema coa base de datos de símbolos. Importar... + + QgsSvgAnnotationDialog + + + SVG annotation + Anotación SVG + + + + Delete + Eliminar + + + + Select SVG file + Seleccione ficheiro SVG + + + + SVG files + Ficheiros SVG + + + html + html + + + + QgsSvgCache + + + SVG request failed [error: %1 - url: %2] + + + + + + SVG + + + + + SVG request error [status: %1 - reason phrase: %2] + + + + + %1 of %2 bytes of svg image downloaded. + + + QgsSvgMarkerSymbolLayerV2Widget - + Select SVG file Seleccione ficheiro SVG - + SVG files Ficheiros SVG @@ -40181,19 +41623,18 @@ Houbo un problema coa base de datos de símbolos. QgsTextAnnotationDialog - + Delete Eliminar - + Select font color Seleccione cor da fonte - Select background color - Seleccione cor do fondo + Seleccione cor do fondo @@ -40214,9 +41655,8 @@ Houbo un problema coa base de datos de símbolos. I - Background color - Cor de fondo + Cor de fondo @@ -40843,18 +42283,38 @@ Should the existing classes be deleted before classification? QgsVectorGradientColorRampV2Dialog - - - - + + Discrete + Discreto + + + + Continous + + + + + Gradient file : %1 + + + + + License file : %1 + + + + + + + Offset of the stop Desprazamento da parada - - - - + + + + Please enter offset in percents (%) of the new stop Introduza desprazamentos en porcentaxes (%) da nova parada @@ -40883,32 +42343,46 @@ Should the existing classes be deleted before classification? Cor 2 - + + Type + Tipo + + + Multiple stops Múltiples paradas - + Add stop Engadir parada - + Remove stop Eliminar parada - + Color Cor - + + Offset (%) + + + + + Information + Información + + Offset - Desprazamento + Desprazamento - + Preview Vista previa @@ -40916,42 +42390,52 @@ Should the existing classes be deleted before classification? QgsVectorLayer - + + Updating feature count for layer %1 + Actualizando contador de entidade para a capa %1 + + + + Abort + Cancelar + + + Unknown renderer Renderizador descoñecido - + No renderer object Sen obxecto renderizado - + Classification field not found Campo de clasificación non atopado - + renderer failed to save O renderizador fallou ó gardar - + no renderer Sen renderizador - + ERROR: no provider ERRO: sen provedor - + ERROR: layer not editable ERRO: capa non editable - + SUCCESS: %n attribute(s) deleted. deleted attributes count @@ -40960,7 +42444,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n attribute(s) not deleted. not deleted attributes count @@ -40969,7 +42453,7 @@ Should the existing classes be deleted before classification? - + SUCCESS: %n attribute(s) added. added attributes count @@ -40978,7 +42462,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n new attribute(s) not added not added attributes count @@ -40987,17 +42471,17 @@ Should the existing classes be deleted before classification? - + SUCCESS: attribute %1 was added. LOGRO: atributo %1 foi engadido. - + ERROR: attribute %1 not added ERRO: atributo %1 non engadido - + SUCCESS: %n attribute value(s) changed. changed attribute values count @@ -41006,7 +42490,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n attribute value change(s) not applied. not changed attribute values count @@ -41015,7 +42499,7 @@ Should the existing classes be deleted before classification? - + SUCCESS: %n feature(s) added. added features count @@ -41024,7 +42508,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n feature(s) not added. not added features count @@ -41033,7 +42517,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n feature(s) not added - provider doesn't support adding features. not added features count @@ -41042,7 +42526,7 @@ Should the existing classes be deleted before classification? - + SUCCESS: %n geometries were changed. changed geometries count @@ -41051,7 +42535,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n geometries not changed. not changed geometries count @@ -41060,7 +42544,7 @@ Should the existing classes be deleted before classification? - + SUCCESS: %n feature(s) deleted. deleted features count @@ -41069,7 +42553,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n feature(s) not deleted. not deleted features count @@ -41078,123 +42562,123 @@ Should the existing classes be deleted before classification? - + Provider errors: Erros de provedor: - + Commit errors: %1 - Cometer erros: + Erros cometidos: %1 - + General: Xeral: - + Layer comment: %1 Comentario de capa: %1 - + Storage type of this layer: %1 Tipo de almacenamento desta capa: %1 - + Source for this layer: %1 Fote para esta capa: %1 - + Geometry type of the features in this layer: %1 Tipo de xeometrías das entidades desta capa: %1 - + The number of features in this layer: %1 O número de entidades nesta capa: %1 - + Editing capabilities of this layer: %1 Editar capacidades desta capa: %1 - + Extents: Extensións: - + In layer spatial reference system units : Unidades do sistema de referencia espacial na capa: - - + + xMin,yMin %1,%2 : xMax,yMax %3,%4 xMín,yMín %1,%2 : xMáx,yMáx %3,%4 - + unknown extent Extensión descoñecida - - + + In project spatial reference system units : Unidades do sistema de referencia espacial no proxecto: - + Layer Spatial Reference System: Sistema de Referencia Espacial da Capa: - + Project (Output) Spatial Reference System: Sistema de Referencia Espacial (de saída) do Proxecto: - + (Invalid transformation of layer extents) (Transformación inválida da extensión da capa) - + Attribute field info: Información do campo atributo: - + Field Campo - + Type Tipo - + Length Lonxitude - + Precision Precisión - + Comment Comentario @@ -41202,209 +42686,179 @@ Should the existing classes be deleted before classification? QgsVectorLayerProperties - Overlay - Solapar + Solapar - + Layer Properties - %1 Propiedades de capa - %1 - Id - Id + Id - Name - Nome + Nome - Type - Tipo + Tipo - Length - Lonxitude + Lonxitude - Precision - Precisión + Precisión - Comment - Comentario + Comentario - Edit widget - Editar widget + Editar widget - Alias - Alias + Alias - - + + Stop editing mode to enable this. Para modo edición para activar isto. - Name conflict - Conflito de nome + Conflito de nome - The attribute could not be inserted. The name already exists in the table. - O atributo no puido ser insertado. O nome xa existe na táboa. + O atributo no puido ser insertado. O nome xa existe na táboa. - Added attribute - Atributo engadido + Atributo engadido - Deleted attribute - Atributo eliminado + Atributo eliminado - + Transparency: %1% Transparencia: %1% - - + + Single Symbol Símbolo único - - + + Graduated Symbol Símbolo graduado - - + + Continuous Color Cor continua - - + + Unique Value Valores único - + Insert expression Inserte expresión - + This button opens the query builder and allows you to create a subset of features to display on the map canvas rather than displaying all features in the layer Este botón abre o creador de consultas e permítelle crear un subconxunto de entidades a amosar na vista do mapa mellor que amosar tódalas entidades na capa - + The query used to limit the features in the layer is shown here. To enter or modify the query, click on the Query Builder button A consulta utilizada para limita-las entidades na capa é amosada aquí. Para exexultar ou moficicar a consulta, clique no botón Constructor de Consultas - Line edit - Editar liña + Editar liña - Unique values - Valores únicos + Valores únicos - Unique values editable - Valores únicos etitables + Valores únicos etitables - Classification - Clasificación + Clasificación - Value map - Mapa de valores + Mapa de valores - Edit range - Editar rango + Editar rango - Slider range - Rango deslizante + Rango deslizante - Dial range - Marcar rango + Marcar rango - File name - Nome de ficheiro + Nome de ficheiro - Enumeration - Enumeración + Enumeración - Immutable - Inmutable + Inmutable - Hidden - Oculto + Oculto - Checkbox - caixa de verificación + caixa de verificación - Text edit - Editar texto + Editar texto - Calendar - Calendario + Calendario - Value relation - Relación de valores + Relación de valores - UUID generator - Xenerador de UUID + Xenerador de UUID Text diagram @@ -41419,54 +42873,53 @@ Should the existing classes be deleted before classification? Unidades do mapa - - + + Spatial Index Índice espacial - + Creation of spatial index successful A creación do índice espacial foi satisfactoria - + Creation of spatial index failed Fallou a creación do índice espacial - - + + Default Style Estilo por defecto - + Saved Style Estilo gardado - Select edit form - Seleccione forma a editar + Seleccione forma a editar - + Symbology Simboloxía - + Do you wish to use the new symbology implementation for this layer? ¿Desexa utiliza-la nova simboloxía para esta capa? - + Save Style Gardar estilo - + Save Style... Gardar estilo... @@ -41487,38 +42940,37 @@ Should the existing classes be deleted before classification? Arredor do punto - + Load layer properties from style file Cargar propiedades da capa dende ficheiro de estilo - - - + + + QGIS Layer Style File Ficheiro de estilo de capa de QGIS - - - + + + SLD File Ficheiro SLD - + Load Style Cargar estilo - + Save layer properties as style file Gardar propiedades de capa como ficheiro de estilo - UI file - Ficheiro UI + Ficheiro UI mm @@ -41624,51 +43076,67 @@ Should the existing classes be deleted before classification? Campos - New column - Nova columna + Nova columna - Ctrl+N - Ctrl+N + Ctrl+N - Delete column - Eliminar columna + Eliminar columna - Ctrl+X - Ctrl+X + Ctrl+X - Toggle editing mode - Activar/Desactivar modo edición + Activar/Desactivar modo edición - - Click to toggle table editing - Clique para activar/desactivar edición de táboa + Clique para activar/desactivar edición de táboa - Field calculator - Calculadora de campo + Calculadora de campo - + General Xeral - + Options Opcións + + Maximum scale (minimum scale denominator). + Escala máxima (denominador mínimo de escala). + + + Minimum scale: + Escala mínima: + + + Minimum scale denominator. + Denominador mínimo da escala. + + + Maximum scale: + Escala máxima: + + + Minimum scale (maximum scale denominator). + Escala mínima (denominador máximo de escala). + + + Set current + Fixar actual + Display name Mostrar nome @@ -41690,48 +43158,45 @@ Should the existing classes be deleted before classification? Utilice este control para establecer que campo é situado no nivel máis alto da caixa de diálogo de Identificar Resultados. - Edit UI - Editar UI + Editar UI - ... - ... + ... - + Create Spatial Index Crear índice espacial - - + + Specify the coordinate reference system of the layer's geometry. Especifique o sistema de referencia de coordenadas da xeometría da capa. - + Specify CRS Especifique SRC - + Update Extents Actualizar extensión - Init function - Función Init + Función Init - + CRS SRC - + Use scale dependent rendering Utilice renderizado dependendo da escala @@ -41744,47 +43209,47 @@ Should the existing classes be deleted before classification? Mínimo - + Subset Subconxunto - + Query Builder Constructor de Consultas - + Provider-specific options Opcións específicas do provedor - + Encoding Codificación - + Display Visualizar - + Legend display text Texto da lenda a visualizar - + Map Tip display text Texto dos consellos do mapa a visualizar - + Field Campo - + HTML HTML @@ -41794,82 +43259,118 @@ Should the existing classes be deleted before classification? Etiquetas (obsoleto) - Less than: - Menos que: + Menos que: - More than or equal to: - Máis que ou igual a: + Máis que ou igual a: + + + + + Minimum scale, i.e. maximum scale denominator. This limit is exclusive, that means the layer will not be displayed on this scale. + - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Minimum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(exclusive)</p></body></html> + + + + + + Maximum scale, i.e. minimum scale denominator. This limit is inclusive, that means the layer will be displayed on this scale. + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Maximum scale</p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(inclusive)</p></body></html> + + + + + + Current + Actual + + + Inserts an expression into the action Inserta unha expresión na acción - + Insert expression... Inserte expresión... - + The valid attribute names for this layer Nomes de atributo válidos para esta capa - + Inserts the selected field into the action Introduce o campo seleccionado na acción - + Insert field Introduza campo - + Metadata Metadatos - + Title Título - + Abstract Resumo - + Actions Accións - + Joins Unións - + Join layer Xuntar capa - + Join field Xuntar campo - + Target field Campo destino - + Diagrams Diagramas @@ -41981,32 +43482,31 @@ Should the existing classes be deleted before classification? QgsVectorLayerSaveAsDialog - SpatiaLite - SpatiaLite + SpatiaLite - + Layer CRS SRC da capa - + Project CRS SRC do Proxecto - + Selected CRS SRC seleccionado - + Save layer as... Gardar capa como... - + Select the coordinate reference system for the vector file. The data points will be transformed from the layer coordinate reference system. Seleccione o sistema de referencia de coordenadas para o ficheiro vectorial. Os puntos de datos serán transformados ó sistema de referencia de coordenadas da capa. @@ -42197,17 +43697,17 @@ Should the existing classes be deleted before classification? QgsWFSProvider - + unknown descoñecido - + received %1 bytes from %2 recibidos %1 bytes dende %2 - + Error Erro @@ -42915,62 +44415,57 @@ A resposta foi: QgsWcsProvider - + Cannot describe coverage Non se pode describi-la cobertura - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - + + WCS WCS - + Coverage not found Non se atopou a cobertura - + Cannot calculate extent Non se pode calcula-la extensión - + Cannot get test dataset. Non se pode obte-lo conxunto de datos de proba. - + Received coverage has wrong extent %1 (expected %2) - + A cobertura recibida ten unha extensión errónea%1 (agardada %2) - + Rotating raster Rotación de ráster - + Block read OK Lectura de bloque conforme @@ -42979,88 +44474,92 @@ A resposta foi: A cobertura recibida ten un tamaño erróneo - + Received coverage has wrong size %1 x %2 (expected %3 x %4) A cobertura recibida ten un tamaño erróneo %1 x %2 (agardado %3 x %4) - + Getting map via WCS. Adquirindo mapa vía WCS. - + Map request error (Status: %1; Reason phrase: %2; URL:%3) Erro de petición de mapa (Estado:%1, Frase de razón:%2, URL: %3) - - + Map request error (Title:%1; Error:%2; URL: %3) Erro de petición de mapa (Título:%1, Erro:%2, URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) Erro de petición de mapa (Estado: %1, Resposta: %2, URL: %3) - + + Map request error:<br>Title: %1<br>Error: %2<br>URL: <a href='%3'>%3</a>) + Erro de petición de mapa:<br>Título:%1<br> Erro:%2<br> URL: <a href='%3'>%3</a>) + + + Cannot find boundary in multipart content type Non se pode atopa-lo límite no tipo de contido multiparte - + Expected 2 parts, %1 received Agardadas 2 partes, %1 recibido - + More than 2 parts (%1) received Máis de 2 partes (%1) recibido - + Map request error (Response: %1; URL:%2) Erro de petición de mapa (Resposta: %1, URL: %2) - + Content-Transfer-Encoding %1 not supported Codificación do contido transferido %1 non soportado - + No data received Non se recibiu ningún dato - + Cannot create memory file Non se pode crear ficheiro de memoria - + Map request failed [error:%1 url:%2] Fallou a petición de mapa [erro:%1 url:%2] - + Not logging more than 100 request errors. Non rexistrar máis de 100 erros de petición. - + %1 of %2 bytes of map downloaded. %1 de %2 bytes de mapa descargados. - + Dom Exception Excepción Dom - + Could not get WCS Service Exception at %1: %2 at line %3 column %4 Response was: @@ -43073,133 +44572,133 @@ A resposta foi: %5 - + Request contains a format not offered by the server. A petición contén un formato non ofertado polo servidor. - + Request is for a Coverage not offered by the service instance. A petición é para unha Cobertura non ofrecida pola instancia de servicio. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. Valor (opcional) do parámetro UpdateSequence na petición GetCapabilities é igual ó actual valor do número de secuencia actualizada do servizo de metadatos. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. Valor (opcional) do parámetro UpdateSequence na petición GetCapabilities é maior que o actual valor do número de secuencia actualizada do servizo de metadatos. - + Request does not include a parameter value, and the server instance did not declare a default value for that dimension. A petición non inclúe un valor de parámetro, e a instancia do servidor non declarou un valor predeterminado para esa dimensión. - + Request contains an invalid parameter value. A petición contén un valor de parámetro inválido. - + No other exceptionCode specified by this service and server applies to this exception. Ningunha outra exceptionCode especificada por este servicio e servidor se aplica a esta excepción. - + Operation request contains an output CRS that can not be used within the output format. A petición de operación contén un SRC de saída que non pode ser utilizado dentro do formato de saída. - + Operation request specifies to "store" the result, but not enough storage is available to do this. A petición de operación require o "almacenamento" do resultado, pero non hai espazo abondo dispoñible para facer isto. - + (No error code was reported) (Ningún erro de código foi reportado) - + (Unknown error code) (Erro de código descoñecido) - + The WCS vendor also reported: O vendedor WCS tamén informou: - + composed error message '%1'. mensaxe de erro composto '%1'. - - + + Property Propiedade - - + + Value Valor - + Name (identifier) Nome (identificador) - - + + Title Título - - + + Abstract Resumo - + Fixed Width Ancho fixo - + Fixed Height Alto fixo - + Native CRS SRC nativo - + Native Bounding Box Caixa delimitadora nativa - + WGS 84 Bounding Box Caixa delimitadora WGS 84 - - + + Available in CRS Dispoñible no SRC - - + + (and %n more) crs @@ -43208,74 +44707,74 @@ A resposta foi: - - + + Available in format Dispoñible no formato - - + + Coverages Coberturas - + Cache Stats Estadísticas de caché - + Server Properties Propiedades do servidor - + Keywords Palabras clave - + Online Resource Recurso en liña - + Contact Person Persoa de Contacto - + Fees Taxas - + Access Constraints Restricións de acceso - + Image Formats Formatos de imaxe - + GetCapabilitiesUrl GetCapabilitiesUrl - + Get Coverage Url Obter Url de cobertura - + &nbsp;<font color="red">(advertised but ignored)</font> &nbsp;<font color="red">(avisado pero ignorado)</font> - + And %1 more coverages E %1 máis coberturas @@ -43291,7 +44790,7 @@ A resposta foi: QgsWmsProvider - + Getting map via WMS. Adquirindo mapa vía WMS. @@ -43300,8 +44799,8 @@ A resposta foi: Adquirindo mosaico vía WMs. - - + + %n tile requests in background tile request count @@ -43310,8 +44809,8 @@ A resposta foi: - - + + , %n cache hits tile cache hits @@ -43320,8 +44819,8 @@ A resposta foi: - - + + , %n cache misses. tile cache missed @@ -43330,8 +44829,8 @@ A resposta foi: - - + + , %n errors. errors @@ -43340,23 +44839,23 @@ A resposta foi: - + image is NULL NULA imaxe é NULL - + unexpected image size Tamaño de imaxe inesperado - + Tile request error Erro de solicitude de mosaico - + Status: %1 Reason phrase: %2 Estado: %1 @@ -43367,8 +44866,8 @@ Frase de razón: %2 resposta: %1 - - + + Returned image is flawed [%1] A imaxe retornada é defectuosa [%1] @@ -43381,51 +44880,51 @@ Frase de razón: %2 Resposta: %1 - + empty capabilities document documento de capacidades baleiro - + Tried URL: %1 URL probada: %1 - + Capabilities request redirected. Petición de capacidades redireccionada. - + empty of capabilities: %1 baleiro de capacidades: %1 - + Download of capabilities failed: %1 Fallou a descarga de capacidades: %1 - + %1 of %2 bytes of capabilities downloaded. %1 de %2 bytes de capacidades descargadas. - + %1 of %2 bytes of map downloaded. %1 de %2 bytes de mapa descargados. - - - + + + Dom Exception Excepción Dom - + Could not get WMS capabilities: %1 at line %2 column %3 This is probably due to an incorrect WMS Server URL. Response was: @@ -43438,7 +44937,7 @@ A resposta foi: %4 - + Could not get WMS capabilities in the expected format (DTD): no %1 or %2 found. This might be due to an incorrect WMS Server URL. Tag:%3 @@ -43451,7 +44950,7 @@ A resposta foi: %4 - + Could not get WMS Service Exception at %1: %2 at line %3 column %4 Response was: @@ -43464,82 +44963,82 @@ A resposta foi: %5 - + Request contains a format not offered by the server. A petición contén un formato non ofertado polo servidor. - + Request contains a CRS not offered by the server for one or more of the Layers in the request. A petición contén un SRC no ofertado polo servidor para unha ou máis das capas da peticion. - + Request contains a SRS not offered by the server for one or more of the Layers in the request. A petición contén un SRS no ofertado polo servidor para unha ou máis das capas da peticion. - + GetMap request is for a Layer not offered by the server, or GetFeatureInfo request is for a Layer not shown on the map. A petición GetMap é para unha capa non ofertada polo servidor, ou ben a petición GetFeatureInfo é para unha capa non amosada no mapa. - + Request is for a Layer in a Style not offered by the server. A petición é para unha capa nun Estilo non ofertado polo servidor. - + GetFeatureInfo request is applied to a Layer which is not declared queryable. A petición GetFeatureInfo é aplicada a unha capa que non está declarada consultable. - + GetFeatureInfo request contains invalid X or Y value. A petición GetFeatureInfo contén valor inválido X ou Y. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. Valor (opcional) do parámetro UpdateSequence na petición GetCapabilities é igual ó actual valor do número de secuencia actualizada do servizo de metadatos. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. Valor (opcional) do parámetro UpdateSequence na petición GetCapabilities é maior que o actual valor do número de secuencia actualizada do servizo de metadatos. - + Request does not include a sample dimension value, and the server did not declare a default value for that dimension. A petición non inclúe unha mostra de valor da dimensión, e o servidor non declara un valor por defecto para esa dimensión. - + Request contains an invalid sample dimension value. A petición contén unha mostra de valor da dimensión inválida. - + Request is for an optional operation that is not supported by the server. A petición é para unha operación opcional que non está soportada polo servidor. - + (No error code was reported) (Ningún erro de código foi reportado) - + (Unknown error code) (Erro de código descoñecido) - + The WMS vendor also reported: O vendedor WMS tamén informou: - + composed error message '%1'. mensaxe de erro composto '%1'. @@ -43552,109 +45051,109 @@ A resposta foi: sen extensión para capa - - - - + + + + Property Propiedade - - - - + + + + Value Valor - + Visibility Visibilidade - + Visible Visible - + Hidden Oculto - - - + + + Title Título - - - + + + Abstract Resumo - + Can Identify Poder Identificar - - - - + + + + Yes Si - - - - + + + + No Non - + Can be Transparent Pode ser transparente - + Can Zoom In Poder Achegar - + Cascade Count Contar en fervenza - + Fixed Width Ancho fixo - + Fixed Height Alto fixo - + WGS 84 Bounding Box Caixa delimitadora WGS 84 - - + + Available in CRS Dispoñible no SRC - + (and %n more) crs @@ -43663,73 +45162,73 @@ A resposta foi: - + Available in style Dispoñible no estilo - + Tile Layer Properties Propiedades da Capa de Mosaico - + Tile Layer Count Contador de capa de mosaico - + GetTileUrl GetTileUrl - + Tile templates Modelos de mosaico - + FeatureInfo templates Modelos FeatureInfo - + WMTS WMTS - + WMS-C WMS-C - + Available Styles Estilos dispoñibles - + Available Tilesets Mosaicos dispoñibles - + Map getfeatureinfo error %1: %2 Erro de mapa getfeatureinfo %1: %2 - + ERROR: GetFeatureInfo failed ERRO: fallou GetFeatureInfo - + Map getfeatureinfo error: %1 [%2] Erro de mapa getfeatureinfo: %1 [%2] - - + + Name Nome @@ -43738,147 +45237,182 @@ A resposta foi: o número de capas e estilos non cadra - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + WMS WMS - - + + Server Properties Propiedades do servidor - - + + Selected Layers Capas seleccionadas - - + + Other Layers Outras capas - + Tileset Properties Propiedades do mosaico - + Cache Stats Estadísticas de caché - + + Cannot parse URI + Non se pode analiza-la URI + + + + Cannot calculate extent + Non se pode calcula-la extensión + + + + Cannot set CRS + Non se pode fixa-lo SRC + + + Number of layers and styles don't match O número de capas e de estilos non cadra - + + Number of tile layers must be one + O número de capas de mosaico debe ser único + + + + Tile layer not found + Capa de mosaico non atopada + + + + Tile layer or tile matrix set not found + Non atopados capa de mosaico nin conxunto de grella de mosaicos + + + Getting tiles. Adquirindo mosaico. - + Tile request error (Title:%1; Error:%2; URL: %3) Erro de petición de mosaico (Título:%1, Erro:%2, URL: %3) - + Tile request error (Status:%1; Content-Type:%2; Length:%3; URL: %4) Erro de petición de mosaico (Estado:%1, Contido-Tipo:%2, Lonxitude:%3, URL: %4) - + Tile request failed [error:%1 url:%2] Erro de petición de mosaico [erro:%1, url:%2] - - + + Not logging more than 100 request errors. Non rexistrar máis de 100 erros de petición. - + Map request error (Status: %1; Reason phrase: %2; URL:%3) Erro de petición de mapa (Estado:%1, Frase de razón:%2, URL: %3) - + Map request error (Title:%1; Error:%2; URL: %3) Erro de petición de mapa (Título:%1, Erro:%2, URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) Erro de petición de mapa (Estado: %1, Resposta: %2, URL: %3) - + Map request failed [error:%1 url:%2] Fallou a petición de mapa [erro:%1 url:%2] - + + Extent for layer %1 not found in capabilities + Extensión para a capa %1 non atopada nas capacidades + + + WMS Version Versión WMS - + Keywords Palabras clave - + Online Resource Recurso en liña - + Contact Person Persoa de Contacto - + Fees Taxas - + Access Constraints Restricións de acceso - + Image Formats Formatos de imaxe - + Identify Formats Identificar formatos - + Layer Count Contador de capa @@ -43887,28 +45421,28 @@ A resposta foi: Contador de mosaico - + GetCapabilitiesUrl GetCapabilitiesUrl - + GetMapUrl GetMapUrl - - + + &nbsp;<font color="red">(advertised but ignored)</font> &nbsp;<font color="red">(avisado pero ignorado)</font> - + GetFeatureInfoUrl GetFeatureInfoUrl - + Selected Seleccionado @@ -43917,12 +45451,12 @@ A resposta foi: Estilos - + CRS SRC - + Bounding Box Caixa delimitadora @@ -43931,37 +45465,35 @@ A resposta foi: Dispoñible en Resolucións - + Cache stats Estadísticas de caché - + Hits Acertosf - + Misses Perdas - + Errors Erros - Layer cannot be queried in plain text. - A capa non pode ser consultada en texto plano. + A capa non pode ser consultada en texto plano. - Layer cannot be queried. - A capa non pode ser consultada. + A capa non pode ser consultada. - + identify request redirected. pedido de identificación redireccionado. @@ -44320,35 +45852,47 @@ A resposta foi: SEXTANTE Analysis - Análise + Análise &SEXTANTE Toolbox - + Caixa de ferramentas &SEXTANTE &SEXTANTE Modeler - + Modelador &SEXTANTE &SEXTANTE History and log - + Historial e incidencias &SEXTANTE + + + &SEXTANTE toolbox + Caixa de ferramentas &SEXTANTE + + + &SEXTANTE modeler + Modelizador &SEXTANTE + + + &SEXTANTE history and log + Historial e incidencias &SEXTANTE &SEXTANTE options and configuration - + Opcións e configuración &SEXTANTE &SEXTANTE results viewer - + Visor de resultados &SEXTANTE &SEXTANTE help - + Axuda &SEXTANTE &About SEXTANTE - + Acerca de &SEXTANTE @@ -44824,36 +46368,65 @@ Descrición: %3 Listo + + SettingsDialog + + + Font + Fonte + + + + Size + Tamaño + + + + API file + Ficheiro API + + + + Browse + Buscar + + + + Use preloaded API file + Utilizar ficheiro API precargado + + SextanteToolbox SEXTANTE Toolbox - + Caixa de ferramentas SEXTANTE Click here to configure additional algorithm providers - + Clique aquí para configurar +provedores de algoritmos adicionais Execute - + Excutar Execute as batch process - + Executar como proceso de lotes Edit rendering styles for outputs - + Editar estilos de renderizado para saídas Warning - + Advertencia Recently used algorithms - + Algoritmos utilizados recentemente @@ -45026,10 +46599,35 @@ additional algorithm providers Please specify input field Especifique campo de entrada + + Please specify output shapefile + + Cancel Cancelar + + Geometry + Xeometría + + + Created output shapefile: +%1 +%2 + +Would you like to add the new layer to the TOC? + Creado shapefile de saída: +%1 +%2 + +¿Quere engadir a nova capa á caixa de contidos? + + + Error loading output shapefile: +%1 + + Feature Entidade @@ -46701,6 +48299,10 @@ O plugin non será activado. Difference Diferencia + + Eliminate sliver polygons + Eliminar polígonos esgazados + G&eometry Tools Ferramentas de X&eometría diff --git a/i18n/qgis_it.ts b/i18n/qgis_it.ts index 52fb096600c4..01121bbac939 100644 --- a/i18n/qgis_it.ts +++ b/i18n/qgis_it.ts @@ -830,6 +830,11 @@ sono stati ridotti a %2 dopo la semplificazione Press Ctrl+C to copy results to the clipboard Premi Ctrl+C per copiare i risultati negli appunti + + + Save errors location + Salva posizione errori + Sum line lengths Somma lunghezza linee @@ -4299,17 +4304,17 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Form - + Modulo Symbol layer type - Tipo layer del simbolo + Tipo layer del simbolo This layer doesn't have any editable properties - + Questo layer non ha proprietà modificabili @@ -5036,7 +5041,7 @@ Ctl (Cmd) increments by 15 deg. Add WCS Layer... - + Aggiungi layer WCS... @@ -5336,7 +5341,7 @@ Acts on currently active editable layer Check if your QGIS version is up to date (requires internet access) - Controlla se la versione di QGIS in uso è aggiornata (è necessario il collegamento internet) + Controlla se la versione di QGIS in uso è aggiornata (richiede il collegamento internet) @@ -6494,12 +6499,12 @@ la cronologia dei comandi ? meters - metri + metri feet - piedi + piedi @@ -6507,12 +6512,12 @@ la cronologia dei comandi ? degrees - gradi + gradi <unknown> - + <sconosciuto> @@ -7577,7 +7582,7 @@ Errore(%2): %3 Imported from GDAL - + Importato da GDAL @@ -8893,7 +8898,7 @@ Stai vedendo questo messaggio perché probabilmente non hai settato la variabile Building pyramids failed - write access denied - + Errore nella creazione delle piramidi - scrittura non consentita @@ -9809,7 +9814,7 @@ Ignora sempre questi errori? Security warning: - + Avviso di sicurezza: @@ -9819,7 +9824,7 @@ Ignora sempre questi errori? Enable - + Abilita @@ -9877,7 +9882,7 @@ Ignora sempre questi errori? Vector - Vettore + Vettore @@ -9917,7 +9922,7 @@ Ignora sempre questi errori? WCS - + WCS @@ -9959,7 +9964,7 @@ Ignora sempre questi errori? Layer labeling settings - Impostazione etichettatura vettore + Impostazioni etichettatura vettore @@ -11245,7 +11250,7 @@ L'errore è: %2 No filter - + Nessun filtro @@ -11372,7 +11377,7 @@ Questo è il widget predefinito per le operazioni di modifica. Allow multiple selections - + Consenti selezioni multiple @@ -11768,12 +11773,12 @@ Database:%2 Add a directory - + Aggiungi cartella Add directory to favourites - + Aggiungi la cartella ai preferiti @@ -12095,12 +12100,12 @@ Should the existing classes be deleted before classification? Panels - Pannelli + Pannelli Toolbars - Barre degli strumenti + Barre degli strumenti @@ -12154,7 +12159,7 @@ Should the existing classes be deleted before classification? <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the - + <p>La funziona di esportazione SVG in QGIS ha diversi problemi causati da bug e limitazioni nel @@ -12630,7 +12635,7 @@ Should the existing classes be deleted before classification? Add html - + Aggiungi html @@ -12713,7 +12718,7 @@ Should the existing classes be deleted before classification? General options - Opzioni generali + Opzioni generali @@ -12736,22 +12741,22 @@ Should the existing classes be deleted before classification? Form - + Modulo HTML - + HTML ... - ... + ... URL - URL + URL @@ -12891,7 +12896,7 @@ Should the existing classes be deleted before classification? Label rotation changed - + Rotazione dell'etichetta modificata @@ -12909,7 +12914,7 @@ Should the existing classes be deleted before classification? Rotation - Rotazione + Rotazione @@ -13582,7 +13587,7 @@ Should the existing classes be deleted before classification? Change... - Cambia ... + Cambia ... @@ -13892,12 +13897,12 @@ Should the existing classes be deleted before classification? km - + km m - + m @@ -13962,17 +13967,17 @@ Should the existing classes be deleted before classification? Map units - Unità mappa + Unità mappa Meters - Metri + Metri Feet - Piedi + Piedi @@ -14054,7 +14059,7 @@ Should the existing classes be deleted before classification? Scalebar unit changed - + Unità della barra di scala modificata @@ -14091,12 +14096,12 @@ Should the existing classes be deleted before classification? Segment size - + Dimensione del segmento Units - Unità + Unità @@ -14475,7 +14480,7 @@ Should the existing classes be deleted before classification? Html item added - + Elemento html aggiunto @@ -14488,7 +14493,7 @@ Should the existing classes be deleted before classification? Item moved - + Elemento spostato @@ -14890,7 +14895,7 @@ Should the existing classes be deleted before classification? Number of pages - + Numero di pagine @@ -15154,12 +15159,12 @@ Errore: %5 Name - Nome + Nome Info - Informazioni + Informazioni @@ -15167,12 +15172,12 @@ Errore: %5 colors - + colori continuous - + colore continuo @@ -15251,37 +15256,37 @@ and current file is [%3] License - + Licenza Palette - Tavolozza + Tavolozza Path - Percorso + Percorso Information - Informazioni + Informazioni Author(s) - + Autore/i Source - Sorgente + Sorgente Details - + Dettagli @@ -15814,22 +15819,22 @@ p, li { white-space: pre-wrap; } Error - Errore + Errore No active layer - + Nessun layer attivo Please select a raster layer - Scegli un raster + Scegli un raster Invalid raster layer - + Layer raster non valido @@ -15842,7 +15847,7 @@ p, li { white-space: pre-wrap; } Dialog - + Finestra di dialogo @@ -15852,12 +15857,12 @@ p, li { white-space: pre-wrap; } Interval X - Intervallo X + Intervallo X Interval Y - Intervallo Y + Intervallo Y @@ -15872,27 +15877,27 @@ p, li { white-space: pre-wrap; } Draw annotation - Scrivi le coordinate + Scrivi le coordinate Annotation direction - Direzione delle coordinate + Direzione delle coordinate Font... - Carattere... + Carattere... Distance to map frame - Distanza dal bordo della mappa + Distanza dal bordo della mappa Coordinate precision - Precisione delle coordinate + Precisione delle coordinate @@ -15902,12 +15907,12 @@ p, li { white-space: pre-wrap; } Offset X - Offset X + Offset X Offset Y - Offset Y + Offset Y @@ -15917,51 +15922,51 @@ p, li { white-space: pre-wrap; } Canvas Extents - + Estensione della mappa Active Raster Layer - + Raster attivo Line - Linea + Linea Marker - Indicatore + Indicatore Horizontal - Orizzontale + Orizzontale Vertical - Verticale + Verticale Horizontal and vertical - + Boundary direction - Direzione del confine + Direzione del confine Horizontal and Vertical - Orizzontale e verticale + Orizzontale e verticale @@ -16286,7 +16291,7 @@ p, li { white-space: pre-wrap; } Delimited Text - + Testo delimitato @@ -16488,7 +16493,8 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Note: the following lines were not loaded because QGIS was unable to determine values for the x and y coordinates: - + Nota: le seguenti linee non sono state caricate in quanto QGIS non è in grado di interpretare il valore delle coordinate x e y: + @@ -16496,32 +16502,32 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. No layer name - Layer senza nome + Layer senza nome Please enter a layer name before adding the layer to the map - Assegnare un nome al layer prima di aggiungerlo alla mappa + Assegnare un nome al layer prima di aggiungerlo alla mappa Choose a delimited text file to open - Scegli un file di testo delimitato da aprire + Scegli un file di testo delimitato da aprire Text files - File di testo + File di testo Well Known Text files - File Well Known Text + File Well Known Text All files - Tutti i file + Tutti i file @@ -16529,182 +16535,181 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Create a Layer from a Delimited Text File - Crea un vettore da un file di testo delimitato + Crea un vettore da un file di testo delimitato File Name - Nome file + Nome file Full path to the delimited text file - Percorso completo del file di testo delimitato + Percorso completo del file di testo delimitato Full path to the delimited text file. In order to properly parse the fields in the file, the delimiter must be defined prior to entering the file name. Use the Browse button to the right of this field to choose the input file. - Percorso completo del file di testo delimitato. Per definire i campi del file da analizzare occorre prima dichiarare il delimitatore e successivamente caricare i file. -Per selezionare il file da caricare utilizzare il bottone Sfoglia. + Percorso completo del file di testo delimitato. Per definire i campi del file da analizzare occorre prima dichiarare il delimitatore e successivamente caricare i file. Per selezionare il file da caricare utilizzare il bottone Sfoglia. Layer name - + Nome layer Name to display in the map legend - Nome da utilizzare nella legenda + Nome da utilizzare nella legenda Name displayed in the map legend - Nome visualizzato nella legenda + Nome visualizzato nella legenda Browse to find the delimited text file to be processed - Sfoglia il file system per trovare il file di testo delimitato da analizzare + Sfoglia il file system per trovare il file di testo delimitato da analizzare Use this button to browse to the location of the delimited text file. This button will not be enabled until a delimiter has been entered in the <i>Delimiter</i> box. Once a file is chosen, the X and Y field drop-down boxes will be populated with the fields from the delimited text file. - Usa questo bottone per sfogliare il file system al fine di individuare il file di testo delimitato da caricare. Questo bottone non sarà abilitato fino a questo non verrà definito il carattere del delimitatore nell'input area <i>Delimitatore</i>. Una volta selezionato il file, scegli i campi X e Y dai relativi menu a tendina popolati dalla lettura del file di testo delimitato. + Usa questo bottone per sfogliare il file system al fine di individuare il file di testo delimitato da caricare. Questo bottone non sarà abilitato fino a questo non verrà definito il carattere del delimitatore nell'input area <i>Delimitatore</i>. Una volta selezionato il file, scegli i campi X e Y dai relativi menu a tendina popolati dalla lettura del file di testo delimitato. Browse... - Sfoglia... + Sfoglia... Selected delimiters - Delimitatori selezionati + Delimitatori selezionati The delimiter is a regular expression - Il delimitatore è una espressione regolare + Il delimitatore è una espressione regolare Regular expression - Espressione regolare + Espressione regolare The delimiter is taken as is - Il delimitatore viene letto come è + Il delimitatore viene letto come è Plain characters - Carattere semplice + Carattere semplice Tab - Tab + Tab Space - Spazio + Spazio Comma - Virgola + Virgola Semicolon - Punto e virgola + Punto e virgola Colon - Due punti + Due punti Delimiter to use when splitting fields in the text file. The delimiter can be more than one character. - Delimitatore utilizzato per dividere in campi il file di testo. Il delimitatore può essere di 1 o più caratteri. + Delimitatore utilizzato per dividere in campi il file di testo. Il delimitatore può essere di 1 o più caratteri. Delimiter to use when splitting fields in the delimited text file. The delimiter can be 1 or more characters in length. - Delimitatore utilizzato per dividere in campi il file di testo. Il delimitatore può essere di 1 o più caratteri. + Delimitatore utilizzato per dividere in campi il file di testo. Il delimitatore può essere di 1 o più caratteri. Start import at row - Inizia l'importazione dalla riga + Inizia l'importazione dalla riga The file contains X and Y coordinate columns - Il file contiene colonne con coordinate X e Y + Il file contiene colonne con coordinate X e Y X Y fields - Campi X Y + Campi X Y <p align="right">X field</p> - <p align="right">Campo X</p> + <p align="right">Campo X</p> Name of the field containing x values - Nome del campo che contiene i valori di X + Nome del campo che contiene i valori di X Name of the field containing x values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. - Nome del campo che contiene i valori di X. Scegli un campo dalla lista. La lista è generata dall'analisi della riga di intestazione del file contenente del testo delimitato. + Nome del campo che contiene i valori di X. Scegli un campo dalla lista. La lista è generata dall'analisi della riga di intestazione del file contenente del testo delimitato. <p align="right">Y field</p> - <p align="right">Campo Y</p> + <p align="right">Campo Y</p> Name of the field containing y values - Nome del campo che contiene i valori di Y + Nome del campo che contiene i valori di Y Name of the field containing y values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. - Nome del campo che contiene i valori di Y. Scegli un campo dalla lista. La lista è generata dall'analisi della riga di intestazione del file contenente il testo delimitato. + Nome del campo che contiene i valori di Y. Scegli un campo dalla lista. La lista è generata dall'analisi della riga di intestazione del file contenente il testo delimitato. The file contains a well known text geometry field - Il file contiene un campo geometrico well know text (WKT) + Il file contiene un campo geometrico well know text (WKT) WKT field - Campo WKT + Campo WKT Decimal point - Indicatore decimale + Indicatore decimale Sample text - Testo di esempio + Testo di esempio @@ -16795,77 +16800,77 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. mm - mm + mm Map units - Unità mappa + Unità mappa Around Point - + Intorno al punto Over Point - + Sopra il punto Line - Linea + Linea Horizontal - Orizzontale + Orizzontale Free - Libero + Libero On line - Sulla linea + Sulla linea Above line - Sopra la linea + Sopra la linea Below Line - Sotto la linea + Sotto la linea Map orientation - Oreintazione della mappa + Orientazione della mappa Pie chart - Grafico a torta + Grafico a torta Text diagram - Diagramma testo + Diagramma testo Histogram - Istogramma + Istogramma Height - Altezza + Altezza @@ -16876,23 +16881,23 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Area - Area + Area Diameter - + Diametro None - Nessuno + Nessuno Unknown diagram type. - + Tipo di diagramma sconosciuto. @@ -16902,17 +16907,17 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Transparency: %1% - Trasparenza: %1% + Trasparenza: %1% Background color - Colore di sfondo + Colore di sfondo Pen color - Colore del tratto + Colore del tratto @@ -16940,52 +16945,52 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Display diagrams - Visualizza diagrammi + Visualizza diagrammi Diagram type - Tipo di diagramma + Tipo di diagramma Priority: - Priorità: + Priorità: Low - Bassa + Bassa High - Alta + Alta Appearance - Aspetto + Aspetto Background color - Colore di sfondo + Colore di sfondo Line color - Colore della linea + Colore della linea Line width - + Spessore linea Font... - Carattere... + Carattere... @@ -17010,54 +17015,54 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Scale dependent visibility - Visibilità dipendente dalla scala + Visibilità dipendente dalla scala Minimum - Minimo + Minimo Maximum - Massimo + Massimo Size - Dimensione + Dimensione Fixed size - Dimensione fissa + Dimensione fissa Size units - Unità della dimensione + Unità della dimensione Scale linearly between 0 and the following attribute value / diagram size: - Scala linearmente tra 0 ed il seguente valore attributo / dimensione diagramma: + Scala linearmente tra 0 ed il seguente valore attributo / dimensione diagramma: Attribute - Attributo + Attributo Find maximum value - Trova valore massimo + Trova valore massimo Scale - Scala + Scala @@ -17072,42 +17077,42 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Minimum size - + Dimensione minima Position - Posizione + Posizione Placement - + Posizionamento Line Options - Opzioni linea + Opzioni linea Distance - Distanza + Distanza Data defined position - Posizione definita da attributo + Posizione definita da attributo x - x + x y - y + y @@ -17117,7 +17122,7 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Options - Opzioni + Opzioni @@ -17132,27 +17137,27 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Up - Su + Su Down - Giù + Giù Right - Destra + Destra Left - Sinistra + Sinistra Attributes - Attributi + Attributi @@ -17172,7 +17177,7 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Color - Colore + Colore @@ -17462,7 +17467,7 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Search - Cerca + Cerca @@ -17549,12 +17554,12 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Load all unique values - Carica tutti i valori univoci + Carica tutti i valori univoci Load 10 sample values - + Carica 10 valori di esempio @@ -17641,7 +17646,7 @@ Per selezionare il file da caricare utilizzare il bottone Sfoglia. Not available for layer - + Non disponibile per il layer @@ -18970,12 +18975,12 @@ Scegli un file valido. Gauss - + Gauss Cubic - Cubico + Cubico @@ -18985,7 +18990,7 @@ Scegli un file valido. None - Nessuno + Nessuno out of extent @@ -19469,7 +19474,7 @@ p, li { white-space: pre-wrap; } None - Nessuno + Nessuno @@ -19807,12 +19812,12 @@ p, li { white-space: pre-wrap; } Local histogram stretch - + Stiramento locale dell'istogramma Full histogram stretch - Stiramento completo dell'istogramma + Stiramento completo dell'istogramma @@ -22963,12 +22968,12 @@ alla linea %2 colonna %3 Delete - Elimina + Elimina html - + html @@ -23128,7 +23133,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Could not open url - + Impossibile aprire l'URL @@ -23769,22 +23774,22 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Display - Visualizza + Visualizza Show label - + Mostra etichetta Max - + Max Min - + Min @@ -23903,7 +23908,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Expression - Espressione + Espressione @@ -23913,7 +23918,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Sample text - Testo di esempio + Testo di esempio @@ -23959,7 +23964,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Alignment - Allineamento + Allineamento @@ -23970,18 +23975,18 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Left - Sinistra + Sinistra Center - Centro + Centro Right - Destra + Destra @@ -23996,7 +24001,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve U - + U @@ -24006,37 +24011,37 @@ Può essere o un problema della propria connessione di rete o sul lato del serve S - S + S points - + punti map units - unità mappa + unità mappa Style - Stile + Stile Transparency - Trasparenza + Trasparenza % - + % @@ -24070,7 +24075,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve mm - mm + mm @@ -24401,17 +24406,17 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Parallel - + Parallelo Curved - + Curvato Horizontal - Orizzontale + Orizzontale @@ -24421,12 +24426,12 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Around centroid - + Attorno al centroide Horizontal (slow) - + Orizzontale (lento) @@ -24436,7 +24441,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Using perimeter - + Utilizzando il perimetro @@ -24456,12 +24461,12 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Above line - Sopra la linea + Sopra la linea On line - Sulla linea + Sulla linea @@ -24481,37 +24486,37 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Above Right - In alto a destra + In alto a destra Above Left - In alto a sinistra + In alto a sinistra Over - Sovrapposto + Sovrapposto Above - Sopra + Sopra Below Left - In basso a sinistra + In basso a sinistra Below - Sotto + Sotto Below Right - In basso a destra + In basso a destra @@ -24604,7 +24609,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Outline: %1 - Cornice: %1 + Cornice: %1 @@ -25012,12 +25017,12 @@ Può essere o un problema della propria connessione di rete o sul lato del serve X / East: - + X / Est: Y / North: - + Y / Nord: X: @@ -25753,12 +25758,12 @@ Può essere o un problema della propria connessione di rete o sul lato del serve Label hidden - + Etichetta nascosta Label shown - + Etichetta mostrata @@ -26330,7 +26335,7 @@ http://mio.server.it/cgi-bin/mapserver.exe Close - Chiudi + Chiudi @@ -26913,7 +26918,7 @@ http://mio.server.it/cgi-bin/mapserver.exe Not set - Non impostato + Non impostato @@ -26938,17 +26943,17 @@ http://mio.server.it/cgi-bin/mapserver.exe Red - Rosso + Rosso Green - Verde + Verde Blue - Blu + Blu @@ -26956,37 +26961,37 @@ http://mio.server.it/cgi-bin/mapserver.exe Form - + Modulo Red band - Banda rosso + Banda rosso Green band - Banda verde + Banda verde Blue band - Banda blu + Banda blu Min - Min + Min Max - Max + Max Contrast enhancement - Miglioramento contrasto + Miglioramento contrasto @@ -26999,7 +27004,7 @@ http://mio.server.it/cgi-bin/mapserver.exe Network - Rete + Rete @@ -27032,7 +27037,7 @@ http://mio.server.it/cgi-bin/mapserver.exe Saving passwords - Salva password + Salva password @@ -27086,7 +27091,7 @@ Note: giving the password is optional. It will be requested interactivly, when n Invert axis orientation - + Inverti l'orientazione degli assi @@ -27638,7 +27643,7 @@ Ulteriori informazioni sull'errore: WMS Password for %1 - Password WMS per %1 + Password WMS per %1 @@ -27646,12 +27651,12 @@ Ulteriori informazioni sull'errore: Edit... - Modifica... + Modifica... Delete - Elimina + Elimina @@ -27659,12 +27664,12 @@ Ulteriori informazioni sull'errore: &Add - &Aggiungi + &Aggiungi Add selected layers to map - Aggiungi i layer selezionati alla mappa + Aggiungi i layer selezionati alla mappa @@ -27709,23 +27714,23 @@ Ulteriori informazioni sull'errore: Confirm Delete - Conferma eliminazione + Conferma eliminazione Load connections - Carica connessioni + Carica connessioni XML files (*.xml *XML) - File XML (*.xml *.XML) + File XML (*.xml *.XML) Coordinate Reference System (%n available) crs count - + Sistema di Riferimento (%n disponbile) Sistemi di Riferimento (%n disponbili) @@ -27739,32 +27744,32 @@ Ulteriori informazioni sull'errore: WMS proxies - proxy WMS + Proxy WMS Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. - Vari server WMS sono stati aggiunti alla lista dei server. Nota: se si accede ad internet attraverso un proxy, si deve impostare il proxy nelle opzioni di QGIS. + Vari server WMS sono stati aggiunti alla lista dei server. Nota: se si accede ad internet attraverso un proxy, si deve impostare il proxy nelle opzioni di QGIS. parse error at row %1, column %2: %3 - errore di analisi alla riga %1, colonna %2: %3 + errore di analisi alla riga %1, colonna %2: %3 network error: %1 - errore di rete: %1 + errore di rete: %1 The %1 connection already exists. Do you want to overwrite it? - La connessione %1 è già presente. Vuoi sovrascriverla? + La connessione %1 è già presente. Vuoi sovrascriverla? Confirm Overwrite - Conferma sovrascrittura + Conferma sovrascrittura @@ -27772,94 +27777,94 @@ Ulteriori informazioni sull'errore: Add Layer(s) from a Server - Aggiungi layer dal server + Aggiungi layer dal server Ready - Pronto + Pronto Layers - Layer + Layer C&onnect - C&onnetti + C&onnetti &New - &Nuovo + &Nuovo Edit - Modifica + Modifica Delete - Elimina + Elimina Load connections from file - Carica le connessioni dal file + Carica le connessioni dal file Load - Carica + Carica Save connections to file - + Salva le connessioni su file Save - Salva + Salva Adds a few example WMS servers - Aggiungere alcuni server WMS di esempio + Aggiungere alcuni server WMS di esempio Add default servers - Aggiungere server predefiniti + Aggiungere server predefiniti ID - ID + ID Name - Nome + Nome Title - Titolo + Titolo Abstract - Riassunto + Riassunto Time - Tempo + Tempo @@ -27870,38 +27875,38 @@ Ulteriori informazioni sull'errore: Change ... - Cambia ... + Cambia ... Format - Formato + Formato Options - Opzioni + Opzioni Layer name - + Nome layer Tile size - Dimensione tile + Dimensione tile Feature limit for GetFeatureInfo - Limite di elementi per GetFeatureInfo + Limite di elementi per GetFeatureInfo Cache - Cache + Cache @@ -27920,82 +27925,82 @@ Always network: always load from network and do not check if the cache has a val Layer Order - Ordine layer + Ordine layer Move selected layer UP - Spostare in alto il layer selezionato + Spostare in alto il layer selezionato Up - Su + Su Move selected layer DOWN - Spostare in basso il layer selezionato + Spostare in basso il layer selezionato Down - Giù + Giù Layer - + Layer Style - Stile + Stile Tilesets - Set di tile + Set di tile Styles - Stili + Stili Size - Dimensione + Dimensione CRS - + SR Server Search - Cerca Server + Cerca Server Search - Cerca + Cerca Description - Descrizione + Descrizione URL - URL + URL Add selected row to WMS list - Aggiungi riga alla lista WMS + Aggiungi riga alla lista WMS @@ -28257,7 +28262,7 @@ Always network: always load from network and do not check if the cache has a val Unknown - + Sconosciuto @@ -28671,7 +28676,7 @@ Always network: always load from network and do not check if the cache has a val Scale denominator - + Denominatore della scala @@ -28723,12 +28728,12 @@ Always network: always load from network and do not check if the cache has a val Minimum / maximum - + Minimo / massimo Mean +/- standard deviation - + Media +/- deviazione standard @@ -28835,7 +28840,7 @@ Always network: always load from network and do not check if the cache has a val Parameters: - + Parametri: @@ -29115,7 +29120,7 @@ Always network: always load from network and do not check if the cache has a val Open identify results in a dock window (QGIS restart required) - Apri i risultati di una interrogazione in una finestra agganciata (è necessario riavviare QGIS) + Apri i risultati di una interrogazione in una finestra agganciata (richiede il riavvio di QGIS) @@ -29140,7 +29145,7 @@ Always network: always load from network and do not check if the cache has a val Copy geometry in WKT representation from attribute table - Compa la geometria in formato WKT dalla tabella delgi attributi + Copia la geometria in formato WKT dalla tabella degli attributi @@ -29512,22 +29517,22 @@ Always network: always load from network and do not check if the cache has a val Browse - Sfoglia + Sfoglia Reset - Ripristina + Ripristina Enable macros - + Abilita macro Never - Mai + Mai @@ -29547,7 +29552,7 @@ Always network: always load from network and do not check if the cache has a val Font - Carattere + Carattere @@ -29562,7 +29567,7 @@ Always network: always load from network and do not check if the cache has a val Name - Nome + Nome @@ -29577,7 +29582,7 @@ Always network: always load from network and do not check if the cache has a val Description - Descrizione + Descrizione @@ -29602,7 +29607,7 @@ Always network: always load from network and do not check if the cache has a val Single band gray - Banda singola grigia + Banda singola grigia @@ -29627,7 +29632,7 @@ Always network: always load from network and do not check if the cache has a val - - - + - @@ -29952,22 +29957,22 @@ Always network: always load from network and do not check if the cache has a val Form - + Band - Banda + Banda Value - Valore + Valore Color - Colore + Colore @@ -32180,7 +32185,7 @@ Procedere? Transparency %1% - Trasparenza %1% + Trasparenza %1% @@ -32274,47 +32279,47 @@ Procedere? ... - ... + ... Default Styles - + Stili predefiniti Default Symbols - + Simboli predefiniti Marker - Indicatore + Indicatore Line - Linea + Linea Fill - Riempimento + Riempimento Color Ramp - Scala di colori + Scala di colori Style Manager - Gestore stile + Gestore stile Options - Opzioni + Opzioni @@ -32324,7 +32329,7 @@ Procedere? Opacity - Opacità + Opacità @@ -32410,7 +32415,7 @@ Procedere? Macros - + Macro @@ -32797,7 +32802,7 @@ p, li { white-space: pre-wrap; }(new line) Use unfiltered layer - + Usa layer non filtrato @@ -33185,22 +33190,22 @@ p, li { white-space: pre-wrap; }(new line) Average - Media + Media Nearest Neighbour - Il più vicino possibile + Il più vicino possibile Gauss - + Gauss Cubic - Cubico + Cubico @@ -33210,7 +33215,7 @@ p, li { white-space: pre-wrap; }(new line) None - Nessuno + Nessuno @@ -33218,7 +33223,7 @@ p, li { white-space: pre-wrap; }(new line) Default - Predefinito + Predefinito @@ -33264,7 +33269,7 @@ p, li { white-space: pre-wrap; }(new line) Valid - Valido + Valido @@ -33301,22 +33306,22 @@ Click on help button to get valid creation options for this format Form - + Modulo New - Nuovo + Nuovo Remove - Rimuovi + Rimuovi Reset - Ripristina + Ripristina @@ -33326,17 +33331,17 @@ Click on help button to get valid creation options for this format Name - Nome + Nome Value - Valore + Valore + - + + + @@ -33351,7 +33356,7 @@ Click on help button to get valid creation options for this format - - - + - @@ -33364,7 +33369,7 @@ Click on help button to get valid creation options for this format Visibility - Visibilità + Visibilità @@ -33389,7 +33394,7 @@ Click on help button to get valid creation options for this format Reset - Ripristina + Ripristina @@ -33399,17 +33404,17 @@ Click on help button to get valid creation options for this format Estimate (faster) - Stimato (più veloce) + Stimato (più veloce) Actual (slower) - Attuale (più lento) + Attuale (più lento) Current extent - Estensione attuale + Estensione attuale @@ -33434,7 +33439,7 @@ Click on help button to get valid creation options for this format Band %1 - Banda %1 + Banda %1 @@ -33447,17 +33452,17 @@ Click on help button to get valid creation options for this format Form - + Modulo Band - Banda + Banda Min - Min + Min @@ -33468,12 +33473,12 @@ Click on help button to get valid creation options for this format ... - ... + ... Max - Max + Max @@ -33493,7 +33498,7 @@ Click on help button to get valid creation options for this format Save as image... - Salva come immagine... + Salva come immagine... @@ -33541,7 +33546,7 @@ Click on help button to get valid creation options for this format null (no data) - nullo (nessun dato) + nullo (nessun dato) @@ -33766,17 +33771,17 @@ Click on help button to get valid creation options for this format From - + Da To - A + A not defined - + non definito @@ -33900,30 +33905,30 @@ Click on help button to get valid creation options for this format Nearest neighbour - Vicino più prossimo + Vicino più prossimo Bilinear - Bilineare + Bilineare Cubic - Cubico + Cubico Average - Media + Media None - Nessuno + Nessuno @@ -33967,17 +33972,17 @@ Click on help button to get valid creation options for this format Filter - Filtro + Filtro Bands - + Bande Time - Tempo + Tempo Note: Minimum Maximum values are estimates, user defined, or calculated from the current extent @@ -34463,7 +34468,7 @@ Click on help button to get valid creation options for this format Style mRendererTab - Stile + Stile @@ -34790,22 +34795,22 @@ p, li { white-space: pre-wrap; } From - + Da To - A + A Select output directory - + Scegli cartella di output Select output file - + Scegli il file di output @@ -34885,52 +34890,52 @@ p, li { white-space: pre-wrap; } Format - Formato + Formato Save as - Salva con nome + Salva con nome Browse... - Sfoglia... + Sfoglia... CRS - + SR Change ... - Cambia ... + Cambia ... Extent - Estensione + Estensione West - Ovest + Ovest East - Est + Est North - Nord + Nord South - Sud + Sud @@ -34945,22 +34950,22 @@ p, li { white-space: pre-wrap; } Resolution - Risoluzione + Risoluzione Horizontal - Orizzontale + Orizzontale Columns - Colonne + Colonne Rows - Righe + Righe @@ -34975,7 +34980,7 @@ p, li { white-space: pre-wrap; } Vertical - Verticale + Verticale @@ -35022,12 +35027,12 @@ p, li { white-space: pre-wrap; } No data values - Valori nulli + Valori nulli Add values manually - Aggiungi un valore manualmente + Aggiungi un valore manualmente @@ -35035,7 +35040,7 @@ p, li { white-space: pre-wrap; } ... - ... + ... @@ -35045,17 +35050,17 @@ p, li { white-space: pre-wrap; } Remove selected row - Rimuovi la riga selezionata + Rimuovi la riga selezionata Clear all - Cancella tutto + Cancella tutto Pyramids - Piramidi + Piramidi @@ -35078,7 +35083,7 @@ p, li { white-space: pre-wrap; } Form - + Modulo @@ -35093,17 +35098,17 @@ p, li { white-space: pre-wrap; } - - - + - % - % + % Min / max - + Min / max @@ -35113,7 +35118,7 @@ p, li { white-space: pre-wrap; } Extent - Estensione + Estensione @@ -35123,27 +35128,27 @@ p, li { white-space: pre-wrap; } Current - Attuale + Attuale Accuracy - + Accuratezza Actual (slower) - Attuale (più lento) + Attuale (più lento) Estimate (faster) - Stimato (più veloce) + Stimato (più veloce) Load - Carica + Carica @@ -35151,7 +35156,7 @@ p, li { white-space: pre-wrap; } Form - + Modulo @@ -35181,12 +35186,12 @@ p, li { white-space: pre-wrap; } Average - Media + Media Nearest Neighbour - Il più vicino possibile + Il più vicino possibile @@ -35206,7 +35211,7 @@ p, li { white-space: pre-wrap; } Resampling method - Metodo di ricampionamento + Metodo di ricampionamento @@ -36258,27 +36263,27 @@ L´errore era: Form - + Modulo Contrast enhancement - Miglioramento contrasto + Miglioramento contrasto Gray band - Banda grigio + Banda grigio Min - Min + Min Max - Max + Max @@ -36290,7 +36295,7 @@ L´errore era: Discrete - Discrete + Discreto @@ -36300,40 +36305,40 @@ L´errore era: Linear - Lineare + Lineare Exact - Esatto + Esatto Equal interval - Equal interval + Intervallo uguale Custom color map entry - Definizione mappa colori personalizzati + Definizione mappa colori personalizzati Load Color Map - Carica Mappa Colore + Carica Mappa Colore The color map for band %1 failed to load - Impossibile caricare la mappa colore per la banda %1 + Impossibile caricare la mappa colore per la banda %1 Open file - Apri file + Apri file @@ -36351,43 +36356,44 @@ L´errore era: The following lines contained errors - Le seguenti linee contengono errori + Le seguenti linee contengono errori + Read access denied - Permesso di lettura negato + Permesso di lettura negato Read access denied. Adjust the file permissions and try again. - Permesso di lettura negato. Sistema i permessi dei file e prova ancora. + Permesso di lettura negato. Sistema i permessi dei file e prova ancora. Save file - Salva file + Salva file QGIS Generated Color Map Export File - Esporta file QGIS mappa colori generata + Write access denied - Permesso di scrittura negato + Permesso di scrittura negato Write access denied. Adjust the file permissions and try again. - Permesso di scrittura negato. Sistema i permessi dei file e prova ancora. + Permesso di scrittura negato. Sistema i permessi dei file e prova ancora. @@ -36397,79 +36403,79 @@ L´errore era: Form - + Modulo Band - Banda + Banda Color interpolation - Interpolazione colore + Interpolazione colore Add entry - Aggiungi elemento + Aggiungi elemento Delete entry - Cancella elemento + Cancella elemento Sort - Ordina + Ordina Load color map from band - Carica mappa colore dalla banda + Carica mappa colore dalla banda ... - ... + ... Load color map from file - Carica mappa colore da file + Carica mappa colore da file Export color map to file - Esporta mappa colore su file + Esporta mappa colore su file Value - Valore + Valore Color - Colore + Colore Label - Etichetta + Etichetta Generate new color map - Genera nuova mappa colore + Genera nuova mappa colore Classes - Classi + Classi @@ -36479,12 +36485,12 @@ L´errore era: Classify - + Classifica Color ramp - Scala di colori + Scala di colori @@ -36597,7 +36603,7 @@ L´errore era: Form - + Modulo @@ -38271,12 +38277,12 @@ Sovrascrivere? Load styles - Carica stili + Carica stili XML files (*.xml *XML) - File XML (*.xml *.XML) + File XML (*.xml *.XML) @@ -38286,12 +38292,12 @@ Sovrascrivere? HTTP Error! - + Errore HTTP! Download failed: %1. - Errore di download: %1. + Errore di download: %1. @@ -38304,7 +38310,7 @@ Sovrascrivere? Import from - + Importa da @@ -38420,7 +38426,7 @@ Sovrascrivere? Symbol Name - Nome simbolo + Nome simbolo @@ -38524,7 +38530,7 @@ Kindly select a group or smart group you might want to delete. Error! - Errore! + Errore! @@ -38535,7 +38541,7 @@ There was a problem with your symbol database. Database Error - Errore database + Errore database @@ -38618,7 +38624,7 @@ There was a problem with your symbol database. Share - + Condividi Add @@ -38745,32 +38751,32 @@ There was a problem with your symbol database. Symbol layers - Layer simbolo + Layer simbolo Add symbol layer - Aggiungi layer simbolo + Aggiungi layer simbolo Remove symbol layer - Rimuovi layer simbolo + Rimuovi layer simbolo Lock layer's color - Blocca colore del layer + Blocca colore del layer Move up - Sposta in su + Sposta in alto Move down - Sposta in giù + Sposta in basso Change... @@ -38842,32 +38848,32 @@ There was a problem with your symbol database. Symbol name - Nome simbolo + Nome simbolo Please enter name for the symbol: - Iserire un nome per il simbolo: + Inserire un nome per il simbolo: New symbol - Nuovo simbolo + Nuovo simbolo Save symbol - Salva simbolo + Salva simbolo Symbol with name '%1' already exists. Overwrite? - + Il simbolo con nome '%1' esiste già. Sovrascrivere? Transparency %1% - Trasparenza %1% + Trasparenza %1% @@ -38968,7 +38974,7 @@ There was a problem with your symbol database. Tile scale - Scala delle tiles + Scala delle tiles @@ -40102,7 +40108,7 @@ Should the existing classes be deleted before classification? Insert expression - Inserisci l'espressione + Inserisci l'espressione @@ -40203,12 +40209,12 @@ Should the existing classes be deleted before classification? Save Style - + Salva stile Save Style... - + Salva stile ... Text diagram @@ -40405,7 +40411,7 @@ Should the existing classes be deleted before classification? CRS - + SR @@ -40866,12 +40872,12 @@ Should the existing classes be deleted before classification? Edit... - Modifica... + Modifica... Delete - Elimina + Elimina @@ -40879,7 +40885,7 @@ Should the existing classes be deleted before classification? New Connection... - Nuova connessione... + Nuova connessione... @@ -40887,12 +40893,12 @@ Should the existing classes be deleted before classification? Select a layer - Scegli un layer + Scegli un layer No CRS selected - Nessun SR selezionato + Nessun SR selezionato @@ -41421,7 +41427,7 @@ in cache 10 - 10 + 10 @@ -41554,45 +41560,45 @@ in cache empty capabilities document - il documento di capabilities è vuoto + il documento di capabilities è vuoto Tried URL: %1 - + URL provata: %1 Capabilities request redirected. - Richiesta capabilities reindirizzata. + Richiesta capabilities reindirizzata. empty of capabilities: %1 - assenza di capabilities: %1 + assenza di capabilities: %1 Download of capabilities failed: %1 - Download di capabilities non riuscito: %1 + Download di capabilities non riuscito: %1 WCS - + WCS %1 of %2 bytes of capabilities downloaded. - %1 di %2 bytes di capabilities scaricato. + %1 di %2 bytes di capabilities scaricato. Exception - Eccezione + Eccezione @@ -41605,7 +41611,7 @@ URL provata: %1 Dom Exception - Dom Exception + @@ -41668,7 +41674,7 @@ Response was: WCS - + WCS @@ -41774,7 +41780,7 @@ Response was: %1 of %2 bytes of map downloaded. - %1 di %2 bytes di mappa scaricati. + %1 di %2 bytes di mappa scaricati. @@ -41793,7 +41799,7 @@ Response was: Request contains a format not offered by the server. - La richiesta contiene un formato non disponibile dal server. + La richiesta contiene un formato non disponibile dal server. @@ -41859,13 +41865,13 @@ Response was: Property - Proprietà + Proprietà Value - Valore + Valore @@ -41876,23 +41882,23 @@ Response was: Title - Titolo + Titolo Abstract - Riassunto + Riassunto Fixed Width - Larghezza fissa + Larghezza fissa Fixed Height - Altezza fissa + Altezza fissa @@ -41907,20 +41913,20 @@ Response was: WGS 84 Bounding Box - Perimetro WGS 84 + Perimetro WGS 84 Available in CRS - Disponibile in SR + Disponibile in SR (and %n more) crs - + (e %n in più) (e %n in più) @@ -41929,7 +41935,7 @@ Response was: Available in format - + Disponibile nel formato @@ -41940,47 +41946,47 @@ Response was: Cache Stats - Statistiche cache + Statistiche cache Server Properties - Proprietà del server + Proprietà del server Keywords - Parole chiave + Parole chiave Online Resource - Risorsa online + Risorsa online Contact Person - Persona di riferimento + Persona di riferimento Fees - Tasse + Tasse Access Constraints - Vincoli di accesso + Vincoli di accesso Image Formats - Formati immagine + Formati immagine GetCapabilitiesUrl - GetCapabilitiesUrl + GetCapabilitiesUrl @@ -41990,7 +41996,7 @@ Response was: &nbsp;<font color="red">(advertised but ignored)</font> - &nbsp;<font color="red">(annunciato ma ignorato)</font> + &nbsp;<font color="red">(annunciato ma ignorato)</font> @@ -42357,12 +42363,12 @@ La risposta è stata: WMTS - + WMTS WMS-C - + WMS-C @@ -42682,28 +42688,28 @@ URL provata: %1 Dialog - + Finestra di dialogo Dimension - + Dimensione Value - Valore + Valore Abstract - Riassunto + Riassunto Default - Predefinito + Predefinito @@ -43024,7 +43030,7 @@ URL provata: %1 SEXTANTE Analysis - Analisi + Analisi &SEXTANTE Toolbox @@ -43537,7 +43543,7 @@ additional algorithm providers Execute - + Esegui Execute as batch process @@ -43549,11 +43555,11 @@ additional algorithm providers Warning - Attenzione + Attenzione Recently used algorithms - + Algoritmi usati di recente @@ -43602,77 +43608,77 @@ additional algorithm providers Form - + Modulo Unit - Unità + Unità Millimeter - Millimetri + Millimetri Map unit - Unità mappa + Unità mappa Opacity - Opacità + Opacità Color - Colore + Colore Change - Cambia + Cambia Size - Dimensione + Dimensione Rotation - Rotazione + Rotazione ° - ° + ° Width - + Larghezza Saved styles - Stili salvati + Stili salvati Symbol Name - Nome simbolo + Nome simbolo Style - Stile + Stile Advanced - Avanzato + Avanzato @@ -44121,12 +44127,12 @@ additional algorithm providers SVG Groups - + Gruppi SVG SVG Symbols - + Simboli SVG @@ -44312,7 +44318,7 @@ additional algorithm providers SVG Groups - + Gruppi SVG diff --git a/i18n/qgis_pt_PT.ts b/i18n/qgis_pt_PT.ts index d92cb3ffd412..24bd8138e955 100644 --- a/i18n/qgis_pt_PT.ts +++ b/i18n/qgis_pt_PT.ts @@ -63,12 +63,12 @@ Coordinate in your selected CRS (lat,lon or east,north) - + Coordenadas no CRS seleccionado (Lat, Long ou Este, Norte) Coordinate in map canvas coordinate reference system (lat,lon or east,north) - + Coordendas no sistema de coordenadas do mapa (Lat,Long ou Este, Norte) Coordinate in your selected CRS @@ -1564,12 +1564,12 @@ were reduced to %2 vertices after simplification About SEXTANTE - + Sobre o SEXTANTE about:blank - sobre:branco + sobre:em branco @@ -2011,7 +2011,7 @@ columns <html><head/><body><p>Avoid selecting feature by id. Sometimes - especially when running expensive queries/views - fetching the data sequentially instead of fetching features by id can be much quicker.</p></body></html> - + <html><head/><body><p>Evite seleccionar elementos pelo id. Por vezes e especialmente durante a execução de questionários a conjuntos de dados extensos será mais rápida a busca por dados sequenciais em vez da selecção de elementos pelo id.</p></body></html> @@ -3766,7 +3766,7 @@ when pressing on the tool dialog's Help button. cubic - + Cúbico @@ -4953,17 +4953,17 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Form - Formulário + Formulário Symbol layer type - Tipo da camada do símbolo + Tipo da camada do símbolo This layer doesn't have any editable properties - + Esta camanda não possui propriedades editáveis @@ -5261,7 +5261,7 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Rotate Label Ctl (Cmd) increments by 15 deg. - + Rodar legenda Ctl (Cmd) em incrementos de 15 graus @@ -5312,7 +5312,7 @@ Ctl (Cmd) increments by 15 deg. Pin/Unpin Labels - + Fixar / Não fixar um rótulo @@ -5320,13 +5320,13 @@ Ctl (Cmd) increments by 15 deg. Click or marquee on label to pin Shift unpins, Ctl (Cmd) toggles state Acts on all editable layers - + Fixar / Não Fixar um rótulo. Seleccione a label para fixar. Shift para não fixar, Ctl (Cmd) muda o estado. Funciona em todas as camadas editáveis Highlight Pinned Labels - + Realçar as legendas fixadas @@ -5337,22 +5337,22 @@ Acts on all editable layers Local Cumulative Cut Stretch - + Expansão Cumulativa Local do Corte Local cumulative cut stretch using current extent, default limits and estimated values. - + Expansão Cumulativa Local do Corte usando a extensão actual, limites padrão e valores estimados. Full Dataset Cumulative Cut Stretch - + Expansão Cumulativa do Corte para a totalidade dos dados Cumulative cut stretch using full dataset extent, default limits and estimated values. - + Expansão Cumulativa do Corte usando a totalidade da extensão de dados, limites padrão e valores estimados. @@ -5365,13 +5365,13 @@ Acts on all editable layers Click or marquee on feature to show label Shift+click or marquee on label to hide it Acts on currently active editable layer - + Mostrar / Esconder legendas. Seleccionar o elementos para ver legenda. Shift+selecção da camada activa Html Annotation - + Anotação Html Composer manager... @@ -7234,39 +7234,39 @@ Please change this situation first, because OSM Plugin doesn't know what la PythonConsole Clear console - + Limpar consola Import Class - + Importar classe Manage Script - + Gerir Script Import sextante class - + Importar classe sextante Import iface class - + Importar classe iface Open script file - + Abrir ficheiro script Save to script file - + Gravar para ficheiro script Run command - + Executar comando Help - Ajuda + Ajuda Python Console @@ -7302,12 +7302,12 @@ use o objeto qgis.utils.iface (instância da classe QgisInterface). meters - metros + metros feet - + pés @@ -7315,12 +7315,12 @@ use o objeto qgis.utils.iface (instância da classe QgisInterface). degrees - graus + graus <unknown> - + <desconhecido> @@ -8869,7 +8869,7 @@ Apenas %1 de %2 elementos escritos. Reading raster - + A ler raster CRS undefined - defaulting to default CRS @@ -9416,22 +9416,22 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente Cannot convert '%1' to DateTime - + Impossível converter '%1' para formato Data Hora Cannot convert '%1' to Date - + Impossível converter '%1' para formato Data Cannot convert '%1' to Time - + Impossível converter '%1' para formato Hora Cannot convert '%1' to Interval - + Impossível converter '%1' para formato Intervalo @@ -9479,7 +9479,7 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente Conditionals - + Condicionais @@ -9544,12 +9544,12 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente Unary minus only for numeric values. - + Sinal negativo apenas para valores numéricos Can't preform /, *, or % on DateTime and Interval - + Impossível incluir /, *, ou % no formato Data e Hora e Intervalo @@ -9783,7 +9783,7 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente GEOS prior to 3.2 doesn't support GEOSInterpolate - + versão GEOS anterior a 3.2 não suporta interpolação @@ -9796,17 +9796,17 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente Reading raster part %1 of %2 - + A ler raster parte %1 de %2 Building pyramids failed - write access denied - + Construção de pirâmides falhou - registo de dados negado Write access denied. Adjust the file permissions and try again. - Acesso de escrita negado. Ajuste as permissões do arquivo e tente novamente. + Registo de dados negado. Ajuste as permissões do arquivo e tente novamente. @@ -9814,23 +9814,23 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente Building pyramids failed. - Falha ao construir pirâmides. + Falha ao construir pirâmides. The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. - O arquivo não pode ser escrito. Alguns formatos não suportam visões em pirâmide. consulte a documentação GDAL em caso de dúvida. + O arquivo não pode ser escrito. Alguns formatos não suportam pre-visualização de pirâmides. consulte a documentação GDAL em caso de dúvida. Building pyramid overviews is not supported on this type of raster. - Construir 'overviews' em pirâmide não é suportado neste tipo de raster. + Pré-visualização de pirâmides não suportado neste tipo de raster. Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. - A construção de súmulas de pirâmides interna não é suportada em camadas raster com compressão JPEG e sua biblioteca libtiff atual. + A construção de pré-visualizações de pirâmides não é suportada em camadas raster com compressão JPEG e biblioteca libtiff atual. @@ -9840,7 +9840,7 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente Paletted - + Paletizada @@ -9850,12 +9850,12 @@ Está a ver esta mensagem provavelmente porque não tem a variável de ambiente Singleband pseudocolor - + Banda de cor falsa simples Singleband color data - + Banda cor simples @@ -12069,17 +12069,17 @@ Esta cópia do QGIS foi compilada com QWT %1. Security warning: - + Aviso de segurança: macros have been disabled. - + macros desativadas Enable - + Permitir @@ -12104,12 +12104,12 @@ Esta cópia do QGIS foi compilada com QWT %1. Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved. It also allows editing to set the canvas center to a given position. The format is lat,lon or east,north - + Mostra as coordenadas do mapa na posição actual do cursor. A tela é continuamente actualizada durante o movimento do rato. Permite ainda ser a editado para definir o centro da tela numa determinada posição. Current map coordinate (lat,lon or east,north) - + Coordenadas do mapa atual (lat, lon ou este, norte) @@ -12135,13 +12135,13 @@ Esta cópia do QGIS foi compilada com QWT %1. Update of view in private qgis.db failed. %1 - + Falha na actualização da visualização em qgis.db (modo privado) < Blank > - + < Blank > @@ -12192,7 +12192,7 @@ Esta cópia do QGIS foi compilada com QWT %1. PROJ.4 Version - + Versão PROJ.4 @@ -12621,7 +12621,16 @@ Default Theme Path: %7 SVG Search Paths: %8 User DB Path: %9 - + Estado da aplicação: +QGIS_PREFIX_PATH env var: %1 +Prefixo: %2 +Caminho da Extensão: %3 +Caminho de dados do complemento: %4 +Nome do tema activo: %5 +Caminho do tema activo: %6 +Caminho padrão do tema: %7 +Procura de Caminho SVG: %8 +Caminho do utilizador DB: %9 Application state: @@ -13550,7 +13559,7 @@ Caminho DB de utilizador: %8 No filter - + Sem filtro @@ -13626,7 +13635,7 @@ Caminho DB de utilizador: %8 Allows one to set numeric values from a specified range. The edit widget can be either a slider or a spin box. - Permite agrupar valores numéricos a partir de um intervalo específico. The edit widget can be either a slider or a spin box. + Permite agrupar valores numéricos a partir de um intervalo específico. A ferramenta de edição pode de barra deslizante ou caixa de rotação. @@ -13686,12 +13695,12 @@ Caminho DB de utilizador: %8 Filter column - + Coluna de Filtro Filter value - + Valor de Filtro @@ -13845,7 +13854,10 @@ Erro:%2 Database: %1 Driver: %2 Database: %3 - + Impossível abrir base de dados do marcador: +Base de dados: %1 +Drive: %2 +Base de dados:%3 @@ -13860,22 +13872,22 @@ Database: %3 xMin - + xMin yMin - + yMin xMax - + xMax yMax - + yMax @@ -13892,7 +13904,9 @@ Database: %3 Unable to create the bookmark. Driver:%1 Database:%2 - + Não foi possivel criar o marcador. +Driver:%1 +Base de dados:%2 @@ -13903,9 +13917,9 @@ Database:%2 Are you sure you want to delete %n bookmark(s)? number of rows - - - + + Tem a certeza que deseja excluir %n marcador(es)? + número de colunas @@ -13999,7 +14013,7 @@ Database:%2 Param - + Param @@ -14024,7 +14038,7 @@ Database:%2 toolBar - + toolBar @@ -14120,12 +14134,12 @@ Database:%2 Add a directory - + Adicionar um directório Add directory to favourites - + Adicionar directório aos favoritos @@ -14171,7 +14185,7 @@ Database:%2 Home - + Início @@ -14184,77 +14198,77 @@ Database:%2 Solid - Sólido + Sólido Horizontal - Horizontal + Horizontal Vertical - Vertical + Vertical Cross - Cruz + Cruz BDiagonal - + BDiagonal FDiagonal - + FDiagonal Diagonal X - + Diagonal X Dense 1 - Denso 1 + Densidade 1 Dense 2 - Denso 2 + Densidade 2 Dense 3 - Denso 3 + Densidade 3 Dense 4 - Denso 4 + Densidade 4 Dense 5 - Denso 5 + Densidade 5 Dense 6 - Denso 6 + Densidade 6 Dense 7 - Denso 7 + Densidade 7 No Brush - Sem pincel + Sem pincel @@ -14274,7 +14288,7 @@ Database:%2 Symbol levels... - + Nível dos símbolos... @@ -14285,29 +14299,29 @@ Database:%2 There are no available color ramps. You can add them in Style Manager. - Não existem cor de rampas disponíveis. Você pode adicioná-las no Gerenciador de Estilos. + Não existem gradações de cores disponíveis. Pode adicioná-las no Gerenciador de Estilos. The selected color ramp is not available. - A cor de rampa selecionada não está disponível. + A cor de rampa selecionada não está disponível. Confirm Delete - Confirma exclusão + Confirme a exclusão The classification field was changed from '%1' to '%2'. Should the existing classes be deleted before classification? - O campo de classificação foi mudado de '%1' para '%2'. -Existem classes que podem ser excluídas antes da classificação? + O campo de classificação foi mudado de '%1' para '%2'. +Podem as classes ser excluídas antes da classificação? change - mudar + alteração @@ -14324,17 +14338,17 @@ Existem classes que podem ser excluídas antes da classificação? Color ramp - Cor da inclinação + Gradação de cor Classify - Classifica + Classifica Add - Adiciona + Adiciona @@ -14344,17 +14358,17 @@ Existem classes que podem ser excluídas antes da classificação? Delete all - Exclui tudo + Exclui tudo Join - Unir + Unir Advanced - Avançado + Avançado @@ -14362,7 +14376,7 @@ Existem classes que podem ser excluídas antes da classificação? New color ramp... - Nova cor da rampa... + Nova gradação de cor... @@ -14370,12 +14384,12 @@ Existem classes que podem ser excluídas antes da classificação? Show compass - + Mostrar Bússula &About - &Sobre + &Sobre @@ -14383,7 +14397,7 @@ Existem classes que podem ser excluídas antes da classificação? Pixmap not found - Pixmap não encontrado + Pixmap não encontrado @@ -14391,12 +14405,12 @@ Existem classes que podem ser excluídas antes da classificação? Internal Compass - Bússola interna + Bússola interna Azimut - + Azimute @@ -14452,12 +14466,12 @@ Existem classes que podem ser excluídas antes da classificação? Panels - Painéis + Painéis Toolbars - + Barras de Ferramentas @@ -14511,7 +14525,7 @@ Existem classes que podem ser excluídas antes da classificação? <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the - <p>A função de exportação SVG no QGIS tem vários problemas devido a bugs e deficiências no + <p>A função de exportação SVG no QGIS tem vários problemas devido a bugs e deficiências no @@ -14544,7 +14558,7 @@ Existem classes que podem ser excluídas antes da classificação? Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p> - código Qt4 svg. Em particular, existem problemas com camadas que não são aparadas da caixa limite do mapa.</p> + código Qt4 svg. Em particular, existem problemas com camadas que não são aparadas da caixa limite do mapa.</p> To create image %1 x %2 requires circa %3 MB of memory @@ -14553,7 +14567,7 @@ Existem classes que podem ser excluídas antes da classificação? If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p> - Se você necessita de um arquivo de saída do tipo vetorial é sugerido que você tente imprimir para PostScript se o SVG criado não foi satisfatório.</p> + Se necessita de um arquivo de saída do tipo vetorial é sugerido que tente imprimir para PostScript se o SVG criado não foi satisfatório.</p> save template @@ -15096,12 +15110,12 @@ Existem classes que podem ser excluídas antes da classificação? Repeat on every page - + Repetir em cada página Repeat until finished - + Repetir até terminar @@ -15414,7 +15428,7 @@ Existem classes que podem ser excluídas antes da classificação? Item wrapping changed - + Alteração da modificação do item @@ -15424,78 +15438,78 @@ Existem classes que podem ser excluídas antes da classificação? Legend symbol width - Espessura do símbolo da legenda + Espessura do símbolo da legenda Legend symbol height - Altura do símbolo da legenda + Altura do símbolo da legenda Legend group space - Espaço do grupo da legenda + Espaço do grupo da legenda Legend layer space - Espaço da camada da legenda + Espaço da camada da legenda Legend symbol space - Espaço do símbolo da legenda + Espaço do símbolo da legenda Legend icon label space - + Espaço da legenda do símbolo Title font changed - Fonte do título alterada + Tipo de letra do título alterado Legend group font changed - + Tipo de letra da legenda do grupo alterada Legend layer font changed - + Tipo de letra da camada da legenda alterada Legend item font changed - + Tipo de letra do item da legenda alterado Legend box space - + Espaço da caixa da legenda Legend map changed - Mapa da legenda alterado + Mapa da legenda alterado Legend item edited - Item da legenda editado + Item da legenda editado Legend updated - Legenda actualizada + Legenda actualizada Legend group added - Grupo de legenda adicionado + Grupo de legenda adicionado @@ -15726,7 +15740,7 @@ Existem classes que podem ser excluídas antes da classificação? Render - Desenhar + Desenhar @@ -15754,12 +15768,12 @@ Existem classes que podem ser excluídas antes da classificação? DegreeMinute - Grau e Minuto + Grau e Minuto DegreeMinuteSecond - Grau, Minuto e Segundo + Grau, Minuto e Segundo @@ -15772,7 +15786,7 @@ Existem classes que podem ser excluídas antes da classificação? Zebra - + Zebra @@ -15811,12 +15825,12 @@ Existem classes que podem ser excluídas antes da classificação? Change item width - Alterar largura do item + Alterar largura do item Change item height - Alterar altura do item + Alterar altura do item @@ -15837,7 +15851,7 @@ Existem classes que podem ser excluídas antes da classificação? Canvas items toggled - + Alterados items do mapa @@ -15849,7 +15863,7 @@ Existem classes que podem ser excluídas antes da classificação? Grid checkbox toggled - + Alterada a caixa de verificação da grelha @@ -15861,23 +15875,23 @@ Existem classes que podem ser excluídas antes da classificação? Grid offset changed - + Alterado offset da grelha Grid pen changed - + Alterada caneta da grelha Grid type changed - Tipo de grelha alterado + Tipo de grelha alterado Grid cross width changed - + Espessura da cruz da grelha alterada @@ -15897,19 +15911,19 @@ Existem classes que podem ser excluídas antes da classificação? Changed grid frame style - Estilo da moldura da grelha alterado + Estilo da moldura da grelha alterado Changed grid frame width - Largura da moldura da grelha alterada + Largura da moldura da grelha alterada Disabled - Desativado + Desativado @@ -15924,7 +15938,7 @@ Existem classes que podem ser excluídas antes da classificação? Annotation toggled - + Alterada a anotação @@ -16113,12 +16127,12 @@ Existem classes que podem ser excluídas antes da classificação? Annotation position top side - Posição da anotação na parte superior + Posição da anotação na parte superior Annotation position bottom side - Posição da anotação na parte inferior + Posição da anotação na parte inferior @@ -16133,12 +16147,12 @@ Existem classes que podem ser excluídas antes da classificação? Annotation direction top side - Direcção da anotação na parte superior + Direcção da anotação na parte superior Annotation direction bottom side - Direcção da anotação na parte inferior + Direcção da anotação na parte inferior @@ -16173,7 +16187,7 @@ Existem classes que podem ser excluídas antes da classificação? Cross width - Espessura do cruzamento + Espessura do cruzamento @@ -16193,17 +16207,17 @@ Existem classes que podem ser excluídas antes da classificação? Picture width changed - Largura da imagem alterada + Largura da imagem alterada Picture height changed - Altura da imagem alterada + Altura da imagem alterada Picture rotation changed - Rotação da imagem alterada + Rotação da imagem alterada @@ -16213,12 +16227,12 @@ Existem classes que podem ser excluídas antes da classificação? Rotation synchronisation toggled - + Alterada a sincronização da rotação Rotation map changed - Rotação do mapa alterada + Rotação do mapa alterada @@ -18324,22 +18338,22 @@ and current file is [%3] Bottom Left - Inferior Esquerdo + Inferior Esquerdo Top Left - Superior Esquerdo + Superior Esquerdo Top Right - Superior Direito + Superior Direito Bottom Right - Inferior Direito + Inferior Direito @@ -18347,12 +18361,12 @@ and current file is [%3] Copyright Label Decoration - + Direitos de autor do rótulo de Decoração Enable copyright label - Habilita rótulo de copyright + Ativar rótulo de copyright @@ -18376,42 +18390,42 @@ p, li { white-space: pre-wrap; } Bottom Left - Inferior Esquerdo + Inferior Esquerdo Top Left - Superior Esquerdo + Superior Esquerdo Bottom Right - Inferior Direito + Inferior Direito Top Right - Superior Direito + Superior Direito &Orientation - &Orientação + &Orientação Horizontal - Horizontal + Horizontal Vertical - Vertical + Vertical &Color - &Cor + &Cor @@ -18422,27 +18436,27 @@ p, li { white-space: pre-wrap; } Error - Erro + Erro No active layer - Nenhuma camada ativa + Nenhuma camada ativa Please select a raster layer - Por favor seleccione uma camada raster + Por favor seleccione uma camada raster Invalid raster layer - + Camada raster inválida Layer CRS must be equal to project CRS - + SRC da camada tem de ser igual ao SRC do projecto @@ -18450,77 +18464,77 @@ p, li { white-space: pre-wrap; } Dialog - Diálogo + Diálogo Enable grid - + Ativar grelha Interval X - Intervalo X + Intervalo X Interval Y - Intervalo Y + Intervalo Y Grid type - + Tipo de grelha Line symbol - + Símbolo de linha Draw annotation - Desenha anotação + Desenhar anotação Annotation direction - Direção da anotação + Direção da anotação Font... - Fonte... + Fonte... Distance to map frame - Distância a moldura do mapa + Distância à moldura do mapa Coordinate precision - Precisão da coordenada + Precisão da coordenada Marker symbol - + Símbolo de marcador Offset X - Deslocamento X + Deslocamento X Offset Y - Deslocamento Y + Deslocamento Y Update Interval / Offset from - + Atualize intervalo / Deslocamento de @@ -18530,46 +18544,46 @@ p, li { white-space: pre-wrap; } Active Raster Layer - + Camada raster ativa Line - Linha + Linha Marker - Marcador + Marcador Horizontal - Horizontal + Horizontal Vertical - Vertical + Vertical Horizontal and vertical - + Horizontal e vertical Boundary direction - Direção limite + Direção limite Horizontal and Vertical - Horizontal e Vertical + Horizontal e Vertical @@ -18577,27 +18591,27 @@ p, li { white-space: pre-wrap; } Bottom Left - Inferior Esquerdo + Inferior Esquerdo Top Left - Superior Esquerdo + Superior Esquerdo Top Right - Superior Direito + Superior Direito Bottom Right - Inferior Direito + Inferior Direito North arrow pixmap not found - Pixmap da seta norte não encontrado + Pixmap da seta de norte não encontrado @@ -18605,62 +18619,62 @@ p, li { white-space: pre-wrap; } North Arrow Decoration - + Decoração da seta de norte Preview of north arrow - Pré-visualização da rosa dos ventos + Pré-visualização da seta de norte Angle - Ângulo + Ângulo Placement - + Posicionamento Placement on screen - Posicionamento na Tela + Posicionamento no ecrã Top Left - Superior Esquerdo + Superior Esquerdo Top Right - Superior Direito + Superior Direito Bottom Left - Inferior Esquerdo + Inferior Esquerdo Bottom Right - Inferior Direito + Inferior Direito Enable North Arrow - Habilitar Rosa dos Ventos + Ativar Seta de Norte Set direction automatically - Configurar a direção automaticamente + Configurar a direção automaticamente Pixmap not found - Pixmap não encontrado + Pixmap não encontrado @@ -18668,22 +18682,22 @@ p, li { white-space: pre-wrap; } Bottom Left - Inferior Esquerdo + Inferior Esquerdo Top Left - Superior Esquerdo + Superior Esquerdo Top Right - Superior Direito + Superior Direito Bottom Right - Inferior Direito + Inferior Direito @@ -18698,72 +18712,72 @@ p, li { white-space: pre-wrap; } Bar - Barra + Barra Box - Caixa + Caixa km - km + km mm - mm + mm cm - cm + cm m - m + m miles - milhas + milhas mile - milha + milha inches - polegadas + polegadas foot - + feet - + degree - grau + grau degrees - graus + graus unknown - desconhecido + desconhecido @@ -18781,32 +18795,32 @@ p, li { white-space: pre-wrap; } Top Left - Superior Esquerdo + Superior Esquerdo Top Right - Superior Direito + Superior Direito Bottom Left - Inferior Esquerdo + Inferior Esquerdo Bottom Right - Inferior Direito + Inferior Direito Scale bar style - Estilo de barra de escala + Estilo da barra de escala Select the style of the scale bar - Selecione o estilo da barra de escala + Selecione o estilo da barra de escala @@ -18821,53 +18835,53 @@ p, li { white-space: pre-wrap; } Box - Caixa + Caixa Bar - Barra + Barra Color of bar - Cor da barra + Cor da barra Click to select the color - Clique para selecionar a cor + Clique para selecionar a cor Size of bar - Tamanho da barra + Tamanho da barra Enable scale bar - Habilitar barra de escala + Ativa barra de escala Automatically snap to round number on resize - Arredondar números automaticamente ao redimensionar + Ajustar automaticamente para arredondar o número ao redimensionar metres/km - metros/km + metros/km feet/miles - pés/milhas + pés/milhas degrees - graus + graus @@ -18883,12 +18897,12 @@ p, li { white-space: pre-wrap; } &Add Delimited Text Layer - &Adicionar uma camada a partir de um texto delimitado + &Adicionar camada de texto delimitado Add a delimited text file as a map layer. The file must have a header row containing the field names. The file must either contain X and Y fields with coordinates in decimal units or a WKT field. - + Adicionar um ficheiro de texto delimitado como uma camada de mapa. O ficheiro deve ter uma linha de cabeçalho contendo os nomes de campo. O ficheiro deve conter campos X e Y com coordenadas em unidades decimais ou um campo WKT. @@ -18898,7 +18912,7 @@ p, li { white-space: pre-wrap; } Cannot get Delimited Text select dialog from provider. - + Não é possível obter texto delimitado do fornecedor. &Delimited text @@ -18907,7 +18921,7 @@ p, li { white-space: pre-wrap; } DelimitedTextLayer - CamadaTextoDelimitado + CamadaTextoDelimitado Add a delimited text file as a map layer. The file must have a header row containing the field names. X and Y fields are required and must contain coordinates in decimal units. @@ -19084,7 +19098,7 @@ p, li { white-space: pre-wrap; } Note: the following lines were not loaded because QGIS was unable to determine values for the x and y coordinates: - + Nota: as seguintes linhas não foram carregadas, porque o QGIS foi incapaz de determinar os valores para as coordenadas X e Y: @@ -19102,7 +19116,7 @@ p, li { white-space: pre-wrap; } Choose a delimited text file to open - Escolha um arquivo de texto delimitado para abrir + Escolha um ficheiro de texto delimitado para abrir @@ -19112,7 +19126,7 @@ p, li { white-space: pre-wrap; } Well Known Text files - + Ficheiros Well Known Text (WKT) @@ -19125,99 +19139,99 @@ p, li { white-space: pre-wrap; } Create a Layer from a Delimited Text File - Criar uma camada a partir de arquivo de texto delimitado + Criar uma camada a partir de ficheiro de texto delimitado File Name - + Nome do ficheiro Full path to the delimited text file - Caminho completo para o arquivo de texto delimitado + Caminho completo para o ficheiro de texto delimitado Full path to the delimited text file. In order to properly parse the fields in the file, the delimiter must be defined prior to entering the file name. Use the Browse button to the right of this field to choose the input file. - Caminho completo para o arquivo texto delimitado. Para analisar apropriadamente os campos do arquivo, o delimitador deve ser escolhido antes do arquivo. Use o botão procurar ao lado deste campo para escolher um arquivo de entrada. + Caminho completo para o ficheiro de texto delimitado. Para analisar apropriadamente os campos do ficheiro, o delimitador deve ser escolhido antes do arquivo. Use o botão procurar ao lado deste campo para escolher um ficheiro de entrada. Layer name - Nome da camada + Nome da camada Name to display in the map legend - Nome para exibir na legenda do mapa + Nome para exibir na legenda do mapa Name displayed in the map legend - Nome exibido na legenda do mapa + Nome exibido na legenda do mapa Browse to find the delimited text file to be processed - Procurar arquivo de texto delimitado para processamento + Procurar ficheiro de texto delimitado para processamento Use this button to browse to the location of the delimited text file. This button will not be enabled until a delimiter has been entered in the <i>Delimiter</i> box. Once a file is chosen, the X and Y field drop-down boxes will be populated with the fields from the delimited text file. - Utilize este botão para procurar o arquivo texto delimitado. O botão não será habilitado enquanto um delimitador não houver sido escolhido no campo <i>Delimitador</i>. Depois de escolhido um arquivo, as caixas de seleção X e Y serão preenchidas com os campos do arquivo texto. + Utilize este botão para procurar o ficheiro de texto delimitado. O botão não será habilitado enquanto um delimitador não tiver sido escolhido no campo <i>Delimitador</i>. Depois de escolhido um ficheiro, as caixas de seleção X e Y serão preenchidas com os campos do ficheiro texto. Browse... - Procurar... + Procurar... Selected delimiters - + Delimitadores selecionados The delimiter is a regular expression - O delimitador é uma expressão regular + O delimitador é uma expressão regular Regular expression - Expressão regular + Expressão regular The delimiter is taken as is - O delimitador reconhecido é + O delimitado é tomado como está Plain characters - Caracteres planos + Caracteres planos Tab - + Tabulação Space - Espaço + Espaço Comma - Vírgula + Vírgula Semicolon - + Ponto e vírgula @@ -19227,22 +19241,22 @@ p, li { white-space: pre-wrap; } Delimiter to use when splitting fields in the text file. The delimiter can be more than one character. - Delimitador usado ao separar os campos do arquivo texto. O delimitador pode possuir mais de um caractere. + Delimitador usado ao separar os campos do ficheiro texto. O delimitador pode possuir mais de um caracter. Delimiter to use when splitting fields in the delimited text file. The delimiter can be 1 or more characters in length. - Delimitador usado ao separar os campos do arquivo texto. O delimitador pode possuir um ou mais caracteres. + Delimitador usado ao separar os campos do ficheiro texto. O delimitador pode possuir um ou mais caracteres. Start import at row - + Iniciar importação na linha The file contains X and Y coordinate columns - + O ficheiro contêm colunas de coordenadas X e Y @@ -19252,7 +19266,7 @@ p, li { white-space: pre-wrap; } <p align="right">X field</p> - <p align="right">Campo X</p> + <p align="right">Campo X</p> @@ -19262,12 +19276,12 @@ p, li { white-space: pre-wrap; } Name of the field containing x values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. - Nome do campo contendo valores de X. Escolha um campo da lista. A lista é gerada a partir da linha de cabeçalho do arquivo. + Nome do campo que contém os valores de X. Escolha um campo da lista. A lista é gerada a partir da linha de cabeçalho do ficheiro de texto delimitado. <p align="right">Y field</p> - <p align="right">Campo Y</p> + <p align="right">Campo Y</p> @@ -19279,12 +19293,12 @@ p, li { white-space: pre-wrap; } Name of the field containing y values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. - Nome do campo contendo valores de Y. Escolha um campo da lista. A lista é gerada a partir da linha de cabeçalho do arquivo. + Nome do campo que contém os valores de Y. Escolha um campo da lista. A lista é gerada a partir da linha de cabeçalho do arquivo. The file contains a well known text geometry field - + O ficheiro contém um campo de geometria well known text @@ -19299,7 +19313,7 @@ p, li { white-space: pre-wrap; } Sample text - Texto de exemplo + Texto de exemplo @@ -19312,17 +19326,17 @@ p, li { white-space: pre-wrap; } Heading Label - Rótulo do cabeçalho + Rótulo do cabeçalho Detail label - Rótulo do detalhe + Rótulo do detalhe Category label - + Rótulo de categoria @@ -20291,22 +20305,22 @@ p, li { white-space: pre-wrap; } Not available for layer - + Não disponível para a camada Evaluation error - Erro de avaliação + Erro de avaliação Provider error - Erro no provedor + Erro no fornecedor Could not add the new field to the provider. - Impossível adicionar um novo campo ao provedor. + Não foi possível adicionar o novo campo ao fornecedor. @@ -20317,18 +20331,19 @@ p, li { white-space: pre-wrap; } An error occured while evaluating the calculation string: %1 - + Ocorreu um erro ao avaliar a cadeia de cálculo: +%1 Please enter a field name - + Por favor, insira um nome de campo The expression is invalid see (more info) for details - + A expressão é inválida, ver (mais informações) para obter mais detalhes An error occured while evaluating the calculation string. @@ -20340,22 +20355,22 @@ p, li { white-space: pre-wrap; } Field calculator - Calculadora de campo + Calculadora de campo Create a new field - + Criar um novo campo Update existing field - Atualiza um campo existente + Atualizar campo existente Only update selected features - Apenas atualiza feições selecionadas + Apenas atualizar elementos selecionados New field @@ -20364,17 +20379,17 @@ p, li { white-space: pre-wrap; } Output field name - Nome do arquivo de saída + Nome do campo de saída Output field type - Tipo do arquivo de saída + Tipo de campo de saída Output field width - Espessura do campo de saída + Tamanho do campo de saída Output field precision @@ -20403,7 +20418,7 @@ p, li { white-space: pre-wrap; } Width of complete output. For example 123,456 means 6 as field width. - + Tamanho de saída total. Por exemplo 123,456 significa 6 como tamanho do campo. @@ -21932,122 +21947,122 @@ Please reselect a valid file. A5 (148x210 mm) - A5 (148x210 mm) + A5 (148x210 mm) A4 (210x297 mm) - A4 (210x297 mm) + A4 (210x297 mm) A3 (297x420 mm) - A3 (297x420 mm) + A3 (297x420 mm) A2 (420x594 mm) - A2 (420x594 mm) + A2 (420x594 mm) A1 (594x841 mm) - A1 (594x841 mm) + A1 (594x841 mm) A0 (841x1189 mm) - A1 (594x841 mm) + A1 (594x841 mm) B5 (176 x 250 mm) - B5 (176 x 250 mm) + B5 (176 x 250 mm) B4 (250 x 353 mm) - B4 (250 x 353 mm) + B4 (250 x 353 mm) B3 (353 x 500 mm) - B3 (353 x 500 mm) + B3 (353 x 500 mm) B2 (500 x 707 mm) - B2 (500 x 707 mm) + B2 (500 x 707 mm) B1 (707 x 1000 mm) - B1 (707 x 1000 mm) + B1 (707 x 1000 mm) B0 (1000 x 1414 mm) - B0 (1000 x 1414 mm) + B0 (1000 x 1414 mm) Legal (8.5x14 inches) - Legal (8.5x14 polegadas) + Legal (8.5x14 polegadas) ANSI A (Letter; 8.5x11 inches) - ANSI A (Carta; 8.5x11 polegadas) + ANSI A (Carta; 8.5x11 polegadas) ANSI B (Tabloid; 11x17 inches) - ANSI B (Tablóide; 11x17 polegadas) + ANSI B (Tablóide; 11x17 polegadas) ANSI C (17x22 inches) - ANSI C (17x22 polegadas) + ANSI C (17x22 polegadas) ANSI D (22x34 inches) - ANSI D (22x34 polegadas) + ANSI D (22x34 polegadas) ANSI E (34x44 inches) - ANSI E (34x44 polegadas) + ANSI E (34x44 polegadas) Arch A (9x12 inches) - Arch A (9x12 polegadas) + Arch A (9x12 polegadas) Arch B (12x18 inches) - Arch B (12x18 polegadas) + Arch B (12x18 polegadas) Arch C (18x24 inches) - Arch C (18x24 polegadas) + Arch C (18x24 polegadas) Arch D (24x36 inches) - Arch D (24x36 polegadas) + Arch D (24x36 polegadas) Arch E (36x48 inches) - Arch E (36x48 polegadas) + Arch E (36x48 polegadas) Arch E1 (30x42 inches) - Arch E1 (30x42 polegadas) + Arch E1 (30x42 polegadas) @@ -22055,43 +22070,43 @@ Please reselect a valid file. Configure Georeferencer - Configurar georreferenciador + Configurar georreferenciador Point tip - Ponteira + Ponteiro Show IDs - Mostrar IDs + Mostrar IDs Show coords - Mostrar coordenadas + Mostrar coordenadas PDF report - Relatório PDF + Relatório PDF Left margin - Margem esquerda + Margem esquerda mm - mm + mm Right margin - Margem direita + Margem direita @@ -22101,27 +22116,27 @@ Please reselect a valid file. PDF map - Mapa em PDF + Mapa em PDF Paper size - Tamanho do papel + Tamanho do papel Residual units - Unidades residuais + Unidades residuais Pixels - Pixels + Pixels Use map units if possible - Usar unidades do mapa se possível + Usar unidades do mapa se possível @@ -22129,7 +22144,7 @@ Please reselect a valid file. Description georeferencer - Descrição do Georreferenciador + Descrição do Georreferenciador @@ -22164,7 +22179,7 @@ p, li { white-space: pre-wrap; } &Georeferencer - &Georreferenciador + &Georreferenciador @@ -22172,17 +22187,17 @@ p, li { white-space: pre-wrap; } All other files (*) - Todos os outros arquivos (*) + Todos os outros ficheiros (*) Open raster - Abrir raster + Abrir raster %1 is not a supported raster data source - %1 é uma fonte de dados raster sem suporte + %1 não é uma fonte de dados raster suportada @@ -22192,19 +22207,19 @@ p, li { white-space: pre-wrap; } Raster loaded: %1 - Raster carregado: %1 + Raster carregado: %1 Georeferencer - %1 - Georreferenciador - %1 + Georreferenciador - %1 Transform: - Transformar: + Transformar: @@ -22219,33 +22234,33 @@ p, li { white-space: pre-wrap; } Info - Info + Informações GDAL scripting is not supported for %1 transformation - Script GDAL não suportado para %1 a transformação + Script GDAL não é suportado para %1 transformação Load GCP points - Carregar pontos GCP + Carregar pontos GCP No GCP points to save - Sem pontos GCP para salvar + Sem pontos GCP para salvar Save GCP points - Salvar pontos GCP + Salvar pontos GCP Please load raster to be georeferenced - Carregue o raster para ser georreferenciado + Por favor, carregue o raster a ser georreferenciado @@ -22256,52 +22271,52 @@ p, li { white-space: pre-wrap; } Panels - Painéis + Painéis Toolbars - Barra de Ferramentas + Barra de Ferramentas Coordinate: - Coordenada: + Coordenada: Current map coordinate - Coordenada atual do mapa + Coordenada atual do mapa Current transform parametrisation - Transformação de parametrisação atual + Parametrização de transformação atual Unable to open GCP points file %1 - Impossível abrir arquivos de pontos GCP %1 + Impossível abrir arquivos de pontos GCP %1 Could not write to %1 - Não foi possível gravar para %1 + Não foi possível gravar para %1 Save GCPs - Salvar GCPs + Salvar GCPs Georeferencer - Georreferenciador + Georreferenciador Save GCP points? - Salvar pontos GCP? + Salvar pontos GCP? @@ -22311,13 +22326,13 @@ p, li { white-space: pre-wrap; } <p>The selected file already seems to have a world file! Do you want to replace it with the new world file?</p> - <p>O arquivo selecionado já parece ter um arquivo "world"! Deseja substituí-lo com o novo arquivo "world"?</p> + <p>O arquivo selecionado já parece ter um ficheiro "world"! Deseja substituí-lo com o novo ficheiro "world"?</p> Failed to compute GCP transform: Transform is not solvable - Falha ao calcular transformação GCP: Transformação não é solúvel + Falha ao calcular transformação GCP: Transformação não é solucionável @@ -22327,37 +22342,37 @@ p, li { white-space: pre-wrap; } Transformation parameters - Parâmetros de transformação + Parâmetros de transformação Translation x - Translação x + Translação x Translation y - Translação y + Translação y Scale x - Escala x + Escala x Scale y - Escala y + Escala y Rotation [degrees] - Rotação [graus] + Rotação [graus] Residuals - Residuais + Residuais @@ -22371,28 +22386,28 @@ p, li { white-space: pre-wrap; } GCP file - + Ficheiro GCP None - Nenhum + Nenhum Coordinate of image(column/line) - + Coordenada da imagem (coluna/linha) pixels - pixels + pixels Mean error [%1] - Erro médio [%1] + Erro médio [%1] @@ -22407,27 +22422,27 @@ p, li { white-space: pre-wrap; } Translation (%1, %2) - Translação (%1, %2) + Translação (%1, %2) Scale (%1, %2) - Escala (%1, %2) + Escala (%1, %2) Rotation: %1 - Rotação: %1 + Rotação: %1 Mean error: %1 - Erro médio: %1 + Erro médio: %1 Copy in clipboard - Copiar para a área de transferência + Copiar na área de transferência @@ -22437,47 +22452,47 @@ p, li { white-space: pre-wrap; } GDAL script - Script GDAL + Script GDAL Please set transformation type - Marque o tipo de transformação + Por favor, defina o tipo de transformação Please set output raster name - Coloque o nome do raster de saída + Por favor, defina nome do raster de saída %1 requires at least %2 GCPs. Please define more - %1 necessita pelo menos %2 GCPs. Defina mais + %1 necessita pelo menos %2 GCPs. Por favor, defina mais Linear - Linear + Linear Helmert - Helmert + Helmert Polynomial 1 - Polinomial 1 + Polinomial 1 Polynomial 2 - Polinomial 2 + Polinomial 2 Polynomial 3 - Polinomial 3 + Polinomial 3 @@ -22487,17 +22502,17 @@ p, li { white-space: pre-wrap; } Projective - Projetiva + Projetiva Not set - Não definido + Não definido World file exists - Arquivo "world" já existe + Ficheiro "world" já existe @@ -22505,7 +22520,7 @@ p, li { white-space: pre-wrap; } Georeferencer - Georreferenciador + Georreferenciador @@ -22517,23 +22532,23 @@ p, li { white-space: pre-wrap; } View - Ver + Ver Edit - Editar + Editar Settings - Opções + Configurações GCP table - Tabela GCP + Tabela GCP @@ -22544,18 +22559,18 @@ p, li { white-space: pre-wrap; } Open raster - Abrir raster + Abrir raster Ctrl+O - Ctrl+O + Ctrl+O Zoom In - Aproximar + Aproximar @@ -22566,7 +22581,7 @@ p, li { white-space: pre-wrap; } Zoom Out - Afastar + Afastar @@ -22577,7 +22592,7 @@ p, li { white-space: pre-wrap; } Zoom to Layer - Ver a camada + Aproximar à Camada @@ -22588,19 +22603,19 @@ p, li { white-space: pre-wrap; } Pan - Movimentar + Movimentar Transformation settings - Configurações de transformação + Configurações de transformação Add point - Adicionar ponto + Adicionar ponto @@ -22611,46 +22626,46 @@ p, li { white-space: pre-wrap; } Delete point - Excluir ponto + Apagar ponto Ctrl+D - Ctrl+D + Ctrl+D Quit - Sair + Sair Start georeferencing - Iniciar georreferenciamento + Iniciar georreferenciamento Ctrl+G - + Ctrl+G Generate GDAL script - Gera script GDAL + Gerar script GDAL Ctrl+C - Ctrl+C + Ctrl+C Link Georeferencer to QGis - Conexta Georreferenciador ao QGIS + Conecta Georreferenciador ao QGIS @@ -22662,64 +22677,64 @@ p, li { white-space: pre-wrap; } Save GCP points as... - Salvar pontos GCP como... + Salvar pontos GCP como... Ctrl+S - Ctrl+S + Ctrl+S Load GCP points - Carregar pontos GCP + Carregar pontos GCP Ctrl+L - Ctrl+L + Ctrl+L Configure Georeferencer - Configura o Georreferenciador + Configurar o Georreferenciador Ctrl+P - Ctrl+P + Ctrl+P Raster properties - Propriedades do raster + Propriedades do raster Move GCP point - Move ponto GCP + Mover ponto GCP Zoom Next - Próxima visualização + Próxima visualização Zoom Last - Última visualização + Última visualização Local histogram stretch - + Histograma local Full histogram stretch - Expansão de histrograma completa + Histograma completo @@ -25803,7 +25818,6 @@ na liha %2 coluna %3 unhandled layers - @@ -29374,7 +29388,7 @@ http://my.host.com/cgi-bin/mapserv.exe The calculations are based on: - + Os cálculos baseiam-se em: @@ -29419,7 +29433,7 @@ http://my.host.com/cgi-bin/mapserv.exe Segments [%1] - + Segmentos [%1] @@ -29427,12 +29441,12 @@ http://my.host.com/cgi-bin/mapserv.exe Incorrect measure results - Resultados de medidas incorretos + Resultados de medidas incorretos <p>This map is defined with a geographic coordinate system (latitude/longitude) but the map extents suggests that it is actually a projected coordinate system (e.g., Mercator). If so, the results from line or area measurements will be incorrect.</p><p>To fix this, explicitly set an appropriate map coordinate system using the <tt>Settings:Project Properties</tt> menu. - <p>Este mapa é definido com um sistema de coordenadas geográficas (latitude/longitude) porém os limites do mapa sugerem que este é efetivamente um sistema de coordenadas projetado (e.g., Mercator). Se for, os resultados de medida de de linhas ou áreas poderão estar incorretos.</p><p>Para definir este sistema de coordenadas, defina um mapa com sistema de coordenadas apropriado usando o menu<tt>Configurações:Propriedades do Projeto</tt>. + <p>Este mapa é definido com um sistema de coordenadas geográficas (latitude/longitude) porém os limites do mapa sugerem que este é efetivamente um sistema de coordenadas projetado (e.g., Mercator). Se for, os resultados de medida de linhas ou áreas poderão estar incorretos.</p><p>Para definir este sistema de coordenadas, defina um mapa com sistema de coordenadas apropriado usando o menu<tt>Configurações:Propriedades do Projeto</tt>. @@ -30215,7 +30229,7 @@ http://my.host.com/cgi-bin/mapserv.exe Create a new %1 connection - + Criar uma nova conexção de %1 @@ -30225,12 +30239,12 @@ http://my.host.com/cgi-bin/mapserv.exe Ignore axis orientation - + Ignorar orientação do eixo Save connection - Salvar conexão + Salvar conexão @@ -30240,7 +30254,7 @@ http://my.host.com/cgi-bin/mapserv.exe Saving passwords - + Salvar passwords @@ -30264,17 +30278,17 @@ Note: giving the password is optional. It will be requested interactivly, when n If the service requires basic authentication, enter a user name and optional password - Se o serviço requer autenticação básica, entre com um nome de usuário em uma senha opcional + Se o serviço requer autenticação básica, entre com um nome de utilizador e uma senha opcional Name of the new connection - Nome da nova conexão + Nome da nova conexão HTTP address of the Web Map Server - Endereço HTTP do Web Map Server + Endereço HTTP do Web Map Server @@ -30289,22 +30303,22 @@ Note: giving the password is optional. It will be requested interactivly, when n Ignore axis orientation (WMS 1.3/WMTS) - + Ignorar orientação do eixo (WMS 1.3/WMTS) Invert axis orientation - + Ignorar orientação do eix Create a new WMS connection - Cria uma nova conexão WMS + Criar uma nova conexão WMS Connection details - Detalhes da conexão + Detalhes da conexão If the WMS requires basic authentication, enter a user name and optional password @@ -30313,12 +30327,12 @@ Note: giving the password is optional. It will be requested interactivly, when n Password - Senha + Senha &User name - &Usuário + &Utilizador @@ -31004,7 +31018,7 @@ p, li { white-space: pre-wrap; } WMS Password for %1 - WMS senha para %1 + WMS senha para %1 @@ -31012,12 +31026,12 @@ p, li { white-space: pre-wrap; } Edit... - Editar... + Editar... Delete - Apagar + Apagar @@ -31025,7 +31039,7 @@ p, li { white-space: pre-wrap; } &Add - + &Adicionar @@ -31110,7 +31124,7 @@ p, li { white-space: pre-wrap; } Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. - Muitos servidores WMS foram adicionados a lista de servidores. Note que se você acessa a internet via proxy, será necessário acertar as configurações proxy no diálogo de opções do QGIS + Muitos servidores WMS foram adicionados a lista de servidores. Note que se você acessa a internet via proxy, será necessário acertar as configurações proxy no diálogo de opções do QGIS. @@ -31138,13 +31152,13 @@ p, li { white-space: pre-wrap; } Add Layer(s) from a Server - Adiciona camada(s) de um servidor + Adicionar camada(s) de um servidor Layers - Camadas + Camadas @@ -31154,89 +31168,89 @@ p, li { white-space: pre-wrap; } &New - &Novo + &Novo Edit - Editar + Editar Delete - Apagar + Apagar Load connections from file - + Carregar conexões a partir de ficheiro Load - + Carregar Save connections to file - + Salvar conexções para ficheiro Save - Salvar + Salvar Adds a few example WMS servers - Adiciona algum exemplo de servidor WMS + Adicionar alguns exemplos de servidores WMS Add default servers - Adicionar servidores padrões + Adicionar servidores padrão ID - ID + ID Name - Nome + Nome Title - Título + Título Abstract - Resumo + Resumo Time - + Tempo Format - Formato + Formato Options - Opções + Opções Layer name - Nome da camada + Nome da camada @@ -31246,18 +31260,18 @@ p, li { white-space: pre-wrap; } Feature limit for GetFeatureInfo - + Limite de recurso para GetFeatureInfo Coordinate Reference System - + Sistema de Referência de Coordenadas Change ... - Mudar ... + Mudar ... @@ -31281,37 +31295,37 @@ Always network: always load from network and do not check if the cache has a val Layer Order - Ordem de camada + Ordem da camada Move selected layer UP - + Mover camada selecionada para cima Up - Cima + Cima Move selected layer DOWN - + Mover camada selecionada para baixo Down - Baixo + Baixo Layer - Camada + Camada Style - Estilo + Estilo @@ -31321,47 +31335,47 @@ Always network: always load from network and do not check if the cache has a val Styles - Estilos + Estilos Size - Tamanho + Tamanho CRS - SRC + SRC Server Search - Busca de servidor + Pesquisa de servidor Search - + Pesquisa Description - Descrição + Descrição URL - URL + URL Add selected row to WMS list - Adicionar linha selecionada para lista WMS + Adicionar linha selecionada para lista WMS Ready - Pronto + Pronto @@ -34101,7 +34115,7 @@ Verifique se você tem privilégios para usar o SELECT na tabela que contém geo QgsPluginInstaller QGIS Python Plugin Installer - Instalador de Complementos Python + Instalador de Complementos Python Nothing to remove! Plugin directory doesn't exist: @@ -34125,23 +34139,23 @@ Verifique se você tem privilégios para usar o SELECT na tabela que contém geo Fetch Python Plugins... - Busca Complementos Python ... + Buscar Complementos Python ... Install more plugins from remote repositories - Instalar mais complementos de repositórios remotos + Instalar mais complementos de repositórios remotos Looking for new plugins... - Procurando por novos complementos... + Procurando por novos complementos... QGIS Plugin Installer update - Atualizar o Instalador de Complementos do QGIS + Atualizar o Instalador de Complementos do QGIS The Plugin Installer has been updated. Please restart QGIS prior to using it - O Instalador de Complementos foi atualizado. Por favor, reinicie o QGIS para usá-lo + O Instalador de Complementos foi atualizado. Por favor, reinicie o QGIS para usá-lo QGIS Plugin Conflict: @@ -34153,128 +34167,128 @@ Verifique se você tem privilégios para usar o SELECT na tabela que contém geo There is a new plugin available - Existe um novo complemento disponível + Existe um novo complemento disponível There is a plugin update available - Existe uma atualização do complemento disponível + Existe uma atualização do complemento disponível Error reading repository: - Erro ao ler o repositório: + Erro ao ler o repositório: QgsPluginInstallerDialog QGIS Python Plugin Installer - Instalador de Complemento Python + Instalador de Complemento Python all repositories - todos repositórios + todos os repositórios Install/upgrade plugin - Instala/atualiza complemento + Instalar/atualizar complemento Error reading repository: - Erro ao ler o repositório: + Erro ao ler o repositório: connected - conectado + conectado This repository is connected - Esse repositório está conectado + Esse repositório está conectado unavailable - Indisponível + Indisponível This repository is enabled, but unavailable - Este repositório está habilitado, mas não está disponível + Este repositório está ativado, mas não está disponível disabled - desabilitado + desativado This repository is disabled - Esse repositório está desabilitado + Esse repositório está desativado This repository is blocked due to incompatibility with your Quantum GIS version - Este repositório está bloqueado devido à incompatibilidade com sua versão do QGIS + Este repositório está bloqueado devido à incompatibilidade com sua versão do QGIS orphans - órfãos + órfãos any status - qualquer estado + qualquer estado not installed - não instalado + não instalado installed - Instalado + Instalado upgradeable and news - atualizações e notícias + atualizações e notícias This plugin is not installed - Este complemento não está instalado + Este complemento não está instalado This plugin is installed - Este complemento está instalado + Este complemento está instalado This plugin is installed, but there is an updated version available - Este complemento está instalado, mas existe uma versão atualizada disponível + Este complemento está instalado, mas existe uma versão atualizada disponível This plugin is installed, but I can't find it in any enabled repository - Este complemento está instalado, mas não está sendo encontrado em nenhum repositório habilitado + Este complemento está instalado, mas não está sendo encontrado em nenhum repositório ativado This plugin is not installed and is seen for the first time - Este complemento não está instalado e é visto pela primeira vez + Este complemento não está instalado e é visto pela primeira vez This plugin is installed and is newer than its version available in a repository - Este complemento está instalado e é mais recente que a versão disponível no repositório + Este complemento está instalado e é mais recente que a versão disponível no repositório This plugin is incompatible with your Quantum GIS version and probably won't work. - Este complemento é incompatível com a sua versão QGIS e provavelmente não funcionará. + Este complemento é incompatível com a sua versão QGIS e provavelmente não funcionará. The required Python module is not installed. For more information, please visit its homepage and Quantum GIS wiki. - O módulo Python necessário não está instalado. + O módulo Python necessário não está instalado. Para maiores informações, visite sua página no wiki QGIS. This plugin seems to be broken. It has been installed but can't be loaded. Here is the error message: - Este complemento parece estar quebrado. + Este complemento parece estar quebrado. Foi instalado, mas não pode ser carregado. Aqui está a mensagem de erro: upgradeable - Atualizável + Atualizável new! @@ -34282,7 +34296,7 @@ Aqui está a mensagem de erro: invalid - Inválido + Inválido Note that it's an uninstallable core plugin @@ -34290,39 +34304,39 @@ Aqui está a mensagem de erro: installed version - Versão instalada + Versão instalada available version - Versão disponível + Versão disponível That's the newest available version - Essa é a versão mais recente disponível + Essa é a versão mais recente disponível There is no version available for download - Não há versão disponível para baixar + Não há versão disponível para baixar This plugin is broken - Este complemento está quebrado + Este complemento está quebrado This plugin requires a newer version of Quantum GIS - Este complemento requer uma nova versão do QGIS + Este complemento requer uma nova versão do QGIS at least - pelo menos + pelo menos This plugin requires a missing module - Este complemento requer um módulo em falta + Este complemento requer um módulo em falta only locally available - apenas localmente disponível + apenas disponível localmente - %d plugins available @@ -34330,15 +34344,15 @@ Aqui está a mensagem de erro: Install plugin - Instalar complemento + Instalar complemento Reinstall plugin - Reinstalar complemento + Reinstalar complemento Upgrade plugin - Atualizar complemento + Atualizar complemento Downgrade plugin @@ -34350,11 +34364,11 @@ Aqui está a mensagem de erro: Plugin installation failed - A instalação do complemento falhou + A instalação do complemento falhou Plugin has disappeared - O complemento desapareceu + O complemento desapareceu The plugin seems to have been installed but I don't know where. Probably the plugin package contained a wrong named directory. @@ -34364,47 +34378,47 @@ Procure a lista de complementos instalados. Tenho quase certeza que você vai en Plugin installed successfully - Complemento instalado corretamente + Complemento instalado com sucesso Python plugin installed. Now you need to enable it in Plugin Manager. - Complemento Python instalado. -Agora você precisa habilitá-lo no Gerenciador de Complementos. + Complemento Python instalado. +Agora você precisa ativá-lo no Gerenciador de Complementos. Plugin reinstalled successfully - Complemento reinstalado com sucesso + Complemento reinstalado com sucesso Python plugin reinstalled. You need to restart Quantum GIS in order to reload it. - Complemento Python reinstalado. -Você precisará reiniciar QGIS para recarregá-lo. + Complemento Python reinstalado. +Você precisa reiniciar QGIS para recarregá-lo. The plugin is designed for a newer version of Quantum GIS. The minimum required version is: - O complemento é projetado para uma versão mais recente do QGIS. A versão mínima requerida é: + O complemento é projetado para uma versão mais recente do QGIS. A versão mínima requerida é: The plugin depends on some components missing on your system. You need to install the following Python module in order to enable it: - O complemento depende de alguns componentes que faltam no seu sistema. Você precisa instalar o módulo Python seguinte, a fim de habilitá-lo: + O complemento depende de alguns componentes que faltam no seu sistema. Você precisa instalar o módulo Python seguinte, a fim de habilitá-lo: The plugin is broken. Python said: - O complemento está quebrado. Python disse: + O complemento está quebrado. Python disse: Plugin uninstall failed - Falha na desinstalação do complemento + Falha na desinstalação do complemento Are you sure you want to uninstall the following plugin? - Você tem certeza que quer desinstalar o complemento a seguir? + Você tem certeza que quer desinstalar o complemento a seguir? Warning: this plugin isn't available in any accessible repository! - Atenção: este complemento não está disponível em qualquer repositório acessível! + Atenção: este complemento não está disponível em qualquer repositório acessível! Plugin Installer update uninstalled. Plugin Installer will now close and revert to its primary version. You can find it in the Plugins menu and continue operation. @@ -34412,11 +34426,11 @@ Você precisará reiniciar QGIS para recarregá-lo. Plugin Installer update uninstalled. Please restart QGIS in order to load its primary version. - Atualização do Instalador de complementos desintalada. Por favor, reinicie o QGIS para carrgar em sua primeira versão. + Atualização do Instalador de complementos desintalada. Por favor, reinicie o QGIS para carregar em sua primeira versão. Plugin uninstalled successfully - Complemento desinstalado com sucesso + Complemento desinstalado com sucesso Python plugin uninstalled. Note that you may need to restart Quantum GIS in order to remove it completely. @@ -34428,11 +34442,11 @@ Você precisará reiniciar QGIS para recarregá-lo. Unable to add another repository with the same URL! - Não é possível adicionar outro repositório com a mesma URL! + Não é possível adicionar outro repositório com o mesmo URL! Are you sure you want to remove the following repository? - Tem certeza que deseja remover o seguinte repositório? + Tem certeza que deseja remover o seguinte repositório? @@ -34441,51 +34455,51 @@ Você precisará reiniciar QGIS para recarregá-lo. QGIS Python Plugin Installer - Instalador de Complementos Python + Instalador de Complementos Python Plugins - Complementos + Complementos List of available and installed plugins - Lista de complementos disponíveis e instalados + Lista de complementos disponíveis e instalados Filter: - Filtrar por: + Filtrar: Display only plugins containing this word in their metadata - Mostra apenas complementos que contenham esta palavra em suas informações + Mostra apenas complementos que contenham esta palavra em suas informações Display only plugins from given repository - Mostra apenas complementos do repositório fornecido + Mostra apenas complementos do repositório fornecido all repositories - todos repositórios + todos os repositórios Display only plugins with matching status - Mostra apenas complementos com situação combinada + Mostra apenas complementos com correspondência de estado Status - Situação + Estado @@ -34506,49 +34520,49 @@ Você precisará reiniciar QGIS para recarregá-lo. Author - Autor + Autor Repository - Repositório + Repositório Upgrade all - + Atualizar todos Install, reinstall or upgrade the selected plugin - Instalar, reinstalar ou atualizar o complemento selecionado + Instalar, reinstalar ou atualizar o complemento selecionado Install/upgrade plugin - Instalar/atualizar complemento + Instalar/atualizar complemento Uninstall the selected plugin - Desinstalar o complemento selecionado + Desinstalar o complemento selecionado Uninstall plugin - Desinstalar complemento + Desinstalar complemento Repositories - Repositórios + Repositórios List of plugin repositories - Lista de repositórios de complementos + Lista de repositórios de complementos @@ -34580,7 +34594,7 @@ Você precisará reiniciar QGIS para recarregá-lo. Check for updates on startup - Verificar por atualizações quando iniciar + Verificar por atualizações quando iniciar Add third party plugin repositories to the list @@ -34594,29 +34608,29 @@ Você precisará reiniciar QGIS para recarregá-lo. Add a new plugin repository - Adicionar um novo repositório de complementos + Adicionar um novo repositório de complementos Add... - Adicionar... + Adicionar... Edit the selected repository - Edita o repositório selecionado + Editar o repositório selecionado Edit... - Editar... + Editar... Remove the selected repository - Remove o repositório selecionado + Remover o repositório selecionado @@ -34626,7 +34640,7 @@ Você precisará reiniciar QGIS para recarregá-lo. The plugins will be installed to ~/.qgis/python/plugins - Os complementos serão instalados em + Os complementos serão instalados em ~/home/nome_do_usuário/.qgis/python/plugins (no Linux) @@ -34638,7 +34652,7 @@ Você precisará reiniciar QGIS para recarregá-lo. Close the Installer window - Fechar a janela do instalador + Fechar a janela do instalador @@ -34653,37 +34667,37 @@ Você precisará reiniciar QGIS para recarregá-lo. Configuration of the plugin installer - Configurações do instalador de complemento + Configurações do instalador de complemento every time QGIS starts - toda vez ao iniciar o QGIS + cada vez que o QGIS iniciar once a day - uma vez por dia + uma vez por dia every 3 days - a cada 3 dias + a cada 3 dias every week - a cada semana + a cada semana every 2 weeks - a cada 2 semanas + a cada 2 semanas every month - a cada mês + a cada mês @@ -34701,22 +34715,22 @@ p, li { white-space: pre-wrap; } Allowed plugins - Complementos permitidos + Complementos permitidos Only show plugins from the official repository - Apenas mostrar complementos do repositório oficial + Apenas mostrar complementos do repositório oficial Show all plugins except those marked as experimental - Mostrar todos os complementos, exceto aqueles marcados como experimentais + Mostrar todos os complementos, exceto aqueles marcados como experimentais Show all plugins, even those marked as experimental - Mostrar todos os complementos, mesmo aqueles marcados como experimentais + Mostrar todos os complementos, mesmo aqueles marcados como experimentais @@ -34736,23 +34750,23 @@ p, li { white-space: pre-wrap; } QgsPluginInstallerFetchingDialog Success - Sucesso + Sucesso Resolving host name... - Resolvendo nome da máquina... + Resolvendo nome da máquina... Connecting... - Conectando... + Conectando... Host connected. Sending request... - Máquina conectada. Enviando pedido... + Máquina conectada. Enviando pedido... Downloading data... - Baixando dados... + Transferindo dados... Idle @@ -34760,7 +34774,7 @@ p, li { white-space: pre-wrap; } Closing connection... - Fechando conexão... + Fechando conexão... Error @@ -34772,58 +34786,58 @@ p, li { white-space: pre-wrap; } Fetching repositories - Buscar repositórios + Buscar repositórios Overall progress: - Progresso global: + Progresso global: Abort fetching - Abortar busca + Abortar busca Repository - Repositório + Repositório State - Estado + Estado QgsPluginInstallerInstallingDialog Installing... - Instalando... + Instalando... Resolving host name... - Resolvendo nome da máquina... + Resolvendo nome da máquina... Connecting... - Conectando... + Conectando... Host connected. Sending request... - Máquina conectada. Enviando pedido... + Máquina conectada. Enviando pedido... Downloading data... - Baixando dados... + Transferindo dados... Idle - Desocupado + Desocupado Closing connection... - Fechando conexão... + Fechando conexão... Error @@ -34831,11 +34845,11 @@ p, li { white-space: pre-wrap; } Failed to unzip the plugin package. Probably it's broken or missing from the repository. You may also want to make sure that you have write permission to the plugin directory: - Falha ao descompactar o pacote de complemento. Provavelmente ele está quebrado ou faltando no repositório. Você também pode querer ter certeza de que você tem permissão de gravação para a pasta de complementos: + Falha ao descompactar o pacote de complemento. Provavelmente ele está quebrado ou faltando no repositório. Você também pode querer ter certeza de que tem permissão de gravação para a pasta de complementos: Aborted by user - Interrompido pelo usuário + Interrompido pelo utilizador @@ -34843,17 +34857,17 @@ p, li { white-space: pre-wrap; } QGIS Python Plugin Installer - Instalador de Complementos Python + Instalador de Complementos Python Installing plugin: - Instalando complementos: + Instalando complementos: Connecting... - Conectando... + Conectando... @@ -34861,7 +34875,7 @@ p, li { white-space: pre-wrap; } Plugin Installer - Instalador de complementos + Instalador de complementos @@ -34881,12 +34895,12 @@ p, li { white-space: pre-wrap; } Keep - Manter + Manter Ask me later - Pergunte-me mais tarde + Pergunte-me mais tarde @@ -34901,7 +34915,7 @@ p, li { white-space: pre-wrap; } Error loading plugin - Erro ao carregar complemento + Erro ao carregar complemento @@ -34911,7 +34925,7 @@ p, li { white-space: pre-wrap; } Do you want to uninstall this plugin now? If you're unsure, probably you would like to do this. - Você gostaria de desinstalar este complemento agora? Se você está em dúvida, desinstale-o. + Você gostaria de desinstalar este complemento agora? Se você não tiver certeza, desinstale-o. @@ -34919,7 +34933,7 @@ p, li { white-space: pre-wrap; } Repository details - Detalhes do repositório + Detalhes do repositório @@ -34930,7 +34944,7 @@ p, li { white-space: pre-wrap; } Enter a name for the repository - Entre com um nome para o repositório + Defina um nome para o repositório @@ -34941,18 +34955,18 @@ p, li { white-space: pre-wrap; } Enter the repository URL, beginning with "http://" - Entre com a URL do repositório, iniciar com "http://" + Defina o URL do repositório, iniciar com "http://" Enable or disable the repository (disabled repositories will be omitted) - Habilita ou desabilita o repositório (repositórios desabilitados serão omitidos) + Ativar ou desativar o repositório (repositórios desativos serão omitidos) Enabled - Habilitado + Ativado @@ -34965,12 +34979,12 @@ p, li { white-space: pre-wrap; } &Select All - &Marcar Todos + &Selecionar Todos &Clear All - &Desmarcar Todos + &Limpar Todos @@ -34981,7 +34995,7 @@ p, li { white-space: pre-wrap; } [ incompatible ] - [ incompatível ] + [ incompatível ] @@ -35010,32 +35024,32 @@ p, li { white-space: pre-wrap; } QGIS Plugin Manager - Gerenciador de Complementos do QGIS + Gerenciador de Complementos do QGIS To enable / disable a plugin, click its checkbox or description - Para habilitar/desabilitar um complemento, clique em sua caixa de seleção ou descrição + Para ativar/desativar um complemento, clique em sua caixa de seleção ou descrição &Filter - &Filtrar por: + &Filtrar Plugin Directory: - Pasta com o(s) complemento(s): + Pasta com o(s) complemento(s): Directory - Pasta + Pasta Plugin Installer - Instalador de complementos + Instalador de complementos @@ -35846,7 +35860,7 @@ Database error: %2 Unable to open %1 - Impossível abrir %1 + Impossível abrir %1 @@ -35889,7 +35903,7 @@ Database error: %2 Ignore - + Ignorar @@ -35945,12 +35959,12 @@ Tentar encontrar as camadas perdidas? Coordinate System Restriction - + Restrição de Sistema de Coordenadas No coordinate systems selected. Disabling restriction. - + Não há sistema de coordenadas selecionado. Desactivando restrição. @@ -35960,59 +35974,60 @@ Tentar encontrar as camadas perdidas? CRS %1 was already selected - + SRC %1 já foi selecionado Coordinate System Restrictions - + Restrições do Sistema de Coordenadas The current selection of coordinate systems will be lost. Proceed? - + O sistema de coordenadas corrente será perdido. +Proceder? Enter scale - + Entrar escala Scale denominator - + Denominador de escala Load scales - + Carregar escalas XML files (*.xml *.XML) - Arquivos XML (*.xml *.XML) + Arquivos XML (*.xml *.XML) Save scales - + Salvar escalas Transparency %1% - + Transparência %1% Select a valid symbol - + Selecione um símbolo válido Invalid symbol : - + Símbolo inválido : @@ -36020,22 +36035,22 @@ Proceed? Project Properties - Propriedades do Projeto + Propriedades do Projeto Meters - Metros + Metros Feet - Pés + Pés Decimal degrees - Graus Decimais + Graus Decimais @@ -36045,12 +36060,12 @@ Proceed? General - Geral + Geral Automatic - Automático + Automático @@ -36065,7 +36080,7 @@ Proceed? Manual - Manual + Manual @@ -36082,12 +36097,12 @@ Proceed? decimal places - casas decimais + casas decimais Precision - Precisão + Precisão Digitizing @@ -36109,37 +36124,37 @@ Proceed? Project title - Título do Projeto + Título do Projeto Selection color - Seleção de cor + Seleção de cor Background color - Cor do fundo + Cor do fundo Degree - + Graus Degree display - + Visualização de graus Degrees, Minutes - + Graus, Minutos Project scales - + Escalas do projeto @@ -36151,37 +36166,37 @@ Proceed? ... - ... + ... Coordinate Reference System (CRS) - Sistema de referência de coordenadas (SRC) + Sistema de referência de coordenadas (SRC) Enable 'on the fly' CRS transformation - Habilita transformação SRC "on the fly" + Habilita transformação SRC "on the fly" General settings - Definições gerais + Definições gerais absolute - absoluto + absoluto relative - relativo + relativo Save paths - Salvar caminhos + Salvar caminhos Layer units (only used when CRS transformation is disabled) @@ -36190,7 +36205,7 @@ Proceed? Degrees, Minutes, Seconds - Graus, Minutos, Segundos + Graus, Minutos, Segundos WMS @@ -36199,7 +36214,7 @@ Proceed? OWS Server - + Servidor OWS @@ -36209,37 +36224,37 @@ Proceed? Title - Título + Título Person - + Pessoa Phone - + Telefone Abstract - Resumo + Resumo E-Mail - + E-mail Organization - + Organização Online resource - + Recurso online @@ -36249,52 +36264,52 @@ Proceed? Advertised Extent - + Extensão Min. X - + Min. X Min. Y - + Min. Y Max. X - + Max. X Max. Y - + Max. Y Use Current Canvas Extent - + Usar extensão actual do mapa Coordinate Systems Restrictions - + Restrições do Sistema de Coordenadas Add - + Adicionar Remove - + Remover Used - + Usado @@ -36304,7 +36319,7 @@ Proceed? Used when CRS transformation is turned off - + Usado quando transformação de SRC está desligado @@ -36314,32 +36329,32 @@ Proceed? Default Styles - + Estilos por defeito Default Symbols - + Símbolos por defeito Marker - Marcador + Marcador Line - Linha + Linha Fill - + Preenchimento Color Ramp - Escala de cor + Rampa de cor @@ -36349,17 +36364,17 @@ Proceed? Options - Opções + Opções Assign random colors to symbols - + Atribuir cores aleatórias aos símbolos Opacity - Opacidade + Opacidade @@ -36369,12 +36384,12 @@ Proceed? Maximum width - + Largura máxima Maximum height - + Altura máxima @@ -36384,7 +36399,7 @@ Proceed? Published - + Publicado @@ -36403,7 +36418,7 @@ Proceed? Identifiable layers - Camadas identificáveis + Camadas identificáveis @@ -36419,7 +36434,7 @@ Proceed? Identifiable - Identificável + Identificável @@ -36431,17 +36446,17 @@ Proceed? User Defined Coordinate Systems - Sistema de coordenadas definida pelo usuário + Sistema de Coordenadas definido pelo usuário Geographic Coordinate Systems - Sistema de Soordenadas Geográficas + Sistema de Coordenadas Geográficas Projected Coordinate Systems - Sistema Projetado de Coordenadas + Sistema de Coordenadas Projectado Find projection @@ -36463,7 +36478,7 @@ Proceed? Because of this the projection selector will not work... Erro ao ler arquivo de base de dados de: %1 -Devido ao seletor de projeção não estar em funcionamento... +Devido a isso, o seletor de projeção não estar em funcionamento... @@ -36472,7 +36487,7 @@ Devido ao seletor de projeção não estar em funcionamento... Authority ID - Autoridade de ID + Autoridade ID Search @@ -36489,34 +36504,34 @@ Devido ao seletor de projeção não estar em funcionamento... Coordinate Reference System Selector - Seletor de Sistema de Referência de Coordenadas + Seletor de Sistema de Referência de Coordenadas Filter - Filtro + Filtro Recently used coordinate reference systems - + Sistemas de Referência de Coordenadas utilizados recentemente Coordinate Reference System - Sistema de Referência de Coordenadas + Sistema de Referência de Coordenadas ID - ID + ID Coordinate reference systems of the world - + Sistemas de Referência de Coordenadas do mundo Authority @@ -36529,7 +36544,7 @@ Devido ao seletor de projeção não estar em funcionamento... Hide deprecated CRSs - Ocultar SRCs obsoletos + Ocultar SRCs obsoletos Recently used coordinate references systems @@ -36541,12 +36556,12 @@ Devido ao seletor de projeção não estar em funcionamento... &Test - &Testar + &Testar &Clear - &Limpar + &Limpar Invalid Query @@ -36567,15 +36582,15 @@ Devido ao seletor de projeção não estar em funcionamento... Query Result - Resultado da Consulta + Resultado da Consulta The where clause returned %n row(s). returned test rows - - A cláusula onde retornou %n linha. - A cláusula onde retornou %n linhas. + + A cláusula Where retornou %n linha. + A cláusula Where retornou %n linhas. @@ -36583,14 +36598,14 @@ Devido ao seletor de projeção não estar em funcionamento... Query Failed - A Consulta Falhou + A Consulta falhou An error occurred when executing the query. - + Ocorreu um erro ao executar a consulta. @@ -36598,7 +36613,8 @@ Devido ao seletor de projeção não estar em funcionamento... The data provider said: %1 - + O fornecedor de dados disse: +%1 An error occurred when executing the query @@ -36607,12 +36623,12 @@ The data provider said: Error in Query - Erro na pergunta + Erro na Consulta The subset string could not be set - A sequência de subconjunto não poderia ser definida + A sequência de subconjunto não poderia ser definida @@ -36620,17 +36636,17 @@ The data provider said: Query Builder - Ferramenta de Consulta + Ferramenta de Consulta Datasource - Fonte de dados + Fonte de dados Fields - Campos + Campos @@ -36646,7 +36662,7 @@ p, li { white-space: pre-wrap; } Values - Valores + Valores @@ -36673,7 +36689,7 @@ p, li { white-space: pre-wrap; } Sample - Amostra + Amostra @@ -36689,27 +36705,27 @@ p, li { white-space: pre-wrap; } All - Tudo + Tudo Use unfiltered layer - + Use uma camada não filtrada Operators - Operadores + Operadores = - = + = < - < + < @@ -36774,7 +36790,7 @@ p, li { white-space: pre-wrap; } SQL where clause - Cláusula onde SQL + SQL cláusula Where @@ -36843,7 +36859,7 @@ p, li { white-space: pre-wrap; } Please wait while your report is generated COMMENTED OUT - Aguarde enquanto o seu relatório é gerado + Aguarde enquanto o seu relatório é gerado @@ -36856,12 +36872,12 @@ p, li { white-space: pre-wrap; } Expression valid - Expressão válida + Expressão válida Expression invalid - Expressão inválida + Expressão inválida @@ -40509,7 +40525,6 @@ por escala number of geometry errors - @@ -41019,24 +41034,24 @@ O erro foi: Snapping and Digitizing Options - + Opções de ressalto e digitalização to vertex - ao vértice + ao vértice to segment - ao segmento + ao segmento to vertex and segment - ao vértice e segmento + ao vértice e segmento @@ -41046,7 +41061,7 @@ O erro foi: pixels - pixels + pixels @@ -41069,12 +41084,12 @@ O erro foi: Mode - Modo + Modo Tolerance - Tolerância + Tolerância @@ -41084,12 +41099,12 @@ O erro foi: Avoid Int. - + Evitar Int. Avoid intersections of new polygons - + Evitar interseções de novos polígonos @@ -41099,7 +41114,7 @@ O erro foi: unknown error cause - Causa de erro desconhecida + Causa de erro desconhecido @@ -41153,7 +41168,8 @@ O erro foi: SQLite error: %2 SQL: %1 - + SQLite erro: %2 +SQL: %1 @@ -41192,7 +41208,7 @@ SQL: %1 unknown cause - + causa desconhecida @@ -41202,7 +41218,7 @@ SQL: %1 FAILURE: Field %1 not found. - + FALHA: Campo %1 não foi encontrado. @@ -41223,7 +41239,7 @@ SQL: %1 All - Tudo + Tudo @@ -41241,55 +41257,57 @@ SQL: %1 Geometry column - Coluna de geometria + Coluna de geometria Sql - Sql + Sql SpatiaLite DB - + BD SpatiaLite All files - + Todos os ficheiros SpatiaLite DB Open Error - Erro de abertura no SpatiaLite DB + Erro de abertura na DB SpatiaLite Database does not exist: %1 - + Base de dados não existe: %1 Failure while connecting to: %1 %2 - Falha ao conectar-se a: %1 + Falha ao conectar-se a: %1 %2 SpatiaLite Error - + Erro SpatiaLite Unexpected error when working with: %1 %2 - + Erro inesperado ao trabalhar com: %1 + +%2 seems to be a valid SQLite DB, but not a SpatiaLite's one ... @@ -41302,7 +41320,7 @@ SQL: %1 Choose a SpatiaLite/SQLite DB to open - Escolher uma SpatiaLite/SQLite DB para abrir + Escolher uma BD SpatiaLite/SQLite para abrir @@ -41312,24 +41330,24 @@ SQL: %1 Select Table - Selecionar Tabela + Selecionar Tabela You must select a table in order to add a Layer. - Você deve selecionar uma tabela para poder adicionar uma Camada. + Você deve selecionar uma tabela para poder adicionar uma Camada. SpatiaLite getTableInfo Error - Erro SpatiaLite getTableInfo + Erro SpatiaLite getTableInfo Failure exploring tables from: %1 %2 - Falha ao explorar tabelas de: %1 + Falha ao explorar tabelas de: %1 %2 @@ -41341,27 +41359,27 @@ SQL: %1 Add SpatiaLite Table(s) - Adicionar tabela(s) SpatiaLite + Adicionar tabela(s) SpatiaLite Databases - + Bases de dados &Add - &Adiciona + &Adicionar &Build Query - + &Criar Consulta @ - @ + @ @@ -41418,12 +41436,12 @@ SQL: %1 Geometry column - Coluna de geometria + Coluna de geometria Sql - Sql + Sql @@ -41873,7 +41891,7 @@ p, li { white-space: pre-wrap; } Query not executed - + Consulta não executada @@ -41905,33 +41923,33 @@ p, li { white-space: pre-wrap; } Select a Spatialite Spatial Reference System - Selecionar o SRC SpatiaLite + Selecionar o SRC SpatiaLite SRID - SRID + SRID Authority - Autoridade + Autoridade Reference Name - Nome de referência + Nome de referência Search - Burcar + Pesquisar Filter - Filtro + Filtro @@ -42202,7 +42220,7 @@ p, li { white-space: pre-wrap; } %1 Invalid table name. %1 -Nome de tabela inválido +Nome de tabela inválido. @@ -44024,7 +44042,7 @@ Existem classes que poderiam ser excluídas antes da classificação? Gradient color ramp - Rampa de gradiente de cor: + Rampa de gradiente de cor @@ -44193,7 +44211,6 @@ Existem classes que poderiam ser excluídas antes da classificação?not added features count - @@ -45363,17 +45380,17 @@ Existem classes que poderiam ser excluídas antes da classificação? Edit... - Editar... + Editar... Delete - Apagar + Apagar Modify WFS connection - Modificar ligação WFS + Modificar ligação WFS @@ -45385,13 +45402,14 @@ Existem classes que poderiam ser excluídas antes da classificação? Abort - Abortar + Abortar Loading WFS data %1 - + Carregando dados WFS +%1 @@ -45406,12 +45424,12 @@ Existem classes que poderiam ser excluídas antes da classificação? unknown - desconhecido + desconhecido received %1 bytes from %2 - recebidos %1 bytes de %2 + recebidos %1 bytes de %2 @@ -45424,12 +45442,12 @@ Existem classes que poderiam ser excluídas antes da classificação? New Connection... - + Nova conexão... Create a new WFS connection - Criar uma nova ligação WFS + Criar uma nova conexão WFS @@ -45447,22 +45465,22 @@ Existem classes que poderiam ser excluídas antes da classificação? Network Error - + Erro de rede Server Exception - + Excepção do servidor No Layers - Sem Camadas + Sem Camadas capabilities document contained no layers. - documento de capacidades não continham camadas. + documento de capacidades não continha camadas. @@ -45472,7 +45490,7 @@ Existem classes que poderiam ser excluídas antes da classificação? Capabilities document is not valid - Documento de capacidades não é válido + Documento de capacidades não é válido GetCapabilities Error @@ -45481,12 +45499,12 @@ Existem classes que poderiam ser excluídas antes da classificação? Load connections - Carregar conexões + Carregar conexões XML files (*.xml *XML) - Arquivos XML (*.xml *XML) + Arquivos XML (*.xml *XML) The capabilities document could not be retrieved from the server @@ -45523,12 +45541,12 @@ Existem classes que poderiam ser excluídas antes da classificação? Change ... - Mudar ... + Mudar ... &New - &Novo + &Novo @@ -45538,7 +45556,7 @@ Existem classes que poderiam ser excluídas antes da classificação? Edit - Editar + Editar @@ -45548,22 +45566,22 @@ Existem classes que poderiam ser excluídas antes da classificação? Load connections from file - + Carregar conexções a partir de ficheiro Load - + Carregar Save connections to file - + Salvar conexões para ficheiro Save - Salvar + Salvar @@ -45574,7 +45592,7 @@ Features Filter - Filtro + Filtro Only request features overlapping the current view extent @@ -45583,17 +45601,17 @@ Features Add WFS Layer from a Server - Adiciona camada WFS de um Servidor + Adicionar camada WFS de um Servidor Coordinate reference system - Sistema de Referência de Coordenadas + Sistema de Referência de Coordenadas Server connections - Conexões de servidor + Conexões de servidor @@ -45607,22 +45625,22 @@ Features 1 - 1 + 1 Attributes - Atributos + Atributos Add - Adicionar + Adicionar Remove - Remover + Remover @@ -45630,7 +45648,7 @@ Features WMS Password for %1 - WMS senha para %1 + WMS senha para %1 @@ -45638,12 +45656,12 @@ Features Edit... - Editar... + Editar... Delete - Apagar + Apagar @@ -45651,7 +45669,7 @@ Features New Connection... - + Nova conexão... @@ -45659,12 +45677,12 @@ Features &Add - &Adiciona + &Adicionar Add selected layers to map - Adicionar camadas selecionadas ao mapa + Adicionar camadas selecionadas ao mapa &Save @@ -45685,17 +45703,17 @@ Features Are you sure you want to remove the %1 connection and all associated settings? - Você quer realmente remover a conexão %1 e todas as configurações associadas? + Você quer realmente remover a conexão %1 e todas as configurações associadas? Confirm Delete - Confirme a exclusão + Confirme a exclusão encoding %1 not supported. - Codificação %1 não suportada. + codificação %1 não suportada. CRS %1 not supported. @@ -45708,17 +45726,17 @@ Features WMS Provider - Provedor WMS + Fornecedor WMS Load connections - Carregar conexões + Carregar conexões XML files (*.xml *XML) - Arquivos XML (*.xml *XML) + Arquivos XML (*.xml *XML) Advertised GetMap URL @@ -45761,13 +45779,13 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Could not open the WMS Provider - Impossível abrir o provedor WMS + Impossível abrir o fornecedor WMS Coordinate Reference System (%n available) crs count - + Sistema de Referência de Coordenadas (%n disponível) Sistema de Referência de Coordenadas (%n disponíveis) @@ -45775,21 +45793,21 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Select layer(s) - Selecionar camada(s) + Selecionar camada(s) Options (%n coordinate reference systems available) crs count - + Opções (%n sistema de seferência de soordenadas disponível) Select layer(s) or a tileset - Selecionar camada(s) ou um 'tileset' + Selecionar camada(s) ou um 'tileset' @@ -45799,17 +45817,17 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? No common CRS for selected layers. - Sem SRC normalmente usados para as camadas selecionadas. + Sem SRC comum para as camadas selecionadas. No CRS selected - Sem SRC selecionado + Sem SRC selecionado No image encoding selected - Sem imagem de codificação selecionada + Sem imagem de codificação selecionada @@ -45836,18 +45854,18 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Could not understand the response. The %1 provider said: %2 - Não foi possível entender a resposta. O provedor de %1 disse: + Não foi possível entender a resposta. O fornecedorr de %1 disse: %2 WMS proxies - WMS proxies + WMS proxies Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. - Muitos servidores WMS foram adicionados a lista de servidores. Note que se você acessa a internet via proxy, será necessário acertar as configurações proxy no diálogo de opções do QGIS + Vários servidores WMS foram adicionados a lista de servidores. Note que se você acessa a internet via proxy, será necessário acertar as configurações proxy no diálogo de opções do QGIS @@ -45857,12 +45875,12 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? network error: %1 - Erro na rede: %1 + Erro na rede: %1 The %1 connection already exists. Do you want to overwrite it? - A %1 conexão já existe. Deseja substituí-la? + A %1 conexão já existe. Deseja substituí-la? @@ -45875,27 +45893,27 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Add Layer(s) from a Server - Adiciona camada(s) de um servidor + Adiciona camada(s) de um servidor Save connections to file - + Salvar conexões para um ficheiro C&onnect - C&onectar + C&onectar &New - &Novo + &Novo Edit - Editar + Editar @@ -45905,17 +45923,17 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Adds a few example WMS servers - Adiciona algum exemplo de servidor WMS + Adicionar alguns exemplos de servidores WMS Add default servers - Adicionar servidores padrões + Adicionar servidores padrões ID - ID + ID @@ -45932,7 +45950,7 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Abstract - Resumo + Resumo Use base url instead of advertised GetFeatureInfo URL @@ -45949,22 +45967,22 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Save - Salvar + Salvar Load connections from file - + Carregar conexções a partir do ficheiro Load - + Carregar Layer Order - Ordem de camada + Ordem de camada @@ -45976,12 +45994,12 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Style - Estilo + Estilo Tileset - + Tileset @@ -45991,12 +46009,12 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Search - Procurar + Pesquisar URL - URL + URL @@ -46006,12 +46024,12 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Add selected row to WMS list - Adicionar linha selecionada para lista WMS + Adicionar linha selecionada para lista WMS Image encoding - Codificação da imagem + Codificação da imagem @@ -46026,17 +46044,17 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Layer name - Nome da camada + Nome da camada Coordinate Reference System - Sistema de coordenadas de Referência + Sistema de coordenadas de Referência Change ... - Mudar ... + Mudar ... @@ -46046,32 +46064,32 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? Feature limit for GetFeatureInfo - + Limite de elementos para GetFeatureInfo 10 - 10 + 10 Move selected layer UP - + Mover camada selecionada para cima Up - Cima + Cima Move selected layer DOWN - + Mover camada selecionada para baixo Down - Baixo + Baixo @@ -46094,12 +46112,12 @@ Isso pode ser um erro de configuração do servidor. Deveria a URL ser usada? CRS - SRC + SRC Ready - Pronto + Pronto @@ -49041,12 +49059,12 @@ additional algorithm providers Change - + Mudar Color - Cor + Cor @@ -49061,7 +49079,7 @@ additional algorithm providers SVG Groups - + Grupos SVG @@ -49079,62 +49097,62 @@ additional algorithm providers Form - Formulário + Formulário X attribute - + Atributo X Y attribute - + Atributo Y Scale - Escala + Escala Vector field type - + Tipo de campo vectorial Cartesian - + Cartesiano Polar - + Polar Height only - + Apenas altura Angle units - + Unidade de ângulo Degrees - Graus + Graus Radians - Radianos + Radianos Angle orientation - + Orentação de ângulo @@ -49169,13 +49187,13 @@ additional algorithm providers Converts DXF files in Shapefile format - Converte arquivos DXF em SHP + Converte arquivos DXF em SHP &Dxf2Shp - &Dxf2SHP + &Dxf2SHP @@ -49193,7 +49211,7 @@ additional algorithm providers Dxf Importer - Importador DXF + Importador DXF Input Dxf file @@ -49208,33 +49226,33 @@ additional algorithm providers Output file type - Tipo de arquivo de saída + Tipo de arquivo de saída Polyline - Polilinha + Polilinha Export text labels - Exportar rótulos de texto + Exportar rótulos de texto Warning - Aviso + Aviso Please specify a file to convert. - + Por favor, especifique um arquivo a ser convertido. Please specify an output file - + Pr favor, especifique um arquivo de saída @@ -49263,37 +49281,37 @@ Para suporte envie um email para scala@itc.cnr.it Choose a DXF file to open - Escolha um arquivo DXF para abrir + Escolha um arquivo DXF para abrir DXF files - + Ficheiros DXF Shapefile - + Shapefile Choose a file name to save to - Escolha um nome de arquivo para salvar como + Escolha um nome de arquivo para salvar como Input and output - Entrada e saída + Entrada e saída Input DXF file - + Ficheiro DXF de entrada Output file - Arquivo de saída + Arquivo de saída @@ -49564,7 +49582,7 @@ p, li { white-space: pre-wrap; } Output Console - Console de saída. + Console de saída diff --git a/i18n/qgis_sv.ts b/i18n/qgis_sv.ts index 3c6fc841adf6..cbf6db8166f3 100644 --- a/i18n/qgis_sv.ts +++ b/i18n/qgis_sv.ts @@ -1064,27 +1064,27 @@ Vill du lägga till det nya lagret till innehållsförteckningen? Standard distance - + (Optional) Weight field - + (Optional) Unique ID field - + Coordinate statistics - + No input vector layer specified - + Please specify at least one summary statistic - + CRS warning! @@ -1097,37 +1097,37 @@ This may cause unexpected results. Summary field - + Please specify valid extent coordinates - + Invalid extent coordinates entered - + Generate Vector Grid - + No input shapefile specified - + Cannot define projection for PostGIS data...yet! - + Defined Projection For: %1.shp - + Please select the projection system that defines the current layer. - + Layer CRS information will be updated to the selected CRS. @@ -1136,55 +1136,55 @@ This may cause unexpected results. Created output shapefiles in folder: %1 - + creating new selection - + adding to current selection - + removing from current selection - + Select features in: - + that intersect features in: - + Modify current selection by: - + Please specify input layer - + Please specify select layer - + Sum Line Lengths In Polyons - + Please specify input polygon vector layer - + Please specify input line vector layer - + Please specify output length field - + length field @@ -1192,47 +1192,47 @@ This may cause unexpected results. Please specify an input field - + Random Points - + unstratified - + stratified - + density - + field - + Unknown layer type... - + Please properly specify extent coordinates - + Finished - + Processing completed. - + Count Points in Polygon - + Missing or invalid CRS @@ -1240,15 +1240,15 @@ This may cause unexpected results. Count Points In Polygon - + Please specify input point vector layer - + Please specify output count field - + Please select a raster layer @@ -1256,15 +1256,15 @@ This may cause unexpected results. Unable to compute extents aligned on selected raster layer - + Densify geometries - + Vertices to add - + Warning @@ -1274,7 +1274,7 @@ This may cause unexpected results. Currently QGIS doesn't allow simultaneous access from different threads to the same datasource. Make sure your layer's attribute tables are closed. Continue? - + Error @@ -1282,43 +1282,43 @@ This may cause unexpected results. Create Point Distance Matrix - + Please specify input point layer - + Please specify output file - + Please specify target point layer - + Please specify target unique ID field - + Error loading output shapefile: %1 - + Merge shapefiles - + Select by layers in the folder - + Shapefile type - + @@ -1338,52 +1338,52 @@ This may cause unexpected results. Input directory - + Add result to map canvas - + Simplify geometries - + Input line or polygon layer - + Simplify tolerance - + Save to new file - + Add result to canvas - + Build spatial index - + Skapa spatialt index Select files from disk - + Select files... - + @@ -1393,12 +1393,12 @@ This may cause unexpected results. Select none - + Clear list - + Rensa listan @@ -1433,7 +1433,7 @@ This may cause unexpected results. geom - + geom @@ -1443,37 +1443,37 @@ This may cause unexpected results. POINT - + POINT LINESTRING - + LINESTRING POLYGON - + POLYGON MULTIPOINT - + MULTIPOINT MULTILINESTRING - + MULTILINESTRING MULTIPOLYGON - + MULTIPOLYGON GEOMETRYCOLLECTION - + GEOMETRYCOLLECTION @@ -1488,7 +1488,7 @@ This may cause unexpected results. -1 - + -1 @@ -1496,7 +1496,7 @@ This may cause unexpected results. Add constraint - + @@ -1506,12 +1506,12 @@ This may cause unexpected results. Primary key - + Primärnyckel Unique - + Unik @@ -1519,7 +1519,7 @@ This may cause unexpected results. Create index - + Skapa index @@ -1537,7 +1537,7 @@ This may cause unexpected results. Create Table - + @@ -1553,12 +1553,12 @@ This may cause unexpected results. Add field - + Delete field - + @@ -1573,52 +1573,52 @@ This may cause unexpected results. Primary key - + Primärnyckel Create geometry column - + Skapa geometrikolumn POINT - + POINT LINESTRING - + LINESTRING POLYGON - + POLYGON MULTIPOINT - + MULTIPOINT MULTILINESTRING - + MULTILINESTRING MULTIPOLYGON - + MULTIPOLYGON GEOMETRYCOLLECTION - + GEOMETRYCOLLECTION geom - + geom @@ -1633,12 +1633,12 @@ This may cause unexpected results. -1 - + -1 Create spatial index - + Skapa spatialt index @@ -1651,17 +1651,17 @@ This may cause unexpected results. An error occured: - + An error occured when executing a query: - + Query: - + @@ -1669,7 +1669,7 @@ This may cause unexpected results. Field properties - + @@ -1684,12 +1684,12 @@ This may cause unexpected results. Can be NULL - + Default value - + Standardvärde @@ -1702,7 +1702,7 @@ This may cause unexpected results. Import vector layer - + @@ -1712,7 +1712,7 @@ This may cause unexpected results. Table: - + @@ -1722,17 +1722,17 @@ This may cause unexpected results. Create new table - + Drop existing one - + Append data into table - + @@ -1742,7 +1742,7 @@ This may cause unexpected results. Primary key: - + @@ -1752,12 +1752,12 @@ This may cause unexpected results. Source SRID: - + Target SRID: - + @@ -1767,12 +1767,12 @@ This may cause unexpected results. Create single-part geometries instead of multi-part - + Create spatial index - + Skapa spatialt index @@ -1780,17 +1780,17 @@ This may cause unexpected results. SQL window - + SQL query: - + &Execute (F5) - + @@ -1800,23 +1800,23 @@ This may cause unexpected results. &Clear - + Result: - + Load as new layer - + Column with unique integer values - + @@ -1827,12 +1827,12 @@ integer values Retrieve columns - + Layer name (prefix) - + @@ -1852,26 +1852,26 @@ columns Load now! - + <html><head/><body><p>Avoid selecting feature by id. Sometimes - especially when running expensive queries/views - fetching the data sequentially instead of fetching features by id can be much quicker.</p></body></html> - + Avoid selecting by feature id - + Sorry - + You must fill the required fields: geometry column - column with unique integer values - + @@ -1890,7 +1890,7 @@ geometry column - column with unique integer values Table properties - + @@ -1900,7 +1900,7 @@ geometry column - column with unique integer values Table columns: - + @@ -1910,12 +1910,12 @@ geometry column - column with unique integer values Add geometry column - + Edit column - + @@ -1925,47 +1925,47 @@ geometry column - column with unique integer values Constraints - + Primary, foreign keys, unique and check constraints: - + Add primary key / unique - + Delete constraint - + Indexes - + Indexes defined for this table: - + Add index - + Add spatial index - + Delete index - + @@ -1973,12 +1973,12 @@ geometry column - column with unique integer values Add versioning support to a table - + Table is expected to be empty, with a primary key. - + @@ -1993,66 +1993,66 @@ geometry column - column with unique integer values create a view with current content (<TABLE>_current) - + New columns - + Prim. key - + id_hist - + Start time - + time_start - + End time - + time_end - + SQL to be executed: - + GdalTools The process failed to start. Either the invoked program is missing, or you may have insufficient permissions to invoke the program. - + The process crashed some time after starting successfully. - + An unknown error occurred. - + The selected file is not a supported OGR format - + Quantum GIS version detected: @@ -2061,27 +2061,27 @@ geometry column - column with unique integer values This version of Gdal Tools requires at least QGIS version 1.0.0 Plugin will not be enabled. - + Builds a VRT from a list of datasets - + Contour - + Builds vector contour lines from a DEM - + Burns vector geometries into a raster - + Produces a polygon feature layer from a raster - + Merge @@ -2089,39 +2089,39 @@ Plugin will not be enabled. Build a quick mosaic from a set of images - + Sieve - + Removes small raster polygons - + Produces a raster proximity map - + Near black - + Convert nearly black/white borders to exact value - + Warp an image into a new coordinate system - + Create raster from the scattered data - + Converts raster data between different formats - + Information @@ -2129,149 +2129,149 @@ Plugin will not be enabled. Lists information about raster dataset - + Assign projection - + Add projection info to the raster - + Build Virtual Raster (Catalog) - + Rasterize (Vector to raster) - + Polygonize (Raster to vector) - + Proximity (Raster distance) - + Warp (Reproject) - + Grid (Interpolation) - + Translate (Convert format) - + Build overviews (Pyramids) - + Builds or rebuilds overview images - + Clipper - + RGB to PCT - + Convert a 24bit RGB image to 8bit paletted - + PCT to RGB - + Convert an 8bit paletted image to 24bit RGB - + Tile index - + Build a shapefile as a raster tileindex - + DEM (Terrain models) - + Plugin error - + Unable to load %1 plugin. The required "%2" module is missing. Install it and try again. - + Projections - + Extract projection - + Extract projection information from raster(s) - + Conversion - + Extraction - + Analysis - + Fill nodata - + Fill raster regions by interpolation from edges - + Tool to analyze and visualize DEMs - + Miscellaneous - + GdalTools settings - + Various settings for Gdal Tools - + &Input directory - + &Output directory - + @@ -2279,12 +2279,12 @@ Install it and try again. About Gdal Tools - + GDAL Tools - + @@ -2298,7 +2298,7 @@ Install it and try again. p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p></body></html> - + @@ -2315,11 +2315,11 @@ p, li { white-space: pre-wrap; } GdalToolsBaseBatchWidget Finished - + Operation completed. - + Warning @@ -2328,7 +2328,7 @@ p, li { white-space: pre-wrap; } The following files were not created: %1 - + @@ -2340,11 +2340,11 @@ p, li { white-space: pre-wrap; } The command is still running. Do you want terminate it anyway? - + Invalid parameters. - + @@ -2355,19 +2355,19 @@ Do you want terminate it anyway? No output file created. - + Finished - + Processing completed. - + %1 not created. - + @@ -2380,7 +2380,7 @@ Do you want terminate it anyway? &Load into canvas when finished - + @@ -2392,27 +2392,27 @@ Do you want terminate it anyway? Reset - + Select the input file for Proximity - + Select the raster file to save the results to - + Select the input file for Near Black - + Select the input file for Grid - + Select the input directory with files to Merge - + Warning @@ -2424,176 +2424,176 @@ Do you want terminate it anyway? Select the file to analyse - + Select the input directory with files to Assign projection - + Finished - + Processing completed. - + %1 not created. - + Assign projection - + This raster already found in map canvas - + Select the files for VRT - + Select where to save the VRT - + VRT (*.vrt) - + Select the input file for Warp - + Select the mask file - + Select the input directory with files to Warp - + Select the output directory to save the results to - + Select the input file for Sieve - + Select the files to Merge - + Select where to save the Merge output - + Select the input file for convert - + Select the input directory with files for convert - + Select the file for DEM - + Select the color configuration file - + Select the input file for Polygonize - + Select where to save the Polygonize output - + Select the input file for Contour - + Select where to save the Contour output - + Select the input file for Translate - + Select the input directory with files to Translate - + Translate - srcwin - + Image coordinates (pixels) must be integer numbers. - + Translate - prjwin - + Image coordinates (geographic) must be numbers. - + Select the files to analyse - + Output size required - + The output file doesn't exist. You must set up the output size to create it. - + Convert paletted image to RGB - + Select the input file for Rasterize - + Copy - + Copy all - + Select the input directory with files for VRT - + Select the input directory with raster files - + Select where to save the TileIndex output - + Error retrieving the extent - + GDAL was unable to retrieve the extent from any file. The "Use intersected extent" option will be unchecked. - + Empty extent @@ -2602,40 +2602,40 @@ The "Use intersected extent" option will be unchecked. The computed extent is empty. Disable the "Use intersected extent" option to have a nonempty output. - + Select the input file - + Select the input directory with files - + Extract projection - + Batch mode (for processing whole directory) - + &Input file - + Recurse subdirectories - + Create also prj file - + @@ -2643,12 +2643,12 @@ Disable the "Use intersected extent" option to have a nonempty output. Select the extent by drag on canvas - + or change the extent coordinates - + @@ -2675,7 +2675,7 @@ Disable the "Use intersected extent" option to have a nonempty output. Re-Enable - + @@ -2683,7 +2683,7 @@ Disable the "Use intersected extent" option to have a nonempty output. Select... - + @@ -2714,12 +2714,12 @@ Disable the "Use intersected extent" option to have a nonempty output. Gdal Tools settings - + Path to the GDAL executables - + @@ -2733,22 +2733,22 @@ Disable the "Use intersected extent" option to have a nonempty output. Path to the GDAL python modules - + GDAL help path - + GDAL data path - + GDAL driver path - + A list of colon-separated (Linux and MacOS) or @@ -2757,29 +2757,29 @@ and python executables. MacOS users usually need to set it to something like /Library/Frameworks/GDAL.framework/Versions/1.8/Programs - + A list of colon-separated (Linux and MacOS) or semicolon-separated (Windows) paths to python modules. - + Useful to open local GDAL documentation instead of online help when pressing on the tool dialog's Help button. - + Select directory with GDAL executables - + Select directory with GDAL python modules - + Select directory with the GDAL documentation - + @@ -2790,29 +2790,29 @@ when pressing on the tool dialog's Help button. Select... - + &Input files - + Build Virtual Raster (Catalog) - + Use visible raster layers for input - + Choose input directory instead of files - + @@ -2828,17 +2828,17 @@ when pressing on the tool dialog's Help button. &Output file - + &Resolution - + Highest - + @@ -2848,38 +2848,38 @@ when pressing on the tool dialog's Help button. Lowest - + &Source No Data - + Se&parate - + Allow projection difference - + Clipper - + &No data value - + Clipping mode - + @@ -2892,12 +2892,12 @@ when pressing on the tool dialog's Help button. Mask layer - + Create an output alpha band - + 1 @@ -2918,53 +2918,53 @@ when pressing on the tool dialog's Help button. Grab pseudocolor table from the first image - + Contour - + &Input file (raster) - + &Output directory for contour lines (shapefile) - + &Output file for contour lines (vector) - + I&nterval between contour lines - + &Attribute name - + If not provided, no elevation attribute is attached. - + ELEV - + Convert RGB image to paletted - + @@ -2974,7 +2974,7 @@ when pressing on the tool dialog's Help button. Batch mode (for processing whole directory) - + @@ -2987,57 +2987,57 @@ when pressing on the tool dialog's Help button. &Input file - + Number of colors - + Band to convert - + &Z Field - + &Algorithm - + Inverse distance to a power - + Moving average - + Nearest neighbor - + Data metrics - + Power - + Smoothing - + @@ -3045,7 +3045,7 @@ when pressing on the tool dialog's Help button. Radius1 - + @@ -3053,7 +3053,7 @@ when pressing on the tool dialog's Help button. Radius2 - + @@ -3080,19 +3080,19 @@ when pressing on the tool dialog's Help button. Max points - + Grid (Interpolation) - + Min points - + @@ -3101,12 +3101,12 @@ when pressing on the tool dialog's Help button. No data - + Metrics - + @@ -3131,17 +3131,17 @@ when pressing on the tool dialog's Help button. Raster info - + Suppress GCP printing - + Suppress metadata printing - + @@ -3151,165 +3151,165 @@ when pressing on the tool dialog's Help button. Layer stack - + Use intersected extent - + DEM (Terrain models) - + &Input file (DEM raster) - + &Band - + Compute &edges - + &Mode - + Hillshade - + Slope - + Aspect - + Color relief - + TRI (Terrain Ruggedness Index) - + TPI (Topographic Position Index) - + Roughness - + Use Zevenbergen&&Thorne formula (instead of the Horn's one) - + Z factor (vertical exaggeration) - + Scale (ratio of vert. units to horiz.) - + Azimuth of the light - + Altitude of the light - + Slope expressed as percent (instead of as degrees) - + Return trigonometric angle (instead of azimuth) - + Return 0 for flat (instead of -9999) - + Color configuration file - + Matching mode - + Exact color (otherwise "0,0,0,0" RGBA) - + Nearest color - + Add alpha channel - + &Creation Options - + Near Black - + How &far from black (or white) - + Search for nearly &white (255) pixels instead of black ones - + Build overviews (Pyramids) - + @@ -3319,17 +3319,17 @@ when pressing on the tool dialog's Help button. nearest - + average - + gauss - + @@ -3339,123 +3339,123 @@ when pressing on the tool dialog's Help button. average_mp - + average_magphase - + mode - + Levels (space delimited) - + Remove all overviews. - + Clean - + In order to generate external overview (for GeoTIFF especially). - + Open in read-only mode - + Create external overviews in TIFF format, compressed using JPEG. - + Overviews in TIFF format with JPEG compression - + For JPEG compressed external overviews, the JPEG quality can be set. - + JPEG Quality (1-100) - + Alternate overview format using Erdas Imagine format, placing the overviews in an associated .aux file suitable for direct use with Imagine,ArcGIS, GDAL. - + Use Imagine format (.aux file) - + Polygonize (Raster to vector) - + &Output file for polygons (shapefile) - + &Field name - + DN - + Use mask - + Assign projection - + WARNING: current projection definition will be cleared - + Desired SRS - + Output will be: - new GeoTiff if input file is not GeoTiff - overwritten if input is GeoTiff - + @@ -3463,47 +3463,47 @@ suitable for direct use with Imagine,ArcGIS, GDAL. Recurse subdirectories - + Proximity (Raster distance) - + &Values - + &Dist units - + GEO - + PIXEL - + &Max dist - + &No data - + &Fixed buf val - + @@ -3514,42 +3514,42 @@ suitable for direct use with Imagine,ArcGIS, GDAL. Rasterize (Vector to raster) - + &Input file (shapefile) - + &Attribute field - + &Output file for rasterized vectors (raster) - + New size (required if output file doens't exist) - + Sieve - + &Threshold - + &Pixel connections - + @@ -3565,7 +3565,7 @@ suitable for direct use with Imagine,ArcGIS, GDAL. Percentage to resize image. This will change pixel size/image resolution accordingly: 25% will create an image with pixels 4x larger. - + @@ -3576,7 +3576,7 @@ suitable for direct use with Imagine,ArcGIS, GDAL. Assign a specified nodata value to output bands. - + @@ -3584,64 +3584,64 @@ suitable for direct use with Imagine,ArcGIS, GDAL. To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands. Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets. The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a color table that only contains gray levels to a gray indexed dataset. - + Fill Nodata - + &Input Layer - + Search distance - + Smooth iterations - + Band to operate on - + Validity mask - + Do not use the default validity mask - + Translate (Convert format) - + &Target SRS - + Outsize - + Expand - + @@ -3651,60 +3651,60 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a RGB - + RGBA - + Selects a subwindow from the source image for copying based on pixel/line location. (Enter Xoff Yoff Xsize Ysize) - + Srcwin - + Prjwin - + Selects a subwindow from the source image for copying (like -srcwin) but with the corners given in georeferenced coordinates. (Enter ulx uly lrx lry) - + Copy all subdatasets of this file to individual output files. Use with formats like HDF or OGDI that have subdatasets. - + Sds - + Output format - + Near - + Bilinear - + @@ -3714,7 +3714,7 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a Cubic spline - + @@ -3724,53 +3724,53 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a No data values - + MB - + &Source SRS - + Warp (Reproject) - + &Resampling method - + &Memory used for caching - + Resize - + Use m&ultithreaded warping implementation - + Raster tile index - + Input directory - + @@ -3780,22 +3780,22 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a Tile index field - + location - + Write absolute path - + Skip files with different projection ref - + @@ -3862,7 +3862,7 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a Ellipsoid - + Polygon centroids @@ -3882,15 +3882,15 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a Voronoi polygon - + Buffer region - + Lines to polygons - + Input line vector layer @@ -3916,7 +3916,7 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a Currently QGIS doesn't allow simultaneous access from different threads to the same datasource. Make sure your layer's attribute tables are closed. Continue? - + Unable to delete incomplete shapefile. @@ -3925,12 +3925,12 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a At least two features must have same attribute value! Please choose another field... - + One or more features in the output layer may have invalid geometry, please check using the check validity tool - + Created output shapefile: @@ -3947,7 +3947,7 @@ Vill du lägga till det nya lagret till innehållsförteckningen? {1 Layer '%1' updated - + Error writing output shapefile. @@ -3959,7 +3959,7 @@ Vill du lägga till det nya lagret till innehållsförteckningen? {1 Geometry - + Geoprocessing @@ -3972,12 +3972,12 @@ Vill du lägga till det nya lagret till innehållsförteckningen? {1 Error processing specified tolerance! Please choose larger tolerance... - + Error loading output shapefile: %1 - + @@ -4024,7 +4024,7 @@ Please choose larger tolerance... Create convex hulls based on input field - + Convex hull(s) @@ -4085,7 +4085,7 @@ Please choose larger tolerance... No output created. File creation error: %1 - + @@ -4114,121 +4114,132 @@ Vill du lägga till det nya lagret till innehållsförteckningen? Input CRS error: Different input coordinate reference systems detected, results may not be as expected. - + Input CRS error: One or more input layers missing coordinate reference information, results may not be as expected. - + Feature geometry error: One or more output features ignored due to invalid geometry. - + GEOS geoprocessing error: One or more input features have invalid geometry. - + Created output shapefile: %1 %2%3 - + Error loading output shapefile: %1 - + GlobePlugin - + Launch Globe - + - + Globe Settings + + + + + Unload Globe - + Overlay data on a 3D globe - + - + Settings for 3D globe - + - - &Globe + Unload globe + + + + + &Globe + + Heatmap Heatmap - + Creates a heatmap raster for the input point vector. - + &Heatmap - + GDAL driver error - + Cannot open the driver for the specified format - + Raster update error - + Could not open the created raster for updating. The heatmap was not generated. - + Point layer error - + Could not identify the vector data provider. - + Heatmap generation aborted - + QGIS will now load the partially-computed raster. - + @@ -4236,37 +4247,37 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Save Heatmap as: - + No valid layers found! - + Advanced options cannot be enabled. - + Invalid output filename - + Please enter a valid output file path and name. - + Layer not found - + Layer %1 not found. - + @@ -4274,17 +4285,17 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Heatmap Plugin - + Input Point Vector - + Output Raster - + @@ -4294,12 +4305,12 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Output Format - + Radius - + @@ -4321,7 +4332,7 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Decay Ratio - + @@ -4336,12 +4347,12 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Row - + Cell Size X - + @@ -4351,17 +4362,17 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Cell Size Y - + Use Radius from field - + Use Weight from field - + @@ -4374,12 +4385,12 @@ GEOS geoprocessing error: One or more input features have invalid geometry. Symbol layer type - + Typ av symbollager This layer doesn't have any editable properties - + Detta lagret har inga redigeringsbara inställningar @@ -5027,22 +5038,22 @@ Fungerar på alla redigerbara lager Local Cumulative Cut Stretch - + Local cumulative cut stretch using current extent, default limits and estimated values. - + Full Dataset Cumulative Cut Stretch - + Cumulative cut stretch using full dataset extent, default limits and estimated values. - + @@ -5064,7 +5075,7 @@ Fungear på aktuellt redigerbart lager Html Annotation - + HTML-etikett Add PostGIS Layer... @@ -5147,7 +5158,7 @@ Fungear på aktuellt redigerbart lager Stretch Histogram to Full Dataset - + @@ -5157,12 +5168,12 @@ Fungear på aktuellt redigerbart lager mActionCatchForCustomization - + mActionCatchForCustomization This is here just to avoid shortcut conflicts, the shortcut is caught in QgsCustomization - + This is here just to avoid shortcut conflicts, the shortcut is caught in QgsCustomization @@ -5408,12 +5419,12 @@ Fungear på aktuellt redigerbart lager Local Histogram Stretch - + Stretch histogram of active raster to view extents - + @@ -5484,7 +5495,7 @@ Fungear på aktuellt redigerbart lager Full histogram stretch - + @@ -5588,12 +5599,12 @@ Fungear på aktuellt redigerbart lager Create OSM relation - + Relation type: - + @@ -5612,7 +5623,7 @@ Fungear på aktuellt redigerbart lager Members - + @@ -5627,57 +5638,57 @@ Fungear på aktuellt redigerbart lager Show type description - + Shows brief description of selected relation type. - + Generate tags - + Fills tag table with tags that are typical for relation of specified type. - + Remove all selected tags - + Removes all selected tags. - + Select member on map - + Starts process of selecting next relation member on map. - + Remove all selected members - + Removes all selected members. - + Save @@ -5685,31 +5696,31 @@ Fungear på aktuellt redigerbart lager Edit OSM relation - + for grouping boundaries and marking enclaves / exclaves - + to put holes into areas (might have to be renamed, see article) - + any kind of turn restriction - + like bus routes, cycle routes and numbered highways - + traffic enforcement devices; speed cameras, redlight cameras, weight checks, ... - + OSM Information - + @@ -5852,40 +5863,40 @@ Fungear på aktuellt redigerbart lager OsmFeatureDW OSM Plugin - + The 'Create OSM Relation' dialog was closed automatically because current OSM database was changed. - + OSM Feature Dock Widget - + Choose OSM feature first. - + Choose relation for editing first. - + Snapping ON. Hold Ctrl to disable it. - + Hide OSM Edit History - + Show OSM Edit History - + OSM Feature - + @@ -5909,22 +5920,22 @@ Fungear på aktuellt redigerbart lager Create point - + Create line - + Create polygon - + Create relation - + @@ -5945,27 +5956,27 @@ Fungear på aktuellt redigerbart lager Show/Hide OSM Edit History - + Feature: - + TYPE, ID: - + CREATED: - + USER: - + @@ -5984,38 +5995,38 @@ Fungear på aktuellt redigerbart lager Remove selected tags - + Relations - + Add relation - + Edit relation - + Remove relation - + Relation tags: - + @@ -6025,28 +6036,28 @@ Fungear på aktuellt redigerbart lager Relation members: - + Identify feature - + Move feature - + Remove this feature - + @@ -6054,12 +6065,12 @@ Fungear på aktuellt redigerbart lager Import data to OSM - + In this dialog you can import a layer loaded in QGIS into active OSM data. - + @@ -6069,19 +6080,19 @@ Fungear på aktuellt redigerbart lager Import only current selection - + Layer doesn't exist - + The selected layer doesn't exist anymore! - + Importing features... - + Cancel @@ -6093,7 +6104,7 @@ Fungear på aktuellt redigerbart lager Import has been completed. - + @@ -6101,12 +6112,12 @@ Fungear på aktuellt redigerbart lager Load OSM - + OpenStreetMap file to load: - + @@ -6116,7 +6127,7 @@ Fungear på aktuellt redigerbart lager Add columns for tags: - + @@ -6126,11 +6137,11 @@ Fungear på aktuellt redigerbart lager Replace current data (current layers will be removed) - + Choose an Open Street Map file - + OSM Files (*.osm) @@ -6138,15 +6149,15 @@ Fungear på aktuellt redigerbart lager OSM Load - + Please enter path to OSM data file. - + Path to OSM file is invalid: %1. - + Error @@ -6154,54 +6165,54 @@ Fungear på aktuellt redigerbart lager Layers of OSM file "%1" are loaded already. - + Failed to load polygon layer. - + Failed to load line layer. - + Failed to load point layer. - + Could not connect to setRenderer signal. - + Failed to load layers: %1 - + OsmPlugin Load OSM from file - + Load OpenStreetMap from file - + Import data from a layer - + Import data from a layer to OpenStreetMap - + Save OSM to file - + Save OpenStreetMap to file - + Download OSM data @@ -6209,69 +6220,69 @@ Fungear på aktuellt redigerbart lager Download OpenStreetMap data - + Upload OSM data - + Upload OpenStreetMap data - + Show/Hide OSM Feature Manager - + Show/Hide OpenStreetMap Feature Manager - + Sorry - + You don't have OSM provider installed! - + OSM Save to file - + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. Please change this situation first, because OSM Plugin doesn't know what to save. - + OSM Upload - + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. Please change this situation first, because OSM Plugin doesn't know what to upload. - + OSM Import - + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. Please change this situation first, because OSM Plugin doesn't know what layer will be destination of the import. - + There are currently no available vector layers. - + OsmSaveDlg Choose an Open Street Map file - + OSM Files (*.osm) @@ -6279,7 +6290,7 @@ Please change this situation first, because OSM Plugin doesn't know what la Save OSM to file - + Unable to save the file %1: %2. @@ -6287,33 +6298,33 @@ Please change this situation first, because OSM Plugin doesn't know what la Initializing... - + Saving nodes... - + Saving lines... - + Saving polygons... - + Saving relations... - + Save OSM - + Where to save: - + @@ -6323,7 +6334,7 @@ Please change this situation first, because OSM Plugin doesn't know what la Features to save: - + @@ -6338,17 +6349,17 @@ Please change this situation first, because OSM Plugin doesn't know what la Polygons - + Relations - + Tags - + @@ -6356,14 +6367,14 @@ Please change this situation first, because OSM Plugin doesn't know what la OSM Edit History - + Clear all - + @@ -6391,11 +6402,11 @@ Please change this situation first, because OSM Plugin doesn't know what la OsmUploadDlg Upload - + OSM Upload - + Uploading data... @@ -6403,77 +6414,77 @@ Please change this situation first, because OSM Plugin doesn't know what la Node addition failed. - + Node update failed. - + Node deletion failed. - + Way addition failed. - + Way update failed. - + Way deletion failed. - + Relation addition failed. - + Relation update failed. - + Relation deletion failed. - + Connection to OpenStreetMap server cannot be established. Please check your proxy settings, firewall settings and try again. - + Changeset closing failed. - + Upload process failed. OpenStreetMap server response: %1 - %2. - + Authentication failed. Please try again with correct login and password. - + Setting host failed. - + Setting user and password failed. - + Setting proxy failed. - + Upload OSM data - + Ready for upload - + @@ -6503,39 +6514,39 @@ Please change this situation first, because OSM Plugin doesn't know what la Comment on your changes: - + OSM account - + Username: - + Password: - + Show password - + Save password - + PointsInPolygonThread point count field - + @@ -6562,7 +6573,7 @@ Please change this situation first, because OSM Plugin doesn't know what la Couldn't load plugin '%1' from ['%2'] - + Couldn't load plugin %1 @@ -6587,6 +6598,10 @@ Please change this situation first, because OSM Plugin doesn't know what la Clear console + + Settings + Inställningar + Import Class @@ -6798,7 +6813,7 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS? - + @@ -6890,7 +6905,7 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS?Lägger till ett WFS-lager till kartbladet - + Python error Pythonfel @@ -7298,7 +7313,6 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS? - @@ -7310,12 +7324,11 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS? - - - - - - + + + + + Warning Varning @@ -7468,73 +7481,73 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS?Ett fel inträffade vid exekvernig av följande kod: - + Python is not enabled in QGIS. Python är ej påslaget i QGIS. - - - - - - - + + + + + + + - + Plugins Insticksprogram - + Loaded %1 (package: %2) Läste in %1 (paket: %2) - + Library name is %1 Biblioteksnamn är %1 - - + + Failed to load %1 (Reason: %2) Kunde inte läsa in %1(anledning: %2) - + Attempting to resolve the classFactory function Kunde inte lösa upp classFactory-funktionen - + Loaded %1 (Path: %2) Läste in %1 (sökväg: %2) - + Error Loading Plugin Fel vid läsning av insticksprogram - + There was an error loading a plugin.The following diagnostic information may help the QGIS developers resolve the issue: %1. Det uppstod ett fel när insticksprogram skulle laddas. Informationen nedan kan hjälpa QGIS-utvecklarna att rätta till felet: %1. - + Unable to find the class factory for %1. Kunde inte hitta klassfabriken för %1. - + Plugin %1 did not return a valid type and cannot be loaded Issticksprogrammet %1 returnerade inte ett giltigt värde och kan inte läsas in @@ -7544,7 +7557,7 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS?Var är '%1 (ursprunglig plats: %2)? - + Error when reading metadata of plugin %1 Fel vid läsning av metadata för insticksprogram %1 @@ -7615,63 +7628,63 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS? Cannot open vector %1 in mapset %2 on level 2 (topology not available, try to rebuild topology using v.build module). - + Cannot open vector %1 in mapset %2 - + Cannot open GISRC file - + Cannot start module - + command: %1 %2 - + Cannot run module - + command: %1 %2<br>%3<br>%4 - + Cannot get projection - + Cannot get raster extent - + Cannot get map info - + Cannot get colors - + Cannot query raster - + @@ -7721,51 +7734,51 @@ Vill du specificera sökväg (GISBASE) till installationen av GRASS? Estimating normal derivatives... - + - + Could not open CRS database %1 Error(%2): %3 - + - - + + CRS CRS - + Generated CRS A CRS automatically generated from layer info get this prefix for description Genererad projektion - + Saved user CRS [%1] - + - + Imported from GDAL - + Raster Terrain Analysis plugin - + A plugin for raster based terrain analysis - + infinite - + @@ -7799,7 +7812,7 @@ Error(%2): %3 A plugin for placing diagrams on vector layers - + @@ -7818,27 +7831,27 @@ Error(%2): %3 Categorized - + Graduated - + Rule-based - + Point displacement - + Georeferencing rasters using GDAL - + @@ -7857,33 +7870,33 @@ Error(%2): %3 invalid line - + segment %1 of ring %2 of polygon %3 intersects segment %4 of ring %5 of polygon %6 at %7 - + ring %1 with less than four points - + ring %1 not closed - + line %1 with less than two points - + line %1 contains %n duplicate node(s) at %2 number of duplicate nodes - + @@ -7891,29 +7904,29 @@ Error(%2): %3 segments %1 and %2 of line %3 intersect at %4 - + ring %1 of polygon %2 not in exterior ring - + GEOS error:could not produce geometry for GEOS (check log window) - + GEOS error:%1 - + polygon %1 inside polygon %2 - + @@ -7923,289 +7936,288 @@ Error(%2): %3 Unknown geometry type %1 - + Geometry validation was aborted. - + Geometry is valid. - + Geometry has %1 errors. - + OGR driver for '%1' not found (OGR error: %2) - + trimming attribute name '%1' to ten significant characters produces duplicate column name. - + creation of data source failed (OGR error:%1) - + creation of layer failed (OGR error:%1) - + unsupported type for field %1 - + creation of field %1 failed (OGR error: %2) - + created field %1 not found (OGR error: %2) - + Invalid variant type for field %1[%2]: received %3 with type %4 - + Feature geometry not imported (OGR error: %1) - + Feature creation error (OGR error: %1) - + Failed to transform a point while drawing a feature of type '%1'. Writing stopped. (Exception: %2) - + Feature write errors: - + Stopping after %1 errors - + Only %1 of %2 features written. - + Arc/Info ASCII Coverage - + Arc/Info ASCII Coverage Atlas BNA - + Atlas BNA Comma Separated Value - + Kommaseparerade värden ESRI Shapefile - + ESRI Shapefil FMEObjects Gateway - + FMEObjects Gateway GeoJSON - + GeoJSON GeoRSS - + GeoRSS Geography Markup Language [GML] - + Geography Markup Language [GML] Generic Mapping Tools [GMT] - + Generic Mapping Tools [GMT] GPS eXchange Format [GPX] - + GPS eXchange Format [GPX] Keyhole Markup Language [KML] - + Keyhole Markup Language [KML] Spatial Data Transfer Standard [SDTS] - + Spatial Data Transfer Standard [SDTS] ESRI FileGDB - + ESRI FileGDB INTERLIS 1 - + INTERLIS 1 INTERLIS 2 - + INTERLIS 2 Mapinfo File - + Mapinfo File Microstation DGN - + Microstation DGN S-57 Base file - + S-57 Base file SQLite - + SQLite AutoCAD DXF - + AutoCAD DXF Geoconcept - + Geoconcept - Groups not yet supported - + Grupper stöds ännu inte - - - + + + Cannot draw raster - + Kan inte rita raster - + CRS undefined - defaulting to project CRS - + Referenskoordinatsystem odefinierad - sätter projektets standardreferenskoordinatsystem - + CRS undefined - defaulting to default CRS: %1 - + Referenskoordinatsystem odefinierad - sätter standardreferenskoordinatsystem: %1 - + Reading raster - + Läser in raster QGIS rocks! - + QGIS Rockar FETT! <html>QGIS rocks!</html> - + <html>QGIS Rockar FETT!</html> Processing 1/2 - %p% - + Processar 1/2 - %p% Processing 2/2 - %p% - + Processar 2/2 - %p% Intersects - + Skär Is disjoint - + Touches - + @@ -8217,110 +8229,110 @@ Only %1 of %2 features written. Within - + Contains - + Equals - + Overlaps - + Spatial Query Plugin - + A plugin that makes spatial queries on vector layers - + QGIS starting in non-interactive mode not supported. You are seeing this message most likely because you have no DISPLAY environment variable set. - + Simple line - + Marker line - + Line decoration - + Simple marker - + SVG marker - + Font marker - + Ellipse marker - + Vector Field marker - + Simple fill - + SVG fill - + Centroid fill - + Line pattern fill - + Point pattern fill - + No active vector layer - + @@ -8342,17 +8354,17 @@ You are seeing this message most likely because you have no DISPLAY environment Raster Histogram - + Pixel Value - + Frequency - + Choose a file name to save the map image as @@ -8361,27 +8373,27 @@ You are seeing this message most likely because you have no DISPLAY environment OfflineEditing - + Allow offline editing and synchronizing with database - + Road graph plugin - + It solves the shortest path problem. - + SQL Anywhere plugin - + @@ -8391,7 +8403,7 @@ You are seeing this message most likely because you have no DISPLAY environment OGR[%1] error %2: %3 - + @@ -8408,83 +8420,83 @@ You are seeing this message most likely because you have no DISPLAY environment OGR - + Unable to create the datasource. %1 exists and overwrite flag is false. - + Unable to get driver %1 - + Arc/Info Binary Coverage - + DODS - + ESRI Personal GeoDatabase - + ESRI ArcSDE - + ESRI Shapefiles - + Grass Vector - + Informix DataBlade - + Ingres - + MySQL - + MSSQL - + Oracle Spatial - + ODBC - + OGDI Vectors - + @@ -8494,22 +8506,22 @@ You are seeing this message most likely because you have no DISPLAY environment UK. NTF2 - + U.S. Census TIGER/Line - + VRT - Virtual Datasource - + X-Plane/Flightgear - + @@ -8519,203 +8531,202 @@ You are seeing this message most likely because you have no DISPLAY environment Duplicate field (10 significant characters): %1 - + Creating the data source %1 failed: %2 - + Unknown vector type of %1 - + Creation of OGR data source %1 failed: %2 - + creation of field %1 failed - + Couldn't create file %1.qpj - + - - + Cannot get GDAL raster band: %1 - + Cannot open GDAL MEM dataset %1: %2 - + Cannot GDALCreateGenImgProjTransformer: - + Cannot inittialize GDALWarpOperation : - + Cannot ChunkAndWarpImage: %1 - + - + [GDAL] All files (*) - + - + GDAL/OGR VSIFileHandler - + - + This raster file has no bands and is invalid as a raster layer. - + day Note: Word is part matched in code - + days Note: Word is part matched in code - + week Note: Word is part matched in code - + weeks Note: Word is part matched in code - + month Note: Word is part matched in code - + months Note: Word is part matched in code - + year Note: Word is part matched in code - + years Note: Word is part matched in code - + second Note: Word is part matched in code - + seconds Note: Word is part matched in code - + minute Note: Word is part matched in code - + minutes Note: Word is part matched in code - + hour Note: Word is part matched in code - + hours Note: Word is part matched in code - + Cannot convert '%1' to double - + Cannot convert '%1' to int - + Cannot convert '%1' to DateTime - + Cannot convert '%1' to Date - + Cannot convert '%1' to Time - + Cannot convert '%1' to Interval - + Cannot convert '%1' to boolean - + Invalid regular expression '%1': %2 - + Index is out of range - + @@ -8732,7 +8743,7 @@ You are seeing this message most likely because you have no DISPLAY environment Math - + @@ -8743,7 +8754,7 @@ You are seeing this message most likely because you have no DISPLAY environment Conversions - + @@ -8761,7 +8772,7 @@ You are seeing this message most likely because you have no DISPLAY environment Date and Time - + @@ -8780,7 +8791,7 @@ You are seeing this message most likely because you have no DISPLAY environment String - + @@ -8791,7 +8802,7 @@ You are seeing this message most likely because you have no DISPLAY environment Geometry - + @@ -8799,7 +8810,7 @@ You are seeing this message most likely because you have no DISPLAY environment Record - + @@ -8810,169 +8821,169 @@ You are seeing this message most likely because you have no DISPLAY environment No root node! Parsing failed? - + (no root) - + Unary minus only for numeric values. - + Can't preform /, *, or % on DateTime and Interval - + [unsupported type;%1; value:%2] - + Column '%1' not found - + Unable to load %1 provider - + Provider %1 has no createEmptyLayer method - + Loading of layer failed - + Creation error for features from #%1 to #%2. Provider errors was: %3 - + Vector import - + Only %1 of %2 features written. - + - + Globe - + - + Overlay data on a 3D globe - + Zonal statistics plugin - + A plugin to calculate count, sum, mean of rasters for each polygon of a vector layer - + no result buffer - + - - + + - + Connection to database failed - + - + Creation of data source %1 failed: %2 - + - + Loading of the layer %1 failed - + - - + + Unable to delete layer %1: %2 - + Loading of the MSSQL provider failed - + - + Unsupported type for field %1 - + - + Creation of fields failed - + creation of data source %1 failed. %2 - + loading of the layer %1 failed - + creation of fields failed - + - + Unable to initialize SpatialMetadata: - + - + Could not create a new database - + - + Unable to activate FOREIGN_KEY constraints [%1] - + - + Unable to delete table %1: - + @@ -8982,7 +8993,7 @@ You are seeing this message most likely because you have no DISPLAY environment Shows a QtSensors compass reading - + @@ -8992,142 +9003,142 @@ You are seeing this message most likely because you have no DISPLAY environment Heatmap - + Creates a Heatmap raster for the input point vector - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Exception: %1 - + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + GEOS - + - + GEOS prior to 3.2 doesn't support GEOSInterpolate - + Console - + - - + + Reading raster part %1 of %2 - + - + Building pyramids failed - write access denied - + - + Write access denied. Adjust the file permissions and try again. Skrivåtkomst nekad. Justera filrättigheterna och försök igen. - - - - + + + + Building pyramids failed. Kunde ej skapa pyramider. - + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. Filen var inte skrivbar. Vissa format stödjer inte pyramider. Kontrollera med GDAL-dokumentation om du är osäker. - - + + Building pyramid overviews is not supported on this type of raster. Denna typ av raster stödjer ej att bygga pyramider. - + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. Nuvarande libtiff-bibliotek stödjer inte att bygga pyramider från lager med JPEG-kompression. Multiband color - + Paletted - + Singleband gray - + Singleband pseudocolor - + Singleband color data - + @@ -9135,82 +9146,82 @@ You are seeing this message most likely because you have no DISPLAY environment No Error has occurred - + Invalid file descriptor (port was not opened correctly) - + Unable to allocate memory tables (POSIX) - + Caught a non-blocked signal (POSIX) - + Operation timed out (POSIX) - + The file opened by the port is not a valid device - + The port detected a break condition - + The port detected a framing error (usually caused by incorrect baud rate settings) - + There was an I/O error while communicating with the port - + Character buffer overrun - + Receive buffer overflow - + The port detected a parity error in the received data - + Transmit buffer overflow - + General read operation failure - + General write operation failure - + Unknown error: %1 - + @@ -9235,7 +9246,7 @@ You are seeing this message most likely because you have no DISPLAY environment QgisApp - + Layers Lager @@ -9244,128 +9255,131 @@ You are seeing this message most likely because you have no DISPLAY environment Version - - - + + + Invalid Data Source Ogiltig datakälla - - + + No Layer Selected Inget Lager Markerat - + There is a new version of QGIS available Det finns en ny version av QGIS tillgänglig - + You are running a development version of QGIS Du använder en utvecklingsversion av QGIS - + You are running the current version of QGIS Du använder den senaste versionen av QGIS - + Would you like more information? Vill du ha mer information? - - - - + + + + QGIS Version Information Versionsinformation för QGIS - + Unable to get current version information from server Kan inte hämta senaste versionen från servern - + Connection refused - server may be down Anslutning nekad - servern kanske är nere - + QGIS server was not found QGIS-servern hittades inte - + + + + Invalid Layer Ogiltigt Lager - + %1 is an invalid layer and cannot be loaded. %1 är ett ogiltigt lager och kan inte laddas. - + Problem deleting features Problem med att ta bort objekt - + A problem occured during deletion of features Ett problem uppstod under radering av objekt - + No Vector Layer Selected Inget Vektorlager Markerat - + Deleting features only works on vector layers Radering av objekt fungerar bara på vektorlager - + To delete features, you must select a vector layer in the legend För att ta bort ett objekt så måste du markera ett vektorlager i teckenförklaringen - + Map legend that displays all the layers currently on the map canvas. Click on the check box to turn a layer on or off. Double click on a layer in the legend to customize its appearance and set other properties. Teckenförklaring som visar alla lager i kartvyn. Klicka på en checkbox för att aktivera eller inaktivera ett lager. Dubbelklicka på ett lager i teckenförklaringen för att ställa in dess utseende och ändra andra inställningar. - + Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas. Översiktskarta. Denna kartvy kan användas för att visa en översikt där den nuvarande kartvyn syns som en röd rektangel. Alla lager i kartan kan läggas till i översiktskartan. - + Map canvas. This is where raster and vector layers are displayed when added to the map Kartvy. Det är här som raster- och vektorlager visas när de adderas till kartan - + Progress bar that displays the status of rendering layers and other time-intensive operations Förloppsindikator som visar statusen för rendering av lager och andra tidsintensiva operationer - + Displays the current map scale Visar den nuvarande kartskalan - + Render Rendera - + When checked, the map layers are rendered in response to map navigation commands and other events. When not checked, no rendering is done. This allows you to add a large number of layers and symbolize them before rendering. När den här rutan är markerad så renderas kartlagren vid navigationskommandon och andra händelser com kräver en uppdatering av kartan. När den inte är markerad så renderas ingenting. Detta låter dig addera ett stort antal lager och ställa in deras symbologi innan du renderar dem. @@ -9374,7 +9388,7 @@ You are seeing this message most likely because you have no DISPLAY environment QGis-filer (*.qgs) - + Choose a QGIS project file Välj en QGIS-projektfil @@ -9383,43 +9397,43 @@ You are seeing this message most likely because you have no DISPLAY environment Insticks&program - + Reading settings Läser inställningar - + Setting up the GUI Ställer in GUI - + Checking database Kollar databas - + Quantum GIS Quantum GIS - + Restoring loaded plugins Återställer laddade plugin - + Initializing file filters Initialiserar filfilter - + Restoring window state Återställer fönstertillstånd - - + + QGIS Ready! QGIS Klar! @@ -9812,12 +9826,12 @@ You are seeing this message most likely because you have no DISPLAY environment Insticksprogram - + Toggle map rendering Toggla kartritande - + Ready Klar @@ -9826,18 +9840,18 @@ You are seeing this message most likely because you have no DISPLAY environment Spara som - + Calculating... Beräknar... - - + + Abort... Avbryt... - + Choose a QGIS project file to open Välj en QGIS-projektfil att öppna @@ -9846,46 +9860,44 @@ You are seeing this message most likely because you have no DISPLAY environment QGIS-projekt läsfel - + Unable to open project Kan inte öppna projekt - - + + To perform a full histogram stretch, you need to have a raster layer selected. För att sträcka ut histogrammet måste du ha valt ett lager. - + No Raster Layer Selected Inget rasterlager valt - - - + + Layer is not valid Lager är ej giltigt - - + The layer is not a valid layer and can not be added to the map Lagret är inte ett giltigt lager och kan inte läggas till kartan - + Save? Spara? - + Open a GDAL Supported Raster Data Source Öppna ett rasterlager som GDAL stöder - + Unsupported Data Source Datakälla som ej stöds @@ -9894,13 +9906,13 @@ You are seeing this message most likely because you have no DISPLAY environment Skriv in ett namn för det nya bokmärket: - - - - - - - + + + + + + + Error Fel @@ -9946,34 +9958,34 @@ You are seeing this message most likely because you have no DISPLAY environment Okänt nätverksfel - + Checking provider plugins Kollar plugin för datakällor - + Starting Python Startar Python - + Provider does not support deletion Datapluginet stödjer inte radering - + Data provider does not support deleting features Datapluginet stödjer inte radering av objekt - - - + + + Layer not editable Lagret kan inte redigeras - + The current layer is not editable. Choose 'Start editing' in the digitizing toolbar. Nuvarande lager är ej redigerbart. Välj 'Tillåt redigering' i verktygsraden för digitalisering. @@ -9990,17 +10002,17 @@ You are seeing this message most likely because you have no DISPLAY environment Lägg till ring - + Scale Skala - + Current map scale (formatted as x:y) Aktuell kartskala (i format x:y) - + Map coordinates at mouse cursor position Kartkoordinater vid musens läge @@ -10009,7 +10021,7 @@ You are seeing this message most likely because you have no DISPLAY environment Ogiltig skala - + Do you want to save the current project? Vill du spara aktivt projekt? @@ -10018,33 +10030,33 @@ You are seeing this message most likely because you have no DISPLAY environment Dela objekt - + Current map scale Nuvarande kartskala - + GPS Information GPS Information - + Extents: Utsträckning: - + Project file is older Projektiflen är föråldrad - + <tt>Settings:Options:General</tt> Menu path to setting options <tt>Inställningar : Alternativ : Allmänt</tt> - + Warn me when opening a project file saved with an older version of QGIS Varna mig när jag öppnar en projektifl som sparades med en äldre version av QGIS @@ -10057,12 +10069,12 @@ You are seeing this message most likely because you have no DISPLAY environment Visa objektets information när musen är över objektet - + Multiple Instances of QgisApp Flera QgisApp-instanser - + Multiple instances of Quantum GIS application object detected. Please contact the developers. @@ -10227,43 +10239,43 @@ Kontakta utvecklarna. Hantera anpassade Coordinate Reference Systems - + Minimize Minimera - + Ctrl+M Minimize Window Ctrl+M - + Minimizes the active window to the dock Minimera aktivt fönster till dockan - + Zoom Zooma - + Toggles between a predefined size and the window size set by the user Togglar mellan fördefinerad storlek och användarvald storlek på fönstret - + Bring All to Front Flytta allt överst - + Bring forward all open windows Flytta alla öppna fönster framåt - + Failed to open Python console: Kunde inte öppna python-konsolen: @@ -10272,12 +10284,12 @@ Kontakta utvecklarna. Redigera - + Panels Paneler - + Toolbars Verktygsrader @@ -10290,12 +10302,12 @@ Kontakta utvecklarna. Fönster - + Toggle extents and mouse position display Toggla visning av utsträckning och pekarposition - + Stop map rendering Stanna kartrendering @@ -10312,22 +10324,22 @@ Kontakta utvecklarna. Avslutar... - + This icon shows whether on the fly coordinate reference system transformation is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour. Denna ikon visar om transformation mellan koordinatsystem är påslagen eller ej. Klicka ikonen föra att öppna projekegenskaper och ändra beteendet. - + CRS status - Click to open coordinate reference system dialog CRS status - Klicka för att öppna dialog för koordinatsystem - + Overview Översikt - + Always ignore these errors? @@ -10336,7 +10348,7 @@ Always ignore these errors? Ignorera alltid dessa fel? - + %n SSL errors occured number of errors @@ -10345,321 +10357,327 @@ Ignorera alltid dessa fel? - + Select raster layers to add... Välj rasterlager att lägga till... - + Security warning: Säkerhetsvarning: - + macros have been disabled. makron har stängts av. - + Enable Tillåt - + Log Messages Loggmeddelande - + QGIS starting... QGIS startar... - + Window Fönster - + Vect&or Vekt&or - + &Web &Web - + Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved. It also allows editing to set the canvas center to a given position. The format is lat,lon or east,north - + Visar kartans koordinater vid markörens position. Positionen ändras när musen flyttas. Du kan också redigera positionen, för att sätta kartans centrum vid en specifik position. Formatet är lat,lon eller öst,norr - + Current map coordinate (lat,lon or east,north) Aktuell koordinat (lat/lon eller nord/ost) - + Control rendering order Styr renderingsordning - + Map layer list that displays all layers in drawing order. - + Lista över kartlager som visar alla lager i den ordning de ritas. - + Layer order Lagerordning - + [ERROR] Can not make qgis.db private copy - + [FEL] Kan inte skapa en privata kopia av qgis.db - + Update of view in private qgis.db failed. %1 - + Kunde inte uppdatera vyn i den privata qgis.db. +%1 - - + + < Blank > < Blank > - + QGIS version QGIS-version - + QGIS code revision QGIS kodrevision - + Compiled against Qt Kompilerad för Qt - + Running against Qt Kör med Qt - + GEOS Version GEOS-version - + PostgreSQL Client Version PostgreSQL-klientversion - - + + No support. Inget stöd. - + SpatiaLite Version SpatiaLite-version - + QWT Version QWT-version - + PROJ.4 Version + PROJ.4 Version + + + + QScintilla2 Version - + This copy of QGIS writes debugging output. Den här kopian av Qgis skriver ut felsökningsinformation. - + Select zip layers to add... - + Välj ziplager att lägga till... - + Vector Vektor - + Raster Raster - + Select vector layers to add... Välj vektorlager att lägga till... - + PostgreSQL PostgreSQL - + Cannot get PostgreSQL select dialog from provider. - + Kan inte hämta PostgreSQL-dialog från datakällan. - + %1 is an invalid layer - not loaded - + %1 är ett ogiltigt lager - läses inte in - + SpatiaLite - + Cannot get SpatiaLite select dialog from provider. - + Kan inte hämta SpatiaLite-dialog från datakällan. - + MSSQL - + WMS - + Cannot get WMS select dialog from provider. - Kan inte få WMS-dialogen från datakällan. + Kan inte få WMS-dialogen från datakällan. - + WCS - + Cannot get WCS select dialog from provider. - + Kan inte få WCS-dialogen från datakällan. - + WFS - + Cannot get WFS select dialog from provider. - + Kan inte få WFS-dialogen från datakällan. - - - + + + QGis files QGis-filer - + Unable to load %1 - + Kan inte läsa in %1 - + Please select a vector layer first. - + Välj ett vektorlager först. - + Layer labeling settings - + Lagrets etikettinställningar - - - + + + Not enough features selected - + Inte tillräckligt med objekt valda - + Union operation canceled - + Unionsoperation avbruten - + Couldn't load Python support library: %1 - + Kunde inte läsa in Python-bibliotek: %1 - + Couldn't resolve python support library's instance() symbol. - + Kunde inte lösa ut python-bibliotekets instance()-symbol. - + Python support ENABLED :-) - + Pythonstöd på - + QGIS - Changes since last release - + QGIS - Ändringar förra utgåvan - + Unknown network socket error: %1 - + Okänt nätverksfel: %1 - + Current CRS: %1 (OTFR enabled) - + Nuvarande referenskoordinatsystem: %1 (transformering är på) - + Current CRS: %1 (OTFR disabled) - + Nuvarande referenskoordinatsystem: %1 (transformering är av) - + This project file was saved by an older version of QGIS - + Den här projektfilen sparades med en äldre version av QGIS - + Warning - Varning + Varning - + This layer doesn't have a properties dialog. - + det här lagret har inte en egenskaps-dialog. - + Authentication required - + Autenticering krävs - + Proxy authentication required - + Mellanvärdsautentisering krävs You are using QGIS version %1 built against code revision %2. @@ -10672,37 +10690,37 @@ This binary was compiled against Qt %1,and is currently running against Qt %2 - + Choose a file name to save the QGIS project file as Välj ett namn för att spara QGIS projektfil - + Choose a file name to save the map image as Välj ett filnamn att spara kartbilden som - + Start editing failed Misslyckades att påbörja redigering - + Provider cannot be opened for editing Källan kan inte öppnas för redigering - + Stop editing Sluta redigera - + Do you want to save the changes to layer %1? Vill du spara ändringarna till lager %1? - + Problems during roll back Problem vid återgång @@ -10711,17 +10729,17 @@ Denna binärfil kompilerades mot Qt %1 och kärs just nu mot Qt %2 Python konsol - + Map coordinates for the current view extents Kartkoordinater för aktuell vys utsträckning - + Maptips require an active layer Karttips kräver ett aktivt lager - + Quantum GIS - %1 ('%2') Quantum GIS - %1 ('%2') @@ -10761,9 +10779,9 @@ Denna binärfil kompilerades mot Qt %1 och kärs just nu mot Qt %2 Ctrl+Shift+B - + Labeling - Etiketter + Etiketter Ctrl+Shift+V @@ -10815,220 +10833,222 @@ Denna binärfil kompilerades mot Qt %1 och kärs just nu mot Qt %2 Ny - + &Database - + &Databas Label Etikett - - + + Coordinate: - + Koordinat: - + Current map coordinate - + Nuvarande kartkoordinat - - - + + + Private qgis.db - + Privat qgis.db - + Could not open qgis.db - + Kunde inte öppna qgis.db - + Migration of private qgis.db failed. %1 - + Överföring av privat qgis.db misslyckades. +%1 - + Compiled against GDAL/OGR - + Kompilerad mot GDAL/OGR - + Running against GDAL/OGR - + Körs mot GDAL/OGR - + %1 doesn't have any layers - + %1 har inga lager - + %1 is not a valid or recognized data source %1 är inte en giltig eller känd datakälla - + Cannot get MSSQL select dialog from provider. - + Kan inte få MSSQL-dialogen från datakällan. - - + + Saved project to: %1 Sparade projekt i: %1 - - + + Unable to save project %1 Kunde inte spara projekt %1 - + Saved map image to %1 Sparade kartbild till %1 - + Saving done - Spara klart + Spara klart - + Export to vector file has been completed - + Export till verktorlager fullföljdes - + Save error - Kunde inte spara + Kunde inte spara - + Export to vector file failed. Error: %1 - + Export till verktorlager misslyckades. +Fel: %1 - + Features deleted Objekt borttagna - + Merging features... Slår ihop objekt... - + Abort Avbryt - - + + Composer %1 - + Komponerare %1 - - + + No active layer Inget aktivt lager - - + + No active layer found. Please select a layer in the layer list Inget aktivt lager hittades. Välj ett lager i listan - - + + Active layer is not vector Aktivt lager är inte ett vektorlager - - + + The merge features tool only works on vector layers. Please select a vector layer from the layer list Verktyget för att slå ihop objekt fungerar endast på vektorlager. Välj ett vektorlager från listan - - + + Merging features can only be done for layers in editing mode. To use the merge tool, go to Layer->Toggle editing Verktyget för att slå ihop objekt fungerar endast på lager i redigeringsläge. För att använda verktyget gå till Lager->Toggla redigering - - - + + + The merge tool requires at least two selected features Verktyget för att slå ihop objekt kräver minst två valda objekt - + Merged feature attributes - + Ihopslagna objektattribut - - + + Merge failed - + Ihopslagning misslyckades - - + + An error occured during the merge operation - + Ett fel upstod under ihopslagningen - - + + The union operation would result in a geometry type that is not compatible with the current layer and therefore is canceled Unionen skulle resultera i en geometri som inte stödjs av nuvarande lager, och avbröts därför - + Merged features Ihopslagna objekt - + Features cut Objekt utklippta - + Features pasted Objekt inklistrade - + Cannot copy style: %1 - + Kan inte kopiera stil: %1 - + Cannot parse style: %1:%2:%3 - + Kan inte tolka stil: %1:%2:%3 - + Cannot read style: %1 - + Kan inte läsa stil: %1 - - + + Could not commit changes to layer %1 Errors: %2 @@ -11043,19 +11063,19 @@ Fel: %2 QGIS - Ändringar i SVN sedan förra utgåvan - + Unable to communicate with QGIS Version server %1 Kan inte skapa en uppkopling mot QGIS versionsserver %1 - + The layer %1 is not a valid layer and can not be added to the map Lagret %1 är inte ett giltigt lager och kan inte läggas till kartan - + %n feature(s) selected on layer %1. number of selected features @@ -11064,32 +11084,32 @@ Fel: %2 - + %1 is not a valid or recognized raster data source %1 är inte en giltig eller igenkänd källa till rasterdata - + %1 is not a supported raster data source %1 är inte en rasterkälla som stöds - + <p>This project file was saved by an older version of QGIS. When saving this project file, QGIS will update it to the latest version, possibly rendering it useless for older versions of QGIS.<p>Even though QGIS developers try to maintain backwards compatibility, some of the information from the old project file might be lost. To improve the quality of QGIS, we appreciate if you file a bug report at %3. Be sure to include the old project file, and state the version of QGIS you used to discover the error.<p>To remove this warning when opening an older project file, uncheck the box '%5' in the %4 menu.<p>Version of the project file: %1<br>Current version of QGIS: %2 <p>Denna projektfil sparades av en äldre version av QGIS. När du sparar denna projektifl, kommer QGIS att skriva den med senaste versionen, vilket kan göra den oanvändbar för äldre versioner av QGIS. Även om QGIS utvecklare försöker bibehålla bakåtkompabilitet, så kan en del av information i den gamla projektfilen eventuellt försvinna. För att förbättra kvaliteten på QGIS, uppskattar vi om du skapar en felrapport på %3. Inkludera den gamla projektiflen, och tala om vilken version av QGIS du använde när du upptäckte felet.<p>För att ta bort denna varning när du öppnar gamla projekfiler, avmarkera rutan '%5' i meny %4.<p>Projektfilens version: %1<br>QGIS nuvarande version: %2 - + SSL errors occured accessing URL %1: SSL-fel inträffade vid åtkomst av URL %1: - + Delete features Borttagna objekt - + Delete %n feature(s)? number of features to delete @@ -11563,7 +11583,7 @@ Användaredatabas-sökväg: %8 % - + % @@ -12483,157 +12503,157 @@ felet var: %2 Attributredigeringsdialog - + Line edit Linjeredigering - + Classification Klassificering - + Range Intervall - + Unique values Unika värden - + File name Filnamn - + Value map Värdekarta - + Enumeration Uppräkning - + Immutable Oförstörbara - + Hidden Gömd - + Checkbox Kryssruta - + Text edit Textredigering - + Calendar Kalender - + Value relation Värderelation - + UUID generator UUID-generator - + Simple edit box. This is the default editation widget. Enkelt redigeringsruta. Detta är standard redigeringsfunktion. - + Displays combo box containing values of attribute used for classification. Visar meny med attributevärden som används för klassificering. - + Allows one to set numeric values from a specified range. The edit widget can be either a slider or a spin box. Gör det möjligt att ställa in numeriska värden från ett intervall. Redigeringsfunktionen kan vara antingen ett dragreglage eller en snurra. - + Minimum Minimum - + Maximum Maximum - + Step Steg - + A calendar widget to enter a date. Kalenderfunktion för att ange ett datum. - + Layer Lager - + Key column Nyckelkolumn - + Value column Värdekolumn - + Select layer, key column and value column Välj lager, nyckelkolum och värdekolumn - + Allow null value Tillåt noll-värde - + Order by value Sortera efter värde - + Allow multiple selections Tillåt flera markeringar - + Filter column Filterkolumn - + Filter value Filtervärde - + Read-only field that generates a UUID if empty. Skrivskyddat fält som skapar ett UUID om det lämnas tomt. @@ -12644,84 +12664,84 @@ felet var: %2 Dragreglage - + Editable Redigerbart - + Local minimum/maximum = 0/0 Lokalt minimum/maximum = 0/0 - + The user can select one of the values already used in the attribute. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used. Anävndaren kan välja ett av värden som redan används i attributet. Om redigerbart så visas en linjeredigeringsfunktion som kan ge förslag, annars används en meny. - + Simplifies file selection by adding a file chooser dialog. Förenklar val av filer genom att lägga till en filväljare. - + Combo box with predefined items. Value is stored in the attribute, description is shown in the combo box. Meny med förutbestämda värden. Värdet sparas i attributet, beskrivningen syns i menyn. - + Load Data from layer Läs in data från lager - + Value Värde - + Description Beskrivning - + Remove Selected Ta bort valda - + Load Data from CSV file Läs in data från CVS-fil - + Combo box with values that can be used within the column's type. Must be supported by the provider. Meny med värden som kan användas för kolumnens typ. Måste stödjas av datakällan. - + An immutable attribute is read-only - the user is not able to modify the contents. Ett oföränderligt attribu kan bara läsas, användaren kan inte modifiera innehållet. - + A hidden attribute will be invisible - the user is not able to see it's contents. Ett gömt attribut är osynligt, användaren kan inte se dess värde. - + Representation for checked state Representerar markerat tillstånd - + Representation for unchecked state Representerar avmarkerat tillstånd - + A text edit field that accepts multiple lines will be used. Ett redigeringsfält som tillåter flera rader kommer att användas. @@ -13167,13 +13187,13 @@ Databas: %2 QgsCategorizedSymbolRendererV2Widget - + Value Värde - + Label Etikett @@ -13183,28 +13203,28 @@ Databas: %2 Symbolnivåer... - - + + Error Fel - + There are no available color ramps. You can add them in Style Manager. Finns inga tillgängliga färgramper. Du kan lägga till dem i Stilhanteraren. - + The selected color ramp is not available. Vald färgramp är inte tillgänglig. - + Confirm Delete Bekräfta borttagning - + The classification field was changed from '%1' to '%2'. Should the existing classes be deleted before classification? Klassificeringsfältet ändrades från '%1' till '%2'. @@ -13223,7 +13243,7 @@ Skall existerande klasser tas bort före klassificering? - + Symbol Symbol @@ -13308,18 +13328,18 @@ Skall existerande klasser tas bort före klassificering? QgsComposer - + Big image Stor bild - + SVG warning SVG varning - - + + Don't show this message again Visa inte detta meddelande igen @@ -13328,7 +13348,7 @@ Skall existerande klasser tas bort före klassificering? Karta 1 - + SVG Format SVG-format @@ -13389,15 +13409,15 @@ Skall existerande klasser tas bort före klassificering? - - + + Empty filename pattern Tomt filnamnsmönster - - + + The filename pattern is empty. A default one will be used. Filnamnsmönstret är tomt. Ett standarvärde kommer användas. @@ -13408,49 +13428,49 @@ Skall existerande klasser tas bort före klassificering? - - + + Unable to write into the directory Kunde inte skriva till katalogen - - + + The given output directory is not writeable. Cancelling. Den givna katalogen är ej skrivbara. Avbryter. - - - - + + + + Rendering maps... Rendererar kartor... - - - - + + + + Abort Avbryt - - - - + + + + Atlas processing error Atlas processfel - + To create image %1x%2 requires about %3 MB of memory. Proceed? Att skapa bild %1x%2 krävs ungefär %3 MB minne. Fortsätta? - + Choose a file name to save the map image as Välj ett filnamn att spara kartbilden som @@ -13460,52 +13480,52 @@ Skall existerande klasser tas bort före klassificering? - + Choose a file name to save the map as Välj ett filnamn att spara kartan som - + Directory where to save image files Katalog där bildfilerna skall sparas - + Image format: Bildformat: - + <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the <p>SVG exportfunktionen i QGIS har flera fel beroende på buggar och begränsningar i - + Directory where to save SVG files Katalog där SVG-filerna skall sparas - + Save template Spara mall - + Composer templates Komponeringsmall - + Composer Komponerare - + Project contains WMS layers Projektet innehåller WMS-lager - + Some WMS servers (e.g. UMN mapserver) have a limit for the WIDTH and HEIGHT parameter. Printing layers from such servers may exceed this limit. If this is the case, the WMS layer will not be printed En del WMS-servrar (tex UMN mapserver) har begränsningar för parametrarna WIDTH och HEIGHT. Skriver du ut sådana lager kan de gränserna överskridas. Om så är fallet, skrivs WMS-lagret inte ut @@ -13514,7 +13534,7 @@ Skall existerande klasser tas bort före klassificering? %1-format (*.%2 *.%3) - + Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p> Qt4 SVG kod. T.ex. är det problem med lager som inte klipps av kartans begränsningslinjer.</p> @@ -13523,7 +13543,7 @@ Skall existerande klasser tas bort före klassificering? För att skapa bild %1 x %2 behövs ca %3 MB minne - + If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p> Om du behöver en vektorbaserad utskrift från QGIS, föreslår vi att du försöker skriva till PostScript, om du inte är nöjd med resultatet från SVG.</p> @@ -13532,27 +13552,27 @@ Skall existerande klasser tas bort före klassificering? Spara mall - + Save error Kunde inte spara - + Error, could not save file Kunde inte spara fil - + Load template Läs in mall - + Read error Läsfel - + Error, could not read file Kunde inte läsa filen @@ -16605,12 +16625,12 @@ Fel: %5 QgsCptCityBrowserModel - + Name Namn - + Info Info @@ -16618,27 +16638,27 @@ Fel: %5 QgsCptCityColorRampItem - + colors färger - + continuous kontinuerlig - + continuous (multi) kontinuerlig (multipel - + discrete diskret - + variants varianter @@ -16646,12 +16666,12 @@ Fel: %5 QgsCptCityColorRampV2Dialog - + %1 directory details %1 katalogdetaljer - + %1 gradient details %1 gradientdetaljer @@ -16668,7 +16688,7 @@ You can install the entire cpt-city archive or a selection for QGIS. This file can be found at [%2] and current file is [%3] - + @@ -16685,7 +16705,7 @@ and current file is [%3] You can download a more complete set of cpt-city gradients by installing the "Color Ramp Manager" plugin (you must enable Experimental plugins in the plugin manager). - + @@ -17101,7 +17121,7 @@ and current file is [%3] Add PostGIS layers - + @@ -17126,7 +17146,7 @@ and current file is [%3] Delete - + @@ -17147,12 +17167,12 @@ and current file is [%3] Also list tables with no geometry - + Search options - + @@ -17162,12 +17182,12 @@ and current file is [%3] Search mode - + Search in columns - + @@ -18764,42 +18784,35 @@ p, li { white-space: pre-wrap; } QgsEmbedLayerDialog - Select project file - Välj projektfil + Välj projektfil - QGis files - QGis-filer + QGis-filer - Recursive embeding not possible - Rekursiv inbäddning ej tillåten + Rekursiv inbäddning ej tillåten - It is not possible to embed layers / groups from the current project - Man kan inte bädda in lager/grupper från nuvaraned projekt + Man kan inte bädda in lager/grupper från nuvaraned projekt QgsEmbedLayerDialogBase - Select layers and groups to embed - Välj lager och grupper för att bädda in + Välj lager och grupper för att bädda in - Project file - Projektfil + Projektfil - ... - ... + ... @@ -18896,6 +18909,50 @@ p, li { white-space: pre-wrap; } Visa alla etikettkandidater (för felsökning) + + QgsErrorDialog + + + Error + Fel + + + + QgsErrorDialogBase + + + Dialog + Dialog + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Summary</p></body></html> + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detailed report.</p></body></html> + + + + + Always show details + + + + + Details >> + + + QgsExpressionBuilderDialogBase @@ -19464,7 +19521,7 @@ Uttrycket är ogiltigt, se (mer information) för detaljer p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">In the download and upload commands there can be special words that will be replaced by QGIS when the commands are used. These words are:</span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%babel</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the path to GPSBabel<br /></span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%in</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the GPX filename when uploading or the port when downloading<br /></span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%out</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the port when uploading or the GPX filename when downloading</span></p></body></html> - + @@ -19967,17 +20024,17 @@ grå: ingen data quality of the position fix: Differential, Non-differential or No position - + Quality - + position fix status: Valid or Invalid - + @@ -19987,52 +20044,52 @@ grå: ingen data number of satellites used in the position fix - + Satellites - + H accurancy - + V accurancy - + Connection - + Serial device - + Refresh serial device list - + 00000; - + gpsd - + Internal - + @@ -20042,12 +20099,12 @@ grå: ingen data Automatically add points - + Track width in pixels - + @@ -20057,52 +20114,52 @@ grå: ingen data save layer after every feature added - + Automatically save added feature - + save GPS data (NMEA sentences) to a file - + Log File - + browse for log file - + Map centering - + when leaving - + % of map extent - + Cursor - + width - + @@ -20143,7 +20200,7 @@ grå: ingen data Unable to create a GPX file with the given name. Try again with another name or in another directory. - + @@ -20261,13 +20318,13 @@ Please reselect a valid file. &GPS Tools - + &GPS - + @@ -20334,27 +20391,27 @@ Please reselect a valid file. GPS eXchange format - + Waypoints from a route - + Waypoints from a track - + Route from waypoints - + Track from waypoints - + @@ -20372,12 +20429,12 @@ Please reselect a valid file. File - + Filhantering Feature types - + @@ -20400,13 +20457,13 @@ Please reselect a valid file. File to import - + Feature type - + @@ -20419,17 +20476,17 @@ Please reselect a valid file. GPX output file - + GPX input file - + Conversion - + @@ -20474,7 +20531,7 @@ Please reselect a valid file. GPS device - + @@ -20490,7 +20547,7 @@ Please reselect a valid file. Data layer - + @@ -20529,35 +20586,40 @@ Please reselect a valid file. QgsGdalProvider - + Dataset Description Beskrivning av dataset - + Band %1 Band %1 - + Dimensions: Dimensioner: - + X: %1 Y: %2 Bands: %3 X: %1 Y: %2 Band: %3 - + Origin: Origo: - + Pixel Size: Pixelstorlek: + + + Cannot get GDAL raster band: %1 + + out of extent utanför utsträckning @@ -20567,22 +20629,22 @@ Please reselect a valid file. null (ingen data) - + Gauss Gauss - + Cubic Kubisk - + Mode Läge - + None Ingen @@ -20591,7 +20653,7 @@ Please reselect a valid file. Average Magphase - + Average Average @@ -20871,12 +20933,12 @@ p, li { white-space: pre-wrap; } All other files (*) - + Open raster - + @@ -20891,19 +20953,19 @@ p, li { white-space: pre-wrap; } Raster loaded: %1 - + Georeferencer - %1 - + Transform: - + @@ -20923,28 +20985,28 @@ p, li { white-space: pre-wrap; } GDAL scripting is not supported for %1 transformation - + Load GCP points - + No GCP points to save - + Save GCP points - + Please load raster to be georeferenced - + @@ -20965,27 +21027,27 @@ p, li { white-space: pre-wrap; } Coordinate: - + Current map coordinate - + Nuvarande kartkoordinat Current transform parametrisation - + Unable to open GCP points file %1 - + Could not write to %1 - + @@ -21000,23 +21062,23 @@ p, li { white-space: pre-wrap; } Save GCP points? - + Failed to get linear transform parameters - + <p>The selected file already seems to have a world file! Do you want to replace it with the new world file?</p> - + Failed to compute GCP transform: Transform is not solvable - + @@ -21026,37 +21088,37 @@ p, li { white-space: pre-wrap; } Transformation parameters - + Translation x - + Translation y - + Scale x - + Scale y - + Rotation [degrees] - + Residuals - + @@ -21070,7 +21132,7 @@ p, li { white-space: pre-wrap; } GCP file - + @@ -21080,7 +21142,7 @@ p, li { white-space: pre-wrap; } Coordinate of image(column/line) - + @@ -21091,7 +21153,7 @@ p, li { white-space: pre-wrap; } Mean error [%1] - + @@ -21106,47 +21168,47 @@ p, li { white-space: pre-wrap; } Translation (%1, %2) - + Scale (%1, %2) - + Rotation: %1 - + Mean error: %1 - + Copy in clipboard - + %1 - + GDAL script - + Please set transformation type - + Please set output raster name - + @@ -21191,7 +21253,7 @@ p, li { white-space: pre-wrap; } Not set - + @@ -21210,7 +21272,7 @@ p, li { white-space: pre-wrap; } File - + Filhantering @@ -21232,7 +21294,7 @@ p, li { white-space: pre-wrap; } GCP table - + @@ -21243,7 +21305,7 @@ p, li { white-space: pre-wrap; } Open raster - + @@ -21299,7 +21361,7 @@ p, li { white-space: pre-wrap; } Add point - + @@ -21310,7 +21372,7 @@ p, li { white-space: pre-wrap; } Delete point - + @@ -21327,18 +21389,18 @@ p, li { white-space: pre-wrap; } Start georeferencing - + Ctrl+G - + Generate GDAL script - + @@ -21349,19 +21411,19 @@ p, li { white-space: pre-wrap; } Link Georeferencer to QGis - + Link QGis to Georeferencer - + Save GCP points as... - + @@ -21372,7 +21434,7 @@ p, li { white-space: pre-wrap; } Load GCP points - + @@ -21392,13 +21454,13 @@ p, li { white-space: pre-wrap; } Raster properties - + Move GCP point - + @@ -21413,12 +21475,12 @@ p, li { white-space: pre-wrap; } Local histogram stretch - + Full histogram stretch - + @@ -21426,48 +21488,48 @@ p, li { white-space: pre-wrap; } GDAL files - + DEM files - + - + All files Alla filer Open raster file - + Invalid Path: The file is either unreadable or does not exist - + Invalid URL: - + Do you want to add the datasource anyway? - + - + Open 3D model file - + - + Model files - + @@ -21475,12 +21537,12 @@ p, li { white-space: pre-wrap; } Globe Settings - + Elevation - + @@ -21496,12 +21558,12 @@ p, li { white-space: pre-wrap; } TMS - + URL/File - + @@ -21542,72 +21604,72 @@ p, li { white-space: pre-wrap; } Model - + Point Layer - + 3D Model - + Stereo - + Stereo Mode - + Screen distance (m) - + Screen width (m) - + Split stereo horizontal separation (px) - + Split stereo vertical separation (px) - + Split stereo vertical eye mapping - + Screen height (m) - + Eye separation (m) - + Reset to defaults - + Split stereo horizontal eye mapping - + @@ -21675,13 +21737,13 @@ p, li { white-space: pre-wrap; } QgsGraduatedSymbolRendererV2Widget - + Range Intervall - + Label Etikett @@ -21710,7 +21772,7 @@ p, li { white-space: pre-wrap; } Renderer creation has failed. - + @@ -21724,7 +21786,7 @@ p, li { white-space: pre-wrap; } - + Symbol Symbol @@ -21751,12 +21813,12 @@ p, li { white-space: pre-wrap; } Quantile - + Natural Breaks (Jenks) - + @@ -21766,7 +21828,7 @@ p, li { white-space: pre-wrap; } Pretty Breaks - + @@ -21934,7 +21996,7 @@ p, li { white-space: pre-wrap; } Remove the selected layer(s) from QGis canvas before continue. - + @@ -21945,7 +22007,7 @@ p, li { white-space: pre-wrap; } Are you sure you want to delete %n selected layer(s)? number of layers to delete - + @@ -21964,19 +22026,19 @@ p, li { white-space: pre-wrap; } Cannot copy map %1@%2 - + <br>command: %1 %2<br>%3<br>%4 - + Cannot rename map %1 - + @@ -22184,27 +22246,27 @@ p, li { white-space: pre-wrap; } Cannot check orphan record: %1 - + Cannot describe table for field %1 - + Left: %1 - + -- Middle: %1 - + -- Right: %1 - + @@ -22424,7 +22486,7 @@ p, li { white-space: pre-wrap; } Undo last vertex - + New point @@ -22876,39 +22938,39 @@ p, li { white-space: pre-wrap; } Cannot check region of map %1 - + Cannot get region of map %1 - + The file already exists. Overwrite? - + The mapcalc schema (%1) not found. - + Cannot open mapcalc schema (%1) - + Cannot read mapcalc schema (%1): - + %1 at line %2 column %3 - + @@ -22986,23 +23048,23 @@ at line %2 column %3 Module: %1 - + The module file (%1) not found. - + Cannot open module file (%1) - + Cannot read module file (%1) - + @@ -23010,52 +23072,52 @@ at line %2 column %3 %1 at line %2 column %3 - + Module %1 not found - + Cannot find man page %1 - + Not available, description not found (%1) - + Not available, cannot open description (%1) - + Not available, incorrect description (%1) - + Input %1 outside current region! - + Output %1 exists! Overwrite? - + Cannot find module %1 - + Cannot start module: %1 - + @@ -23116,7 +23178,7 @@ at line %2 column %3 'layer' attribute in field tag with key= %1 is missing. - + @@ -23129,12 +23191,12 @@ at line %2 column %3 %1:&nbsp;missing value - + %1:&nbsp;directory does not exist - + @@ -23142,7 +23204,7 @@ at line %2 column %3 OGR/PostGIS/GDAL Input - + @@ -23159,12 +23221,12 @@ at line %2 column %3 Cannot find layeroption %1 - + Cannot find whereoption %1 - + @@ -23179,7 +23241,7 @@ at line %2 column %3 %1:&nbsp;no input - + @@ -23200,22 +23262,22 @@ at line %2 column %3 Cannot find typeoption %1 - + Cannot find values for typeoption %1 - + Cannot find layeroption %1 - + GRASS element %1 not supported - + @@ -23225,7 +23287,7 @@ at line %2 column %3 %1:&nbsp;no input - + @@ -23244,17 +23306,17 @@ at line %2 column %3 Cannot parse version_min %1 - + Cannot parse version_max %1 - + %1:&nbsp;missing value - + @@ -23262,7 +23324,7 @@ at line %2 column %3 Selected categories - + @@ -23270,17 +23332,17 @@ at line %2 column %3 Item with key %1 not found - + << Hide advanced options - + Show advanced options >> - + @@ -23305,49 +23367,49 @@ at line %2 column %3 Cannot find module %1 - + Cannot start module %1 - + <br>command: %1 %2<br>%3<br>%4 - + Cannot read module description (%1): - + %1 at line %2 column %3 - + Cannot find key %1 - + Item with id %1 not found - + Cannot check region of map %1 - + Cannot set region of map %1 - + @@ -23524,39 +23586,39 @@ at line %2 column %3 No writable locations, the database is not writable! - + Regions file (%1) not found. - + Cannot open locations file (%1) - + Cannot read locations file (%1): - + %1 at line %2 column %3 - + Cannot create new location: %1 - + New mapset successfully created, but cannot be opened: %1 - + @@ -23920,12 +23982,12 @@ p, li { white-space: pre-wrap; } Cannot open vector %1 in mapset %2 on level 2 (topology not available, try to rebuild topology using v.build module). - + Cannot open vector %1 in mapset %2 - + @@ -23958,12 +24020,12 @@ p, li { white-space: pre-wrap; } Cannot open GRASS vector: %1 - + Cannot create new vector: %1 - + @@ -23978,22 +24040,22 @@ p, li { white-space: pre-wrap; } Cannot open the mapset. %1 - + Cannot close mapset. %1 - + Cannot close current mapset. %1 - + Cannot open GRASS mapset. %1 - + @@ -24001,7 +24063,7 @@ p, li { white-space: pre-wrap; } GRASS vector map %1 does not have topology. Build topology? - + @@ -24010,6 +24072,16 @@ p, li { white-space: pre-wrap; } null (no data) null (ingen data) + + + cellhd file %1 does not exist + + + + + Groups not yet supported + Grupper stöds ännu inte + QgsGrassRegion @@ -24085,22 +24157,22 @@ p, li { white-space: pre-wrap; } Select the extent by dragging on canvas or change the following values - + Resolution - + Cell width - + Cell height - + @@ -24110,7 +24182,7 @@ or change the following values Border - + @@ -24227,7 +24299,7 @@ or change the following values Browse... - + Bläddra... OK @@ -24270,7 +24342,7 @@ or change the following values Cannot rename the lock file %1 - + @@ -24302,34 +24374,34 @@ or change the following values GRASS Tools: %1/%2 - + The config file (%1) not found. - + Cannot open config file (%1). - + Cannot read config file (%1): - + %1 at line %2 column %3 - + Cannot start command shell (%1) - + @@ -24385,50 +24457,50 @@ at line %2 column %3 New file - + New datasource - + none - + Select file to replace '%1' - + Please select exactly one file. - + Select new directory of selected files - + All files (*) - + Unhandled layer will be lost. - + There are still %n unhandled layer(s), that will be lost if you closed now. unhandled layers - + @@ -24439,7 +24511,7 @@ at line %2 column %3 Handle bad layers - + @@ -24459,22 +24531,22 @@ at line %2 column %3 Original filename - + New filename - + Original datasource - + New datasource - + @@ -24482,7 +24554,7 @@ at line %2 column %3 <h3>Oops! QGIS can't find help for this form.</h3>The help file for %1 was not found for your language<br>If you would like to create it, contact the QGIS development team - + @@ -24576,12 +24648,12 @@ at line %2 column %3 Delete - + html - + @@ -24669,119 +24741,119 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Distance coefficient P - + QgsIdentifyResults - - + + (Derived) (Härledd) - + Identify Results Identifiera Resultat - + Feature Objekt - + Value Värde - + (Actions) - + - - - + + + Edit feature form - + - - - + + + View feature form - + - + Layer properties... - + Attribute changes - + - + Could not open url - + - + Could not open URL '%1' - + - + Zoom to feature Zooma till objekt - + Copy attribute value Kopiera attributvärde - + Copy feature attributes Kopiera attribut - + Expand all - + - + Collapse all - + Attribute changed Attribut ändrats - + Clear results - + - + Clear highlights - + - + Highlight all - + - + Highlight layer - + @@ -24791,13 +24863,35 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern.Identify Results Identifiera Resultat + + + Expand tree. + + + + + + + ... + ... + + + + Collapse tree. + + + + + New results will be expanded by default. + + QgsImageWarper Progress indication - + @@ -24877,12 +24971,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Vector layers - + Interpolation attribute - + @@ -24938,12 +25032,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Cellsize X - + Cellsize Y - + @@ -24968,7 +25062,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Set to current extent - + @@ -25120,7 +25214,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Label Properties - + @@ -25205,19 +25299,19 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. In points - + In map units - + Transparency - + @@ -25252,27 +25346,27 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Basic label options - + Buffer labels - + Label only selected features - + Data defined placement - + Data defined properties - + @@ -25307,7 +25401,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Strikeout - + @@ -25351,17 +25445,17 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Label font - + Font color - + Buffer color - + @@ -25369,7 +25463,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Label properties - + @@ -25396,22 +25490,22 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Show label - + Max - + Min - + Scale-based - + @@ -25426,7 +25520,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Label distance - + @@ -25441,12 +25535,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Horizontal alignment - + Vertical alignment - + @@ -25461,54 +25555,54 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern.kartenheter - + Sample @ %1 pts (using map units) - + Exempel @ %1 pkter (satt i kartenheter) - + (not found!) - + (ej funnen!) - + Sample @ %1 pts (using map units, BUFFER IN MILLIMETERS) - + Exempel @ %1 pkter (satt i kartenheter, BUFFER ÄR SATT I MILLIMETER ) - + Sample Test - + Sample (BUFFER NOT SHOWN, in map units) - + Exempel (BUFFER VISAS INTE, är satt i kartenheter) - + Expression based label - + Uttrycksbaserad textsättning - + Mixed Case - + Blandat versaler/gemener - + All Uppercase - + Allt till versaler - + All Lowercase - + Allt till gemener - + Title Case - + Versal som första bokstav @@ -25516,42 +25610,42 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Layer labeling settings - + Lagrets etikettinställningar Expression - + Uttryck Label settings - + Textinställningar Size for sample text in map units - + Storlek i kartenheter för exempeltexten Sample background color - + Backgrundsfärg i exempelrutan Multiple lines - + Flerradig text Wrap on character - + Byt rad vid följande tecken Line height spacing for multi-line text - + Avstånd mellan raderna i flerradig text @@ -25561,85 +25655,85 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Paragraph style alignment of multi-line text - + Horisontell justering av flerradig text Available typeface styles - + Tillgängliga teckenformat Underlined Text - + Understruken text Strikeout text - + Genomstruken text Space in pixels or map units, relative to size unit choice - + Avstånd mellan ord i pixel eller kartenheter, baserat på vald enhet under storlek Type case - + Versalisering Capitalization style of text - + Typ av versalisering på texten Minimum - + Minimum Maximum - + Maximum Formatted numbers - + Formatera nummer Decimal places - + Antal decimaler Show plus sign - + Visa plus-symbol - + map units kartenheter Pen Join style - + Color area inside of pen stroke - + - + Transparency Genomskinlighet @@ -25647,7 +25741,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. % - + % @@ -25657,39 +25751,39 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Reset sample text - + Återställ exempeltext - + Multi-line align - + - + Word spacing - + Ordavstånd - + Letter spacing - + Teckenavstånd - + Line height - + Radavstånd line - + rad - + Left Vänster @@ -25700,14 +25794,14 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. - + Right Höger U - + U @@ -25717,7 +25811,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. points - + punkter @@ -25730,73 +25824,73 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern.Avancerad - + Options Inställningar - + Label every part of multi-part features - + Textsätt varje del av en flerdelad geometri - + Merge connected lines to avoid duplicate labels - + Slå ihop linjer med kontakt för att undvika duplicering av texter - + Add direction symbol - + Lägg till symbol i texten som visar linjens riktning - + Features don't act as obstacles for labels - + Geometriobjekt räknas inte som hinder för texten - + Placement Placering - - - + + + Label distance - + - + Capitalization - + Versalisering - + Add label columns to attribute table - + Lägg till textkolumner i attributtabellen - + About data defined values - + Om datadefinerad textsättning - + mm mm - - - + + + Rotation Rotation - - + + degrees grader @@ -25807,7 +25901,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Text style - + Textutseende @@ -25832,7 +25926,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. - + Color Färg @@ -25844,12 +25938,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. - + Size Storlek - + mm mm @@ -25862,37 +25956,37 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Lorem Ipsum - + Lorem Ipsum Font size Typsnittsstorlek - - + + In map units - + - + Priority - + Prioritet - + Low Låg - + High Hög Scale-based visibility - + Skalbaserad synlighet Enabled @@ -25907,270 +26001,290 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern.Maximum - + Suppress labeling of features smaller than - + Visa inte texter på objekt mindre än - - + + In mm - + I mm - + Line orientation dependent position - + Position baserat på linjens riktning - + Data defined settings Datadefinierade inställningar - + Buffer transparency - + Genomskinlighet på buffer - + Uncheck to write labeling engine derived rotation on pin and NULL on unpin - + - + Preserve existing rotation values during label pin/unpin operations - + Bevara nuvarande rotationsvärden när text sätts fast / tas loss - + Display properties - + Inställningar för synlighet - + Minimum scale - + Minimumskala - + Show label - + - + Maximum scale - + Maximumskala - + Font properties - + Inställningar för tecken - + Bold - + Fet - + Italic - + Kursiv - + Underline - + Understruken - + Font family Typsnittsfamilj - + Position Position - + Automated placement settings Automatiserad placering - + Show all labels for this layer (i.e. including colliding labels) - + Visa all text för detta lager (exempelvis så inkluderas kolliderande text) - + Around point - + Runt punkten - + Offset from point - + Exakt position från punkten - + Parallel - + Parallelt - + Curved - + Böjt - + Horizontal Horisontell - + Offset from centroid - + Exakt position från centroiden - + Around centroid - + Runt centroiden - + Horizontal (slow) - + Horisontellt (långsam) - + Free (slow) - + Fritt (långsamt) - + Using perimeter - + Längs kantlinje - + Centroid of - + Centroiden på - + visible polygon - + synlig polygon - + whole polygon - + hel polygon - + Above line Ovanför linje - + On line På linje - + Below line - + Under linje - + X - + X - + Y - + Y - + Above Right Ovanför Höger - + Above Left Ovanför Vänster - + Over Över - + Above Ovanför - + Below Left Nedanför Vänster - + Below Nedanför - + Below Right Nedanför Höger - + + Show upside-down labels + + + + + never + aldrig + + + + when rotation defined + + + + + always + alltid + + + X Coordinate X-koordinat - + Y Coordinate Y-koordinat - + Horizontal alignment - + - + Vertical alignment - + - + Strikeout - + Label this layer with - + Textsätt lagret från - + Buffer properties - + Inställningar för buffer - + Buffer size Buffertstorlek - + Buffer color - + @@ -26178,7 +26292,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Outline: %1 - + @@ -26187,7 +26301,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. sub-group - + undergrupp @@ -26198,12 +26312,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. &Make to Toplevel Item - + &Flytta överst i lagerstrukturen Zoom to Group - + Zooma till gruppens utbredning @@ -26213,42 +26327,42 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. &Set Group CRS - + &Definera gruppens koordinatsystem &Group Selected - + &Gruppera valda lager Copy Style - + Kopiera utseende Paste Style - + Klistra in utseende &Add New Group - + &Lägg till ny grupp &Expand All - + &Expandera alla &Collapse All - + &Kollapsa alla &Update Drawing Order - + &Uppdatera renderingsordning &Make to toplevel item @@ -26257,7 +26371,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Legend context - + @@ -26303,42 +26417,42 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. &Query... - + Skapa &urval... &Zoom to Layer Extent - + &Zooma till lagrets utbredning &Zoom to Best Scale (100%) - + Zooma till &optimal skala (100%) &Stretch Using Current Extent - + Sträck &kontrast utifrån synlig del &Show in Overview - + &Visa i översikt &Set Layer CRS - + &Definera koordinatsystem Set &Project CRS from Layer - + &Använd lagrets koord.sys. till projektet &Open Attribute Table - + &Öppna attributtabell @@ -26349,12 +26463,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Save Selection As... - + Spara valda objekt som... Show Feature Count - + Visa antal objekt @@ -26365,7 +26479,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Updating feature count for layer %1 - + Uppdaterar antal objekt för lager %1 @@ -26379,7 +26493,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Group - + Gruppera @@ -26425,12 +26539,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Save connections - + XML files (*.xml *.XML) - + @@ -26440,12 +26554,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Clear selection - + Select connections to import - + @@ -26460,17 +26574,17 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Export/import error - + You should select at least one connection from list. - + Saving connections - + @@ -26498,7 +26612,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Loading connections - + @@ -26519,35 +26633,35 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. The file is not an WMS connections exchange file. - + The file is not an WFS connections exchange file. - + The file is not an WCS connections exchange file. - + The file is not an PostGIS connections exchange file. - + The file is not an MSSQL connections exchange file. - + The file is not an %1 connections exchange file. - + @@ -26555,7 +26669,7 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Connection with name '%1' already exists. Overwrite? - + @@ -26563,12 +26677,12 @@ Detta kan vara ett problem med din nätverksanslutning eller WMS-servern. Manage connections - + Select connections to export - + Browse @@ -26739,14 +26853,14 @@ Y: QgsMapRenderer - - + + Transform error caught: %1 Koordinattransformeringsfel fångades: %1 - - + + CRS Referenskoordinatsystem @@ -26906,23 +27020,23 @@ Y: No feature selected. Please select a feature with the selection tool or in the attribute table - + Several features are selected. Please select only one feature to which an part should be added. - + Error. Could not add part. - + Fel. Kunde inte lägga till del. Part added - + Del tillagd @@ -26937,32 +27051,32 @@ Y: Selected feature is not multi part. - + Valt objekt är inte ett flerdelat objekt. New part's geometry is not valid. - + Den nya geometridelen är inte korrekt. New polygon ring not disjoint with existing polygons. - + Several features are selected. Please select only one feature to which an island should be added. - + Selected geometry could not be found - + Vald geometri kan inte hittas Error, could not add part - + Fel, kunde inte lägga till del @@ -26985,7 +27099,7 @@ Y: Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. - + @@ -27051,12 +27165,12 @@ Y: Validation started. - + Validation finished. - + @@ -27064,7 +27178,7 @@ Y: Label properties changed - + @@ -27112,116 +27226,106 @@ Y: No active vector layer - + To run an action, you must choose a vector layer by clicking on its name in the legend - + No actions available - + The active vector layer has no defined actions - + No features at this position found. - + QgsMapToolIdentify - - + + (clicked coordinate) (vald koordinat) - + No active layer Inget aktivt lager - + To identify features, you must choose an active layer by clicking on its name in the legend För att identifiera objekt måste du välja aktivt lager genom att klicka på namnet i teckenförklaringen - + Identifying on %1... - + Identiferar på %1... - + Identifying done. - + Identifiering klar. - + No features at this position found. - + - + Length Längd - + firstX attributes get sorted; translation for lastX should be lexically larger than this one förstaX - + firstY förstaY - + lastX attributes get sorted; translation for firstX should be lexically smaller than this one sistaX - + lastY sistaY - + Area Area - + feature id objekt-id - + new feature - - - - - WMS layer - - - - - Feature info - + nytt objekt - + Raster Raster @@ -27236,7 +27340,7 @@ Y: Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. - + @@ -27249,7 +27353,7 @@ Y: Label moved - + Text flyttad @@ -27282,22 +27386,22 @@ Y: Offset curve - + Offset: - + Geometry error - + Creating offset geometry failed - + @@ -27305,12 +27409,12 @@ Y: Label pinned - + Text fastsatt Label unpinned - + Text lossad @@ -27333,7 +27437,7 @@ Y: Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. - + @@ -27348,7 +27452,7 @@ Y: Reshape - + Omforma objekt @@ -27356,7 +27460,7 @@ Y: Label rotated - + Text roterad @@ -27364,27 +27468,27 @@ Y: No point feature - + No point feature was detected at the clicked position. Please click closer to the feature or enhance the search tolerance under Settings->Options->Digitizing->Serch radius for vertex edits - + No rotation Attributes - + The active point layer does not have a rotation attribute - + Rotate symbol - + @@ -27411,12 +27515,12 @@ Y: Label hidden - + Text dold Label shown - + Text synlig @@ -27465,7 +27569,7 @@ Y: Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. - + @@ -27505,12 +27609,12 @@ Y: Cut edges detected. Make sure the line splits features into multiple parts. - + The geometry is invalid. Please repair before trying to split it. - + Geometrin är ogiltig. Reparera den innan nytt försök görs. @@ -27577,32 +27681,32 @@ Y: Forces labels on, regardless of collisions. Available only for cached labels. - + Check to allow MapServer to return data in GML format. Useful when used with WMS GetFeatureInfo operations. - + Force - + MapServer Export: Save project to MapFile - + Use current project - + LAYER information only - + @@ -27615,77 +27719,77 @@ Y: For example: http://my.host.com/cgi-bin/mapserv.exe - + Inline - + Symbolset - + Use templates - + The file name of the fonts file. - + Fontset - + The file name of the symbols file. - + Layer/label options - + Should text be antialiased? Note that this requires more available colors, decreases drawing performance, and results in slightly larger output images. - + Anti-alias - + Can text run off the edge of the map? - + Partials - + Dump - + Paths - + MapServer url - + @@ -27746,7 +27850,7 @@ http://my.host.com/cgi-bin/mapserv.exe dd - + feet @@ -27754,15 +27858,15 @@ http://my.host.com/cgi-bin/mapserv.exe miles - + inches - + kilometers - + @@ -27896,12 +28000,12 @@ http://my.host.com/cgi-bin/mapserv.exe Decimal number (real) - + Decimaltal (real) Text (string) - + Text (string) @@ -27964,12 +28068,12 @@ http://my.host.com/cgi-bin/mapserv.exe Skip attribute - + Hoppa över attribut Skipped - + Slås ej ihop @@ -28003,18 +28107,18 @@ http://my.host.com/cgi-bin/mapserv.exe QGIS Log - + QGIS-logg No messages. - + Inga meddelanden. %1 message(s) logged. - + %1 meddelande(n) loggade. @@ -28024,17 +28128,17 @@ http://my.host.com/cgi-bin/mapserv.exe Timestamp - + Tidpunkt Message - + Meddelande Level - + Nivå @@ -28060,36 +28164,36 @@ http://my.host.com/cgi-bin/mapserv.exe Delete - + %1: Not a vector layer! - + %1: Är inte ett vektorlager! %1: OK! - + %1: OK! Import to MSSQL database - + Failed to import some layers! - + Import was successful. - + @@ -28097,23 +28201,23 @@ http://my.host.com/cgi-bin/mapserv.exe Saving passwords - + WARNING: You have opted to save your password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. - + VARNING: Du har valt att spara ditt lösenord. Det kommer att sparas som synlig text i projektfiler, i din hemkatalog på Unix-system eller i användarkatalogen på Windows. Om du inte vill spara lösenordet, tryck på Avbryt. Save connection - + Spara anslutning Should the existing connection %1 be overwritten? - + Vill du att existerande anslutning '%1' ska skrivas över? @@ -28128,14 +28232,14 @@ http://my.host.com/cgi-bin/mapserv.exe Connection failed - Host name hasn't been specified. - + Connection failed - Database name hasn't been specified. - + @@ -28148,7 +28252,7 @@ http://my.host.com/cgi-bin/mapserv.exe Create a New MSSQL connection - + Skapa en ny MSSQL-anslutning @@ -28163,7 +28267,7 @@ http://my.host.com/cgi-bin/mapserv.exe Provider/DSN - + Provider/DSN @@ -28188,22 +28292,22 @@ http://my.host.com/cgi-bin/mapserv.exe Name of the new connection - + Namn på den nya anslutningen Trusted Connection - + Betrodd anslutning Save Username - + Spara användarnamn &Test Connect - + &Testa anslutning @@ -28213,17 +28317,17 @@ http://my.host.com/cgi-bin/mapserv.exe Only look in the geometry_columns metadata table - + Also list tables with no geometry - + Use estimated table parameters - + Använd estimerade tabellparametrar @@ -28231,37 +28335,37 @@ http://my.host.com/cgi-bin/mapserv.exe 8 Bytes integer - + 4 Bytes integer - + 2 Bytes integer - + 1 Bytes integer - + Decimal number (numeric) - + Decimal number (decimal) - + Decimal number (real) - + Decimaltal (real) @@ -28271,32 +28375,32 @@ http://my.host.com/cgi-bin/mapserv.exe Text, fixed length (char) - + Text, limited variable length (varchar) - + Text, fixed length unicode (nchar) - + Text, limited variable length unicode (nvarchar) - + Text, unlimited length (text) - + Text, unlimited length unicode (ntext) - + @@ -28312,12 +28416,12 @@ http://my.host.com/cgi-bin/mapserv.exe %1 as %2 in %3 - + as geometryless table - + @@ -28325,7 +28429,7 @@ http://my.host.com/cgi-bin/mapserv.exe Add MSSQL Table(s) - + @@ -28335,7 +28439,7 @@ http://my.host.com/cgi-bin/mapserv.exe &Build query - + @@ -28388,7 +28492,7 @@ http://my.host.com/cgi-bin/mapserv.exe Primary key column - + @@ -28410,7 +28514,7 @@ http://my.host.com/cgi-bin/mapserv.exe Confirm Delete - + @@ -28438,7 +28542,7 @@ http://my.host.com/cgi-bin/mapserv.exe MSSQL Provider - + @@ -28456,7 +28560,7 @@ http://my.host.com/cgi-bin/mapserv.exe Select... - + @@ -28489,12 +28593,12 @@ http://my.host.com/cgi-bin/mapserv.exe Primary key column - + Select at id - + @@ -28504,7 +28608,7 @@ http://my.host.com/cgi-bin/mapserv.exe Detecting... - + @@ -28512,17 +28616,17 @@ http://my.host.com/cgi-bin/mapserv.exe Select... - + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). - + Enter... - + @@ -28557,12 +28661,12 @@ http://my.host.com/cgi-bin/mapserv.exe No Geometry - + Unknown Geometry - + @@ -28572,40 +28676,40 @@ http://my.host.com/cgi-bin/mapserv.exe Not set - + No enhancement - + Stretch to MinMax - + Stretch and clip to MinMax - + Clip to MinMax - + - + Red Röd - + Green Grön - + Blue Blå @@ -28653,12 +28757,12 @@ http://my.host.com/cgi-bin/mapserv.exe Network request %1 timed out - + Network - + @@ -28666,38 +28770,38 @@ http://my.host.com/cgi-bin/mapserv.exe Create a new %1 connection - + Ignore GetCoverage URI reported in capabilities - + Ignore axis orientation - + Save connection - + Spara anslutning Should the existing connection %1 be overwritten? - + Vill du att existerande anslutning '%1' ska skrivas över? Saving passwords - + WARNING: You have entered a password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. Note: giving the password is optional. It will be requested interactivly, when needed. - + @@ -28715,7 +28819,7 @@ Note: giving the password is optional. It will be requested interactivly, when n If the service requires basic authentication, enter a user name and optional password - + @@ -28730,22 +28834,22 @@ Note: giving the password is optional. It will be requested interactivly, when n Ignore GetFeatureInfo URI reported in capabilities - + Ignore GetMap URI reported in capabilities - + Ignore axis orientation (WMS 1.3/WMTS) - + Invert axis orientation - + @@ -28764,7 +28868,7 @@ Note: giving the password is optional. It will be requested interactivly, when n &User name - + @@ -28799,12 +28903,12 @@ Detaljerad felinformation: Save connection - + Spara anslutning Should the existing connection %1 be overwritten? - + Vill du att existerande anslutning '%1' ska skrivas över? @@ -28812,7 +28916,7 @@ Detaljerad felinformation: Create a New OGR Database connection - + Skapa en ny OGR-databasanslutning @@ -28832,7 +28936,7 @@ Detaljerad felinformation: &Test Connect - + &Testa anslutning @@ -28875,22 +28979,22 @@ Detaljerad felinformation: Text data - + Text Whole number - + Heltal Decimal number - + Decimaltal New SpatiaLite Database File - + Ny SpatiaLite-databasfil @@ -28903,12 +29007,12 @@ Detaljerad felinformation: SpatiaLite Database - + SpatiaLite-databas Unable to open the database - + Kan inte öppna databasen @@ -28918,55 +29022,58 @@ Detaljerad felinformation: Failed to load SRIDS: %1 - + Misslyckades att ladda SRIDS: %1 @ - + @ Registered new database! - + Registrerade ny databas! Unable to open the database: %1 - + Kan inte öppna databasen: %1 Error Creating SpatiaLite Table - + Fel vid skapande av SpatiaLite-tabell Failed to create the SpatiaLite table %1. The database returned: %2 - + Misslyckades att skapa SpatiaLite-tabellen %1. Databasen returnerade: +%2 Error Creating Geometry Column - + Fel vid skapande av geometrikolumn Failed to create the geometry column. The database returned: %1 - + Misslyckades med att skapa geometrikolumnen. Databasen returnerade: +%1 Error Creating Spatial Index - + Fel vid skapande av spatialt index Failed to create the spatial index. The database returned: %1 - + Misslyckades med att skapa det spatiala indexet. Databasen returnerade: +%1 @@ -28984,7 +29091,7 @@ Detaljerad felinformation: New Spatialite Layer - + Nytt SpatiaLite-lager @@ -28994,7 +29101,7 @@ Detaljerad felinformation: Create a new Spatialite database - + Skapa ny SpatiaLite-databas @@ -29010,7 +29117,7 @@ Detaljerad felinformation: Name for the new layer - + Namn på det nya lagret @@ -29020,7 +29127,7 @@ Detaljerad felinformation: geometry - + geometry @@ -29047,7 +29154,7 @@ Detaljerad felinformation: MultiPoint - + MultiPunkt @@ -29067,12 +29174,12 @@ Detaljerad felinformation: Remove attribute - + Ta bort attribut Spatial Reference Id - + Koordinatsystem-ID @@ -29083,12 +29190,12 @@ Detaljerad felinformation: Add an integer id field as the primary key for the new layer - + Skapa ett ID-attribut (integer) för att använda som primärnyckel i det nya lagret Create an autoincrementing primary key - + Skapa en automatiskt uppräknande primärnyckel @@ -29104,22 +29211,22 @@ Detaljerad felinformation: An attribute name - + Namn på attributet Attributes list - + Lista över attribut Add attribute to list - + Lägg till attribut i listan Add to attributes list - + Lägg till i lista @@ -29132,22 +29239,22 @@ Detaljerad felinformation: Text data - + Text Whole number - + Heltal Decimal number - + Decimaltal ESRI Shapefile - + ESRI Shapefil @@ -29215,17 +29322,17 @@ Detaljerad felinformation: Remove attribute - + Ta bort attribut Add attribute to list - + Lägg till attribut i listan Add to attributes list - + Lägg till i lista @@ -29241,7 +29348,7 @@ Detaljerad felinformation: Attributes list - + Lista över attribut @@ -29343,7 +29450,7 @@ Detaljerad felinformation: Layer ID - + Lager-ID @@ -29353,7 +29460,7 @@ Detaljerad felinformation: Nb of features - + Antal objekt @@ -29366,7 +29473,7 @@ Detaljerad felinformation: Select layers to load - + Välj lager att ladda @@ -29379,7 +29486,7 @@ Detaljerad felinformation: Open Street Map format - + @@ -29400,7 +29507,7 @@ Detaljerad felinformation: Delete - + @@ -29443,7 +29550,7 @@ Detaljerad felinformation: Confirm Delete - + @@ -29473,7 +29580,7 @@ Detaljerad felinformation: Could not understand the response: %1 - + @@ -29522,7 +29629,7 @@ Detaljerad felinformation: C&onnect - + @@ -29537,7 +29644,7 @@ Detaljerad felinformation: Delete - + @@ -29629,7 +29736,7 @@ Detaljerad felinformation: Feature limit for GetFeatureInfo - + Coordinate Reference System @@ -29667,7 +29774,7 @@ Always network: always load from network and do not check if the cache has a val Move selected layer UP - + @@ -29677,7 +29784,7 @@ Always network: always load from network and do not check if the cache has a val Move selected layer DOWN - + @@ -29697,7 +29804,7 @@ Always network: always load from network and do not check if the cache has a val Tilesets - + @@ -29750,80 +29857,80 @@ Always network: always load from network and do not check if the cache has a val Could not open the spatialite database - + Unable to initialize SpatialMetadata: - + Could not create a new database - + Unable to activate FOREIGN_KEY constraints - + Unknown data type %1 - + QGIS wkbType %1 not supported - + %v / %m features copied - + %v / %m features processed - + %v / %m fields added - + %v / %m features added - + %v / %m features removed - + %v / %m feature updates - + %v / %m feature geometry updates - + Offline Editing Plugin - + Could not open the spatialite logging database - + @@ -29831,12 +29938,12 @@ Always network: always load from network and do not check if the cache has a val Convert to offline project - + Create offline copies of selected layers and save as offline project - + @@ -29844,17 +29951,17 @@ Always network: always load from network and do not check if the cache has a val &Offline Editing - + Synchronize - + Synchronize offline project with remote layers - + @@ -29862,12 +29969,12 @@ Always network: always load from network and do not check if the cache has a val Select target database for offline data - + SpatiaLite DB - + @@ -29877,17 +29984,17 @@ Always network: always load from network and do not check if the cache has a val Offline Editing Plugin - + Converting to offline project. - + Offline database file '%1' exists. Overwrite? - + @@ -29895,27 +30002,27 @@ Always network: always load from network and do not check if the cache has a val Create offline project - + Offline data - + Browse... - + Bläddra... Select remote layers - + Show only editable layers - + @@ -29923,7 +30030,7 @@ Always network: always load from network and do not check if the cache has a val Layer %1 of %2.. - + @@ -29944,18 +30051,18 @@ Always network: always load from network and do not check if the cache has a val Couldn't open file %1.prj - + OGR - + Couldn't open file %1.qpj - + @@ -29963,7 +30070,7 @@ Always network: always load from network and do not check if the cache has a val Data source is invalid (%1) - + @@ -29972,12 +30079,12 @@ Always network: always load from network and do not check if the cache has a val OGR - + Data source is invalid, no layer found (%1) - + @@ -29987,120 +30094,120 @@ Always network: always load from network and do not check if the cache has a val Decimal number (real) - + Decimaltal (real) Text (string) - + Text (string) OGR[%1] error %2: %3 - + Unknown - + Read attempt on an invalid OGR data source - + OGR error creating wkb for feature %1: %2 - + type %1 for attribute %2 not found - + OGR error creating feature %1: %2 - + type %1 for field %2 not found - + OGR error creating field %1: %2 - + OGR error deleting field %1: %2 - + Deleting fields is not supported prior to GDAL 1.9.0 - + OGR error on feature %1: id too large - + Feature %1 for attribute update not found. - + Field %1 of feature %2 doesn't exist. - + Type %1 of attribute %2 of feature %3 unknown. - + OGR error setting feature %1: %2 - + OGR error changing geometry: feature %1 not found - + OGR error creating geometry for feature %1: %2 - + OGR error in feature %1: geometry is null - + OGR error setting geometry of feature %1: %2 - + OGR error deleting feature %1: %2 - + Shapefiles without attribute are considered read-only. - + @@ -30108,7 +30215,7 @@ Always network: always load from network and do not check if the cache has a val Choose a name of the raster - + @@ -30125,7 +30232,7 @@ Always network: always load from network and do not check if the cache has a val Choose a name for the modified raster - + @@ -30136,7 +30243,7 @@ Always network: always load from network and do not check if the cache has a val Open raster - + @@ -30152,7 +30259,7 @@ Always network: always load from network and do not check if the cache has a val Save raster as: - + @@ -30188,7 +30295,7 @@ Always network: always load from network and do not check if the cache has a val No database selected. - + @@ -30203,17 +30310,17 @@ Always network: always load from network and do not check if the cache has a val No protocol URI entered. - + No layers selected. - + No directory selected. - + @@ -30327,67 +30434,67 @@ Always network: always load from network and do not check if the cache has a val None / Planimetric - + Current layer - + Top down, stop at first - + Top down - + Show all features - + Show selected features - + Show features in current canvas - + Always - + If needed - + Never - + Load all - + Check file contents - + Check extension - + @@ -30397,43 +30504,43 @@ Always network: always load from network and do not check if the cache has a val Basic scan - + Full scan - + Parameters : - + Enter scale - + Scale denominator - + Load scales - + XML files (*.xml *.XML) - + Save scales - + @@ -30459,43 +30566,43 @@ Always network: always load from network and do not check if the cache has a val Parameters: - + Can only use ellipsoidal calculations when CRS transformation is enabled - + To vertex - + Cumulative pixel count cut - + Minimum / maximum - + Mean +/- standard deviation - + To segment - + To vertex and segment - + @@ -30507,7 +30614,7 @@ Always network: always load from network and do not check if the cache has a val Off - + @@ -30517,49 +30624,49 @@ Always network: always load from network and do not check if the cache has a val GEOS - + Round - + Mitre - + Bevel - + Save default project - + You must set a default project - + Current project saved as default - + Error saving current project as default - + Choose a directory to store project template files - + @@ -30569,12 +30676,12 @@ Always network: always load from network and do not check if the cache has a val Create Options - %1 Driver - + Create Options - pyramids - + @@ -30608,17 +30715,17 @@ Always network: always load from network and do not check if the cache has a val Popmusic tabu chain (slow) - + Popmusic tabu (slow) - + Popmusic chain (very slow) - + @@ -30794,12 +30901,12 @@ Always network: always load from network and do not check if the cache has a val Create raster icons in legend - + Open identify results in a dock window (QGIS restart required) - + Open attribute table in a dock window @@ -30813,7 +30920,7 @@ Always network: always load from network and do not check if the cache has a val Attribute table behaviour - + Attributtabellens beteende @@ -30833,7 +30940,7 @@ Always network: always load from network and do not check if the cache has a val Use render caching where possible to speed up redraws - + @@ -30843,52 +30950,52 @@ Always network: always load from network and do not check if the cache has a val SVG paths - + Sökvägar till SVG-symboler Path(s) to search for Scalable Vector Graphic (SVG) symbols - + Sökväg(ar) där sökning sker efter 'Scalable Vector Graphic (SVG)'-symboler Decimal places - + Antal decimaler Keep base unit - + Ändra inte mätenhet Timeout for network requests (ms) - + Compatibility - + Kompatibilitet Create new project from default project - + Skapa nya projekt från standardprojektmall Set current project as default - + Sätt nuvarande projekt som standardmall Reset default - + Återställ standardmall Template folder - + Katalog för projektmallar @@ -30898,47 +31005,47 @@ Always network: always load from network and do not check if the cache has a val Reset - + Enable macros - + Aktivera makron Never - + Ask - + Fråga For this session only - + Endast för den här sessionen Always (not recommended) - + Alltid (Rekommenderas ej) Application - + Applikation Style <i>(QGIS restart required)</i> - + Stil på gränssnitt<i>(Kräver omstart av QGIS)</i> Icon size - + Ikonstorlek @@ -30958,87 +31065,87 @@ Always network: always load from network and do not check if the cache has a val Double click action in legend - + Open layer properties - + Open attribute table - + Show tips at start up - + Open snapping options in a dock window (QGIS restart required) - + Open attribute table in a dock window (QGIS restart required) - + Add new layers to selected or current group - + Lägg till lager i markerad grupp Copy geometry in WKT representation from attribute table - + Ignore shapefile encoding - + Ignorera textkodning i shapefiler Attribute table row cache - + Antalet rader i attributtabellens cache Representation for NULL values - + Prompt for raster sublayers - + Scan for valid items in the browser dock - + Scan for contents of compressed files (.zip) in browser dock - + GDAL - + GDAL GDAL Drivers - + In some cases more than one GDAL driver can be used to load the same raster format. Use the list below to specify which to use. - + @@ -31048,12 +31155,12 @@ Always network: always load from network and do not check if the cache has a val ext - + Flags - + @@ -31063,17 +31170,17 @@ Always network: always load from network and do not check if the cache has a val GDAL Driver Options - + Edit Pyramids Options - + Edit Create Options - + @@ -31083,12 +31190,12 @@ Always network: always load from network and do not check if the cache has a val Plugin paths - + Sökvägar till insticksprogram Path(s) to search for additional C++ plugins libraries - + Sökväg(ar) där sökning sker efter externa C++ insticksprogram @@ -31098,22 +31205,22 @@ Always network: always load from network and do not check if the cache has a val Enable back buffer (Better graphics performance at the cost of loosing the possibility to cancel rendering and incremental feature drawing) - + Use new generation symbology for rendering - + Använd den nya hanteringen för symbolsättning Rasters - + RGB band selection - + @@ -31133,17 +31240,17 @@ Always network: always load from network and do not check if the cache has a val Semi-minor - + Halva lillaxeln Semi-major - + Halva storaxeln Default expiration period for WMS-C/WMTS tiles (hours) - + Use standard deviation @@ -31162,22 +31269,22 @@ Always network: always load from network and do not check if the cache has a val Multi band color (byte / band) - + Multi band color (> byte / band) - + Limits (minimum/maximum) - + Cumulative pixel count cut limits - + @@ -31187,12 +31294,12 @@ Always network: always load from network and do not check if the cache has a val Standard deviation multiplier - + Preferred angle units - + Enhet för vinklar @@ -31207,7 +31314,7 @@ Always network: always load from network and do not check if the cache has a val Gon - + Gon @@ -31237,52 +31344,52 @@ Always network: always load from network and do not check if the cache has a val Predefined scales - + Fördefinerade skalor Overlays - + Placement algorithm - + Other settings - + Övriga inställningar Reuse last entered attribute values - + Validate geometries - + Validera geometrier Join style for curve offset - + Quadrantsegments for curve offset - + Miter limit for curve offset - + Default Coordinate Reference System for new projects - + Standardinställningar för nya projekt @@ -31292,18 +31399,18 @@ Always network: always load from network and do not check if the cache has a val Automatically enable 'on the fly' reprojection if layers have different CRS - + Aktivera automatiskt 'on-the-fly' transformation om tillagda lager har olika koordinatsystem Enable 'on the &fly' reprojection by default - + &Låt 'on-the-fly' transformation vara aktiverat som standard Select... - + @@ -31323,17 +31430,17 @@ Always network: always load from network and do not check if the cache has a val Network - + Exclude URLs (starting with) - + Cache settings - + Cache-inställningar @@ -31354,12 +31461,12 @@ Always network: always load from network and do not check if the cache has a val WMS search address - + Open feature form, if a single feature is identified - + @@ -31439,7 +31546,7 @@ Always network: always load from network and do not check if the cache has a val Map tools - + Kartverktyg @@ -31516,12 +31623,12 @@ Always network: always load from network and do not check if the cache has a val Default snapping tolerance - + Standardsnapptolerans Search radius for vertex edits - + @@ -31589,12 +31696,12 @@ Always network: always load from network and do not check if the cache has a val Add Oracle GeoRaster Layer... - + Lägg till Oracle GeoRaster-lager... Add a Oracle Spatial GeoRaster... - + @@ -31612,7 +31719,7 @@ Always network: always load from network and do not check if the cache has a val Password for %1/<password>@%2 - + @@ -31622,12 +31729,12 @@ Always network: always load from network and do not check if the cache has a val Open failed - + The connection to %1 failed. Please verify your connection parameters. Make sure you have the GDAL GeoRaster plugin installed. - + @@ -31635,12 +31742,12 @@ Always network: always load from network and do not check if the cache has a val Failed to retrieve layers - + No layers found. - + @@ -31650,36 +31757,36 @@ Always network: always load from network and do not check if the cache has a val Delete - + %1: Not a vector layer! - + %1: Är inte ett vektorlager! %1: OK! - + %1: OK! Import to PostGIS database - + Failed to import some layers! - + Import was successful. - + @@ -31689,12 +31796,12 @@ Always network: always load from network and do not check if the cache has a val Delete layer - + Layer deleted successfully. - + @@ -31710,12 +31817,12 @@ Always network: always load from network and do not check if the cache has a val %1 as %2 in %3 - + as geometryless table - + @@ -31746,7 +31853,7 @@ Always network: always load from network and do not check if the cache has a val &Add New Transfer - + @@ -31777,17 +31884,17 @@ Always network: always load from network and do not check if the cache has a val Square - + Flat - + Round - + @@ -31795,17 +31902,17 @@ Always network: always load from network and do not check if the cache has a val Bevel - + Miter - + Round - + @@ -31813,32 +31920,32 @@ Always network: always load from network and do not check if the cache has a val Solid Line - + Dash Line - + Dot Line - + Dash Dot Line - + Dash Dot Dot Line - + No Pen - + @@ -31913,23 +32020,23 @@ Always network: always load from network and do not check if the cache has a val Saving passwords - + WARNING: You have opted to save your password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. - + VARNING: Du har valt att spara ditt lösenord. Det kommer att sparas som synlig text i projektfiler, i din hemkatalog på Unix-system eller i användarkatalogen på Windows. Om du inte vill spara lösenordet, tryck på Avbryt. Save connection - + Spara anslutning Should the existing connection %1 be overwritten? - + Vill du att existerande anslutning '%1' ska skrivas över? @@ -31947,7 +32054,7 @@ Always network: always load from network and do not check if the cache has a val Connection failed - Check settings and try again. - + Connection failed - Check settings and try again. @@ -32002,10 +32109,25 @@ Detaljerad felinformation: Password Lösenord + + + Restrict the displayed tables to those that are in the layer registries. + + + + + Restricts the displayed tables to those that are found in the layer registries (geometry_columns, geography_columns, topology.layer). This can speed up the initial display of spatial tables. + + + + + Only look in the layer registries + + Use estimated table statistics for the layer metadata. - + @@ -32018,12 +32140,12 @@ Detaljerad felinformation: <p>3) If the table geometry type is unknown and is not exclusively taken from the geometry_columns table, then it is determined from the first 100 non-null geometry rows in the table.</p> </body> </html> - + Use estimated table metadata - + @@ -32033,7 +32155,7 @@ Detaljerad felinformation: Name of the new connection - + Namn på den nya anslutningen @@ -32043,7 +32165,7 @@ Detaljerad felinformation: Save Username - + Spara användarnamn @@ -32053,27 +32175,24 @@ Detaljerad felinformation: &Test Connect - + &Testa anslutning Service - + - Restrict the displayed tables to those that are in the geometry_columns table - Begränsa visade tabeller till de som finns i tabellen geometry_columns + Begränsa visade tabeller till de som finns i tabellen geometry_columns - Restricts the displayed tables to those that are in the geometry_columns table. This can speed up the initial display of spatial tables. - Begränsa visade tabeller till de som finns i tabellen geometry_columns. Detta kan göra första visningen av rumsliga tabeller snabbare. + Begränsa visade tabeller till de som finns i tabellen geometry_columns. Detta kan göra första visningen av rumsliga tabeller snabbare. - Only look in the geometry_columns table - Leta bara i tabellen över 'geometry_columns' + Leta bara i tabellen över 'geometry_columns' @@ -32093,7 +32212,7 @@ Detaljerad felinformation: Also list tables with no geometry - + @@ -32106,7 +32225,7 @@ Detaljerad felinformation: &Build query - + @@ -32164,7 +32283,7 @@ Detaljerad felinformation: Primary key column - + @@ -32186,7 +32305,7 @@ Detaljerad felinformation: Confirm Delete - + @@ -32210,16 +32329,22 @@ Detaljerad felinformation: + Postgres/PostGIS Provider - + Could not open the Postgres/PostGIS Provider + + + + + No accessible tables or views found. Check the message log for possible errors. - + Connect Anslut @@ -32307,7 +32432,7 @@ Kontrollera att du har rättigheter för att göra SELECT på en tabell med Post Select... - + @@ -32340,12 +32465,12 @@ Kontrollera att du har rättigheter för att göra SELECT på en tabell med Post Primary key column - + Select at id - + @@ -32355,22 +32480,22 @@ Kontrollera att du har rättigheter för att göra SELECT på en tabell med Post Detecting... - + Select... - + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). - + Enter... - + @@ -32381,59 +32506,59 @@ Kontrollera att du har rättigheter för att göra SELECT på en tabell med Post Couldn't open the local plugin directory - + Nothing to remove! Plugin directory doesn't exist: - + Failed to remove the directory: - + Check permissions or remove it manually - + Fetch Python Plugins... - + Hämta insticksprogram... Install more plugins from remote repositories - + Looking for new plugins... - + QGIS Plugin Installer update - + The Plugin Installer has been updated. Please restart QGIS prior to using it - + QGIS Plugin Conflict: - + The Plugin Installer has detected an obsolete plugin which masks a newer version shipped with this QGIS version. This is likely due to files associated with a previous installation of QGIS. Please use the Plugin Installer to remove that older plugin in order to unmask the newer version shipped with this copy of QGIS. - + There is a new plugin available - + There is a plugin update available - + Error reading repository: - + @@ -32452,146 +32577,146 @@ Kontrollera att du har rättigheter för att göra SELECT på en tabell med Post Error reading repository: - + connected - + uppkopplad This repository is connected - + unavailable - + This repository is enabled, but unavailable - + disabled - + inaktiverad This repository is disabled - + This repository is blocked due to incompatibility with your Quantum GIS version - + orphans - + övergivna any status - + oavsett status not installed - + inte installerad installed - + installerad upgradeable and news - + This plugin is not installed - + This plugin is installed - + This plugin is installed, but there is an updated version available - + This plugin is installed, but I can't find it in any enabled repository - + This plugin is not installed and is seen for the first time - + This plugin is installed and is newer than its version available in a repository - + This plugin is incompatible with your Quantum GIS version and probably won't work. - + The required Python module is not installed. For more information, please visit its homepage and Quantum GIS wiki. - + This plugin seems to be broken. It has been installed but can't be loaded. Here is the error message: - + upgradeable - + new! - + ny! invalid - + Note that it's an uninstallable core plugin - + installed version - + installerad version available version - + That's the newest available version - + There is no version available for download - + This plugin is broken - + This plugin requires a newer version of Quantum GIS - + at least - + This plugin requires a missing module - + only locally available - + endast tillgängligt lokalt Experimental plugin. Use at own risk @@ -32599,106 +32724,106 @@ Here is the error message: - %d plugins available - + - %d plugin tillgängliga Install plugin - + Reinstall plugin - + Upgrade plugin - + Downgrade plugin - + Are you sure you want to downgrade the plugin to the latest available version? The installed one is newer! - + Plugin installation failed - + Installationen misslyckades Plugin has disappeared - + Insticksprogrammet har försvunnit The plugin seems to have been installed but I don't know where. Probably the plugin package contained a wrong named directory. Please search the list of installed plugins. I'm nearly sure you'll find the plugin there, but I just can't determine which of them it is. It also means that I won't be able to determine if this plugin is installed and inform you about available updates. However the plugin may work. Please contact the plugin author and submit this issue. - + Plugin installed successfully - + Installationen lyckades Python plugin installed. Now you need to enable it in Plugin Manager. - + Plugin reinstalled successfully - + Python plugin reinstalled. You need to restart Quantum GIS in order to reload it. - + The plugin is designed for a newer version of Quantum GIS. The minimum required version is: - + The plugin depends on some components missing on your system. You need to install the following Python module in order to enable it: - + The plugin is broken. Python said: - + Plugin uninstall failed - + Are you sure you want to uninstall the following plugin? - + Warning: this plugin isn't available in any accessible repository! - + Plugin Installer update uninstalled. Plugin Installer will now close and revert to its primary version. You can find it in the Plugins menu and continue operation. - + Plugin Installer update uninstalled. Please restart QGIS in order to load its primary version. - + Plugin uninstalled successfully - + Python plugin uninstalled. Note that you may need to restart Quantum GIS in order to remove it completely. - + Unable to add another repository with the same URL! - + Are you sure you want to remove the following repository? - + @@ -32787,7 +32912,7 @@ You need to restart Quantum GIS in order to reload it. Upgrade all - + Uppgradera alla @@ -32830,23 +32955,23 @@ You need to restart Quantum GIS in order to reload it. Add the contributed repository to the list - + Add the contributed repository - + Remove depreciated repositories from the list - + Delete depreciated repositories - + @@ -32918,37 +33043,37 @@ You need to restart Quantum GIS in order to reload it. Configuration of the plugin installer - + every time QGIS starts - + varje gång QGIS startar once a day - + en gång om dagen every 3 days - + var tredje dag every week - + en gång i veckan every 2 weeks - + varannan vecka every month - + en gång i månaden @@ -32957,27 +33082,31 @@ You need to restart Quantum GIS in order to reload it. p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> If this function is enabled, Quantum GIS will inform you whenever a new plugin or plugin update is available. Otherwise, fetching repositories will be performed during opening of the Plugin Installer window.</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Obs:</span> Om denna funktion är aktiverad kommer QGIS att informera dig utifall ett nytt insticksprogram eller en uppdatering av ett insticksprogram finns tillgängligt. I annat fall så kommer denna kontroll utföras när Insticksprograminstalleraren öppnas.</p></body></html> Allowed plugins - + Tillåtna insticksprogram Only show plugins from the official repository - + Visa endast insticksprogram från den officiella centralkatalogen Show all plugins except those marked as experimental - + Visa alla insticksprogram förutom de som är markerade som experimentella Show all plugins, even those marked as experimental - + Visa alla plugin, även de som är markerade som experimentella @@ -32986,7 +33115,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> Experimental plugins are generally unsuitable for production use. These plugins are in early stages of development, and should be considered 'incomplete' or 'proof of concept' tools. QGIS does not recommend installing these plugins unless you intend to use them for testing purposes.</p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Obs:</span> Experimentella insticksprogram är överlag opassande i en produktionsmiljö- Dessa insticksprogram är i ett tidigt stadie av sin utveckling och ska ses som icke kompletta eller som bevis på ett koncept. QGIS rekommenderar inte att installera dessa förutom om du tänker använda dem i testsyfte.</p></body></html> @@ -32998,11 +33131,11 @@ p, li { white-space: pre-wrap; } QgsPluginInstallerFetchingDialog Success - + Resolving host name... - + Connecting... @@ -33010,7 +33143,7 @@ p, li { white-space: pre-wrap; } Host connected. Sending request... - + Downloading data... @@ -33018,11 +33151,11 @@ p, li { white-space: pre-wrap; } Idle - + Closing connection... - + Error @@ -33061,11 +33194,11 @@ p, li { white-space: pre-wrap; } QgsPluginInstallerInstallingDialog Installing... - + Installerar... Resolving host name... - + Connecting... @@ -33073,7 +33206,7 @@ p, li { white-space: pre-wrap; } Host connected. Sending request... - + Downloading data... @@ -33081,11 +33214,11 @@ p, li { white-space: pre-wrap; } Idle - + Closing connection... - + Error @@ -33093,11 +33226,11 @@ p, li { white-space: pre-wrap; } Failed to unzip the plugin package. Probably it's broken or missing from the repository. You may also want to make sure that you have write permission to the plugin directory: - + Misslyckades med att packa upp paketet. Förmodligen är det trasigt eller saknas i centralkatalogen. Kontrollera även att du har skrivrättigheter till mappen där insticksprogrammet installeras: Aborted by user - + Avbrutit av användare @@ -33123,12 +33256,12 @@ p, li { white-space: pre-wrap; } Plugin Installer - + The Plugin Installer has detected that your copy of QGIS is configured to use a number of plugin repositories around the world. It was a typical situation in older versions of the program, but from the version 1.5, external plugins are collected in one central Contributed Repository, and all the old repositories are not necessary any more. Do you want to drop them now? If you're unsure what to do, probably you don't need them. However, if you choose to keep them in use, you will be able to remove them manually later. - + @@ -33138,24 +33271,24 @@ p, li { white-space: pre-wrap; } Disable - + Keep - + Ask me later - + QgsPluginInstallerPluginErrorDialog no error message received - + @@ -33249,7 +33382,7 @@ p, li { white-space: pre-wrap; } Installed in %1 menu/toolbar - + Installerad under '%1' i menyn @@ -33297,7 +33430,7 @@ p, li { white-space: pre-wrap; } Plugin Installer - + @@ -33313,23 +33446,23 @@ p, li { white-space: pre-wrap; } Label Font - + Circle color - + Label color - + The point displacement renderer only applies to (single) point layers. '%1' is not a point layer and cannot be displayed by the point displacement renderer - + @@ -33342,42 +33475,42 @@ p, li { white-space: pre-wrap; } Center symbol: - + Renderer: - + Renderer settings... - + Displacement circles - + Circle pen width: - + Circle color: - + Circle radius modification: - + Point distance tolerance: - + @@ -33387,27 +33520,27 @@ p, li { white-space: pre-wrap; } Label attribute: - + Label font... - + Label color: - + Use scale dependent labelling - + max scale denominator: - + @@ -33415,7 +33548,7 @@ p, li { white-space: pre-wrap; } Connection to database failed - + @@ -33424,46 +33557,46 @@ p, li { white-space: pre-wrap; } - - - - + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + PostGIS - + error in setting encoding - + undefined return value from encoding setting - + Your database has no working PostGIS support. - + Your PostGIS installation has no GEOS support. Feature selection and identification will not work properly. Please install PostGIS with GEOS support (http://geos.refractions.net) - + @@ -33471,156 +33604,156 @@ p, li { white-space: pre-wrap; } result:%2 error:%3 - + - + Database connection was successful, but the accessible tables could not be determined. - + - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 - + - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 - + - + Database connection was successful, but no accessible tables were found. Please verify that you have SELECT privilege on a table carrying PostGIS geometry. - + - + Unable to get list of spatially enabled tables from the database - + - + Retrieval of postgis version failed - + - + Could not parse postgis version string '%1' - + - + Connection error: %1 returned %2 [%3] - + - + Erroneous query: %1 returned %2 [%3] - + - + Query failed: %1 Error: no result buffer - + - + Not logged query failed: %1 Error: no result buffer - + - + Query: %1 returned %2 [%3] - + - + %1 cursor states lost. SQL: %2 Result: %3 (%4) - + - + resetting bad connection. - + - + retry after reset succeeded. - + - + retry after reset failed again. - + - + connection still bad after reset. - + - + bad connection, not retrying. - + - + Point Punkt - + Line Linje - + Polygon Polygon - + No Geometry - + - - + + Query could not be canceled [%1] - + - + PQgetCancel failed - + - + Multipoint Multipunkt - + Multiline Multilinje - + Multipolygon Multipolygon - + Unknown Geometry - + @@ -33683,14 +33816,14 @@ Please install PostGIS with GEOS support (http://geos.refractions.net) Duplicate field %1 found - + PostgreSQL is still in recovery after a database crash (or you are connected to a (read-only) slave). Write accesses will be denied. - + @@ -33698,7 +33831,7 @@ Write accesses will be denied. The error message from the database was: %1. SQL: %2 - + Error while deleting features @@ -33727,22 +33860,22 @@ SQL: %2 Whole number (integer - 32bit) - + Whole number (integer - 64bit) - + Text, limited variable length (varchar) - + Text, unlimited length (text) - + @@ -33750,7 +33883,7 @@ SQL: %2 The error message from the database was: %2. SQL: %3 - + @@ -33758,17 +33891,17 @@ SQL: %3 The error message from the database was: %2. SQL: %3 - + Whole number (smallint - 16bit) - + invalid PostgreSQL layer - + @@ -33796,24 +33929,24 @@ SQL: %3 - + PostGIS - + Decimal number (numeric) - + Decimal number (decimal) - + Decimal number (real) - + Decimaltal (real) @@ -33823,39 +33956,39 @@ SQL: %3 Text, fixed length (char) - + Couldn't get the feature geometry in binary form - + Read attempt on an invalid postgresql data source - + nextFeature() without select() - + Fetching from cursor %1 failed Database error: %2 - + feature %1 not found - + found %1 features instead of just one. - + @@ -33866,103 +33999,103 @@ Database error: %2 unexpected formatted field type '%1' for field %2 - + Field %1 ignored, because of unsupported type %2 - + The custom query is not a select query. - + The table has no column suitable for use as a key. Quantum GIS requires a primary key, a PostgreSQL oid column or a ctid for tables. - + Primary key field '%1' for view not unique. - + Type '%1' of primary key field '%2' for view invalid. - + Key field '%1' for view not found. - + No key field for view given. - + Unexpected relation type '%1'. - + No key field for query given. - + PostGIS error while adding features: %1 - + PostGIS error while deleting features: %1 - + PostGIS error while adding attributes: %1 - + PostGIS error while deleting attributes: %1 - + PostGIS error while changing attributes: %1 - + - + PostGIS error while changing geometry values: %1 - + - + result of extents query invalid: %1 - + - + Geometry type and srid for empty column %1 of %2 undefined. - + - + Feature type or srid for %1 of %2 could not be determined or was not requested. - + - + Editing and adding disabled for 2D+ layer (%1; %2) - + @@ -33975,7 +34108,7 @@ Database error: %2 Project File Read Error - + @@ -34013,7 +34146,7 @@ Database error: %2 Ignore - + Ignorera @@ -34024,113 +34157,170 @@ Database error: %2 Unable to open one or more project layers. Choose ignore to continue loading without the missing layers. Choose cancel to return to your pre-project load state. Choose OK to try to find the missing layers. + Kan inte öppna ett eller flera av projektets lager. +Välj 'Ignorera' för att fortsätta utan de saknade lagren. Välj 'Avbryt' för att återvända till föregående arbetsyta. Välj 'OK' för att försöka hitta de saknade lagren. + + + + QgsProjectLayerGroupDialog + + + Select project file + Välj projektfil + + + + QGis files + QGis-filer + + + + Recursive embedding not possible + + + + + It is not possible to embed layers / groups from the current project. + + QgsProjectLayerGroupDialogBase + + + Select layers and groups to embed + Välj lager och grupper för att bädda in + + + + Project file + Projektfil + + + + ... + ... + + QgsProjectProperties - + Layer Lager - + Type Typ - + Identifiable - + - + Vector Vektor - + WMS WMS - + Raster Raster - - + + Coordinate System Restriction - + - + No coordinate systems selected. Disabling restriction. - + - + Selection color Färg för valda - + CRS %1 was already selected Referenskoordinatsystem % var redan valt - + Coordinate System Restrictions - + - + The current selection of coordinate systems will be lost. Proceed? + + + + + Select print composer - - Enter scale + + Composer Title - - Scale denominator + + Select restricted layers and groups - + + Enter scale + + + + + Scale denominator + + + + Load scales - + - - + + XML files (*.xml *.XML) - + - + Save scales - + - + Transparency %1% - + - + Select a valid symbol - + - + Invalid symbol : - + @@ -34141,365 +34331,390 @@ Proceed? Projektegenskaper - + Meters Meter - + Feet Feet - + Decimal degrees Decimalgrader - + Default project title Standardtitel för projekt - + General Allmänt - + General settings - + Generella inställningar - + absolute - + absoluta - + relative - + relativa - + Save paths - + Länkar till lager Layer units (only used when CRS transformation is disabled) Lagrens enhet (används bara när koordinattransformation är avslagen) - + Degrees, Minutes, Seconds - + Grader, Minuter, Sekunder - + Precision Precision - + Automatically sets the number of decimal places in the mouse position display Sätter automatisk antal decimaler vid visning av musens position - + The number of decimal places that are used when displaying the mouse position is automatically set to be enough so that moving the mouse by one pixel gives a change in the position display Antalet decimaler som används vid visning av musens position sätts automatisk så att en förändring av musens läge med en pixel ändrar visad position - + Automatic Automatisk - - + + Sets the number of decimal places to use for the mouse position display Sätter antal decimaler vid visning av musens position - + Manual Manuell - - + + The number of decimal places for the manual option Antal decimaler vid val 'manuell' - + decimal places decimaler - + Project scales - + Projektskalor - - - - - - - - + + + + + + + + ... ... - + Default Styles - + Standardutseende - + Default Symbols - + Standardsymboler - + Marker arkör - + Line Linje - + Fill - + Ytsymbol - + Color Ramp Färgökning - + Style Manager - + Symbolhanteraren - + Options Inställningar - + Assign random colors to symbols - + Ge slumpvalda färger till symboler - + Opacity Ogenomskinlighet - + OWS Server - + OWS Server - + Service Capabilitities - + - + Title Titel - + Person - + Person - + Phone - + Telefon - + Abstract Sammanfattning - + E-Mail - + E-Mail - + Organization - + Organisation - + Online resource - + - + WMS Capabilitities - + - + Advertised Extent - + - + Min. X - + - + Min. Y - + - + Max. X - + - + Max. Y - + - + Use Current Canvas Extent + Använd kartfönstrets nuvarande utbredning + + + + Exclude composers + + + + + Exclude layers + + + + + Update + Uppdatera + + + + Insert - + + Delete + + + + Unselect all - + Select all Välj alla - + Macros - + Makron - + Python macros - + Python-makron - + Coordinate Systems Restrictions - + - + Add Lägg till - + Remove Ta bort - + Used - + - + Add WKT geometry to feature info response - + - + Canvas units - + Kartfönstrets mätenhet - + Degree - + Grader - + Degree display - + - + Degrees, Minutes - + Grader, Minuter - + Advertised WMS url - + - + Maximum width - + - + Maximum height - + - + WFS Capabilitities - + - + Published - + Digitizing Digitalisering - + Identifiable layers - + Identifieringsbara lager - - + + Layer Lager - + Type Typ - + Identifiable - + - + Descriptive project name Projektbeskrivning @@ -34512,32 +34727,32 @@ Proceed? Val för fästning... - + Project title Projekttitel - + Selection color Färg för valda - + Background color Bakgrundsfärg - + Used when CRS transformation is turned off Används när koordinattransformering är avslagen - + Coordinate Reference System (CRS) Koordinaternas referenssystem (CRS) - + Enable 'on the fly' CRS transformation Aktivera omedelbar koordinattransformation @@ -34610,7 +34825,7 @@ Därför fungerar inte projektionsväljaren... Recently used coordinate reference systems - + @@ -34622,7 +34837,7 @@ Därför fungerar inte projektionsväljaren... Authority ID - + @@ -34633,7 +34848,7 @@ Därför fungerar inte projektionsväljaren... Coordinate reference systems of the world - + @@ -34641,12 +34856,12 @@ Därför fungerar inte projektionsväljaren... &Test - + &Test &Clear - + No Query @@ -34684,7 +34899,7 @@ Därför fungerar inte projektionsväljaren... An error occurred when executing the query. - + Ett fel inträffade när frågan ställdes. @@ -34692,7 +34907,9 @@ Därför fungerar inte projektionsväljaren... The data provider said: %1 - + +Datakällan sa: +%1 @@ -34702,7 +34919,7 @@ The data provider said: The subset string could not be set - + Urvalsfrågan kunde inte sättas @@ -34772,7 +34989,7 @@ p, li { white-space: pre-wrap; } Use unfiltered layer - + @@ -34929,17 +35146,17 @@ p, li { white-space: pre-wrap; } Enter result file - + Ange mål för resultatfil Expression valid - + Uttrycket giltligt Expression invalid - + Uttrycket ogiltligt @@ -34947,22 +35164,22 @@ p, li { white-space: pre-wrap; } Raster calculator - + Rasterkalkylator Raster bands - + Rasterband Result layer - + Resultatlager Output layer - + Mål för utdatafil @@ -34972,7 +35189,7 @@ p, li { white-space: pre-wrap; } Current layer extent - + Nuvarande lagrets utbredning @@ -34982,7 +35199,7 @@ p, li { white-space: pre-wrap; } XMax - + X max @@ -35007,12 +35224,12 @@ p, li { white-space: pre-wrap; } Output format - + Add result to project - + Lägg till resultat i projektet @@ -35032,12 +35249,12 @@ p, li { white-space: pre-wrap; } sqrt - + sqrt sin - + sin @@ -35047,7 +35264,7 @@ p, li { white-space: pre-wrap; } acos - + acos @@ -35067,22 +35284,22 @@ p, li { white-space: pre-wrap; } cos - + cos asin - + asin tan - + tan atan - + atan @@ -35127,63 +35344,73 @@ p, li { white-space: pre-wrap; } Raster calculator expression - + Rasterkalkylator-uttryck QgsRasterDataProvider - + Identify Identifiera - + Build Pyramids - + Bygg pyramider - + Create Datasources - + - + Remove Datasources + + + + + no data - + + Feature info + Objektinformation + + + Band Band - + Average Average - + Nearest Neighbour Nearest Neighbour - + Gauss Gauss - + Cubic Kubisk - + Mode Läge - + None Ingen @@ -35199,32 +35426,32 @@ p, li { white-space: pre-wrap; } No compression - + Low compression - + High compression - + Lossy compression - + Create Options: %1 - + @@ -35243,12 +35470,12 @@ Click on help button to get valid creation options for this format Cannot get create options for driver %1 - + No help available - + @@ -35262,17 +35489,17 @@ Click on help button to get valid creation options for this format Profile name: - + Use simple interface - + Use table interface - + @@ -35295,12 +35522,12 @@ Click on help button to get valid creation options for this format Reset - + Profile - + @@ -35320,7 +35547,7 @@ Click on help button to get valid creation options for this format Validate - + @@ -35335,7 +35562,7 @@ Click on help button to get valid creation options for this format Insert KEY=VALUE pairs separated by spaces - + @@ -35348,32 +35575,32 @@ Click on help button to get valid creation options for this format Show min/max markers - + Show all bands - + Show RGB/Gray band(s) - + Show selected band - + Reset - + Load min/max - + @@ -35388,27 +35615,27 @@ Click on help button to get valid creation options for this format Current extent - + Use stddev (1.0) - + Use stddev (custom) - + Load for each band - + Recompute Histogram - + @@ -35441,7 +35668,7 @@ Click on help button to get valid creation options for this format Pick Min value on graph - + @@ -35457,63 +35684,60 @@ Click on help button to get valid creation options for this format Pick Max value on graph - + Prefs/Actions - + Save plot - + Save as image... - + Compute Histogram - + QgsRasterLayer - - - - - + + + + + Not Set Inte satt - + Could not reproject view extent: %1 - + - - - - - - - + + + + Raster Raster - + Could not reproject layer extent: %1 - + - + Driver: Drivrutin: @@ -35530,166 +35754,161 @@ Click on help button to get valid creation options for this format Pixelstorlek: - + Pyramid overviews: Pyramidöversikter: - - + + Band Band - + Band No Bandnr - + No Stats Ingen statistik - + No stats collected yet Ingen statistik har samlats in - + Min Val MinVärde - + Max Val MaxVärde - + Range Intervall - + Mean Medel - + Sum of squares Kvadratsumma - + Standard Deviation Standardavvikelse - + Sum of all cells Summa av alla celler - + Cell Count Cellantal - - Failed to load provider %1 (Reason: %2) - - - - - Cannot resolve the classFactory function - - - - - Cannot instantiate the data provider - - - - + <maplayer> not found. - + - + GDAL data type %1 is not supported - + - + Data Type: Datatyp: - + Cannot read data - + - + GDT_Byte - Eight bit unsigned integer GDT_Byte - Åttabitars ickenegativt heltal - + GDT_UInt16 - Sixteen bit unsigned integer GDT_UInt16 - Sextonbitars ickenegativt heltal - + GDT_Int16 - Sixteen bit signed integer GDT_Int16 - Sextonbitars heltal - + GDT_UInt32 - Thirty two bit unsigned integer GDT_UInt32 - Trettiotvåbitars ickenegativt heltal - + GDT_Int32 - Thirty two bit signed integer GDT_Int32 - Trettiotvåbitars heltal - + GDT_Float32 - Thirty two bit floating point GDT_Float32 - Trettiotvåbitars flyttal - + GDT_Float64 - Sixty four bit floating point GDT_Float64 - Sextiofyrabitars flyttal - + GDT_CInt16 - Complex Int16 GDT_CInt16 - Komplex Int16 - + GDT_CInt32 - Complex Int32 GDT_CInt32 - Komplex Int32 - + GDT_CFloat32 - Complex Float32 GDT_CFloat32 - Komplex Float32 - + GDT_CFloat64 - Complex Float64 GDT_CFloat64 - Komplex Float64 - + Could not determine raster data type. Kunde inte bestämma rastertyp. + + + Cannot instantiate the '%1' data provider + + + + + Provider is not valid (provider: %1, URI: %2 + + Average Magphase Average Magphase @@ -35703,22 +35922,22 @@ Click on help button to get valid creation options for this format Beskrivning av dataset - + No Data Value Inget datavärde - + Layer Spatial Reference System: Lagrets Spatial Reference System: - + Layer Extent (layer original source projection): - + Lagrets utbredning (i lagrets ursprungliga koordinatsystem): - + Project Spatial Reference System: Projektets Spatial Reference System: @@ -35727,12 +35946,12 @@ Click on help button to get valid creation options for this format utanför utsträckning - + null (no data) null (ingen data) - + NoDataValue not set Inget datavärde ej satt @@ -35745,12 +35964,12 @@ Click on help button to get valid creation options for this format X: %1 Y: %2 Band: %3 - + QgsRasterLayer created QgsRasterLayer skapat - + Retrieving stats for %1 Hämtar statistik för %1 @@ -35895,7 +36114,7 @@ Click on help button to get valid creation options for this format Bilinear - + @@ -35950,7 +36169,7 @@ Click on help button to get valid creation options for this format From - + @@ -35962,19 +36181,18 @@ Click on help button to get valid creation options for this format null (ingen data) - + Filter Filter - + Bands - + - Time - Tid + Tid User Defined @@ -35990,18 +36208,18 @@ Click on help button to get valid creation options for this format Spara fil - + Load layer properties from style file Läs in lageregenskaper från stilfil - - + + QGIS Layer Style File QGIS lager stilfil - + Save layer properties as style file Spara lageregenskaper som stilfil @@ -36023,12 +36241,12 @@ Click on help button to get valid creation options for this format Välj ett filnamn att spara kartbilden som - + Open file Öppna fil - + Import Error Fel vid import @@ -36045,12 +36263,12 @@ Click on help button to get valid creation options for this format - + Read access denied Läsåtkomst nekad - + Read access denied. Adjust the file permissions and try again. @@ -36122,8 +36340,8 @@ Click on help button to get valid creation options for this format Läs in färgkarta - - + + Default Style Standardstil @@ -36132,8 +36350,8 @@ Click on help button to get valid creation options for this format QGIS lager stilfil (*.qml) - - + + Saved Style Sparad stil @@ -36191,12 +36409,12 @@ Click on help button to get valid creation options for this format - + Textfile - + - + The following lines contained errors %1 @@ -36248,22 +36466,22 @@ Click on help button to get valid creation options for this format Render type - + Resampling - + Zoomed in - + Zoomed out - + @@ -36649,7 +36867,7 @@ Click on help button to get valid creation options for this format No Data - + @@ -36766,27 +36984,27 @@ p, li { white-space: pre-wrap; } Overview format - + External - + Internal (if possible) - + External (Erdas Imagine) - + Pipe - + @@ -36799,7 +37017,7 @@ p, li { white-space: pre-wrap; } From - + @@ -36809,54 +37027,54 @@ p, li { white-space: pre-wrap; } Select output directory - + Select output file - + layer - + user defined - + Resolution (current: %1) - + Extent (current: %1) - + Layer (%1, %2) - + Project (%1, %2) - + Selected (%1, %2) - + map view - + Extent @@ -36880,27 +37098,27 @@ p, li { white-space: pre-wrap; } Save raster layer as... - + Output mode - + Raw data - + Write out 3 bands RGB image rendered using current layer style. - + Rendered image - + @@ -36915,7 +37133,7 @@ p, li { white-space: pre-wrap; } Browse... - + Bläddra... @@ -36955,22 +37173,22 @@ p, li { white-space: pre-wrap; } Map view extent - + Layer extent - + Write out raw raster layer data. Optionally user defined no data values may be applied. - + Resolution - + @@ -36990,12 +37208,12 @@ p, li { white-space: pre-wrap; } Layer resolution - + Layer size - + @@ -37005,49 +37223,49 @@ p, li { white-space: pre-wrap; } Create Options - + Tiles - + Maximum number of columns in one tile. - + Max columns - + Maximum number of rows in one tile. - + Max rows - + Create VRT - + Additional no data values. The specified values will be set to no data in output raster. - + No data values - + @@ -37065,7 +37283,7 @@ p, li { white-space: pre-wrap; } Load user defined fully transparent (100%) values - + @@ -37075,7 +37293,7 @@ p, li { white-space: pre-wrap; } Clear all - + @@ -37089,17 +37307,17 @@ p, li { white-space: pre-wrap; } Use existing - + Resolutions - + Pyramid resolutions corresponding to levels given - + @@ -37112,7 +37330,7 @@ p, li { white-space: pre-wrap; } Load min/max values - + @@ -37132,12 +37350,12 @@ p, li { white-space: pre-wrap; } Min / max - + Mean +/- standard deviation × - + @@ -37147,7 +37365,7 @@ p, li { white-space: pre-wrap; } Full - + @@ -37157,7 +37375,7 @@ p, li { white-space: pre-wrap; } Accuracy - + @@ -37185,27 +37403,27 @@ p, li { white-space: pre-wrap; } Custom levels - + External - + Internal (if possible) - + External (Erdas Imagine) - + Insert positive integer values separated by spaces - + @@ -37220,17 +37438,17 @@ p, li { white-space: pre-wrap; } Overview format - + Create Options - + Levels - + @@ -37241,32 +37459,32 @@ p, li { white-space: pre-wrap; } QgsRasterRenderer - + Unknown - + - + User defined - + Estimated - + Exact Exakt - + min / max - + of @@ -37276,63 +37494,63 @@ p, li { white-space: pre-wrap; } Export Frequency distribution as csv - + Export Colors and elevations as xml - + Import Colors and elevations from xml - + Error opening file - + The relief color file could not be opened - + Error parsing xml - + The xml file could not be loaded - + Enter result file - + Ange mål för resultatfil Enter lower elevation class bound - + Elevation - + Enter upper elevation class bound - + Select color for relief class - + @@ -37344,12 +37562,12 @@ p, li { white-space: pre-wrap; } Output layer - + Mål för utdatafil Output format - + @@ -37364,47 +37582,47 @@ p, li { white-space: pre-wrap; } Elevation layer - + Z factor - + Add result to project - + Lägg till resultat i projektet Illumination - + Azimuth (horizontal angle) - + Vertical angle - + Relief colors - + Create automatically - + Export distribution... - + @@ -37429,12 +37647,12 @@ p, li { white-space: pre-wrap; } Lower bound - + Upper bound - + @@ -37444,12 +37662,12 @@ p, li { white-space: pre-wrap; } Export colors... - + Import colors... - + @@ -37457,41 +37675,41 @@ p, li { white-space: pre-wrap; } Terrain analysis - + Slope - + Aspect - + Hillshade - + Relief - + Ruggedness index - + Calculating hillshade... - + @@ -37505,27 +37723,27 @@ p, li { white-space: pre-wrap; } Calculating relief... - + Calculating slope... - + Calculating aspect... - + Ruggedness - + Calculating ruggedness... - + @@ -37533,7 +37751,7 @@ p, li { white-space: pre-wrap; } Rule properties - + @@ -37564,23 +37782,23 @@ p, li { white-space: pre-wrap; } Scale range - + Min. scale - + 1 : - + Max. scale - + @@ -37596,7 +37814,7 @@ p, li { white-space: pre-wrap; } Filter expression parsing error: - + @@ -37607,7 +37825,7 @@ p, li { white-space: pre-wrap; } Filter returned %n feature(s) number of filtered features - + @@ -37618,31 +37836,31 @@ p, li { white-space: pre-wrap; } Rotation field - + Size scale field - + Scale area - + Scale diameter - + - no field - - + @@ -37655,7 +37873,7 @@ p, li { white-space: pre-wrap; } Do you wish to use the original symbology implementation for this layer? - + @@ -37663,17 +37881,17 @@ p, li { white-space: pre-wrap; } Renderer settings - + Old symbology - + This renderer doesn't implement a graphical interface. - + @@ -37681,27 +37899,27 @@ p, li { white-space: pre-wrap; } Change color - + Change transparency - + Change output unit - + Change width - + Change size - + @@ -37711,17 +37929,17 @@ p, li { white-space: pre-wrap; } Change symbol transparency [%] - + Symbol unit - + Select symbol unit - + @@ -37742,7 +37960,7 @@ p, li { white-space: pre-wrap; } Change symbol width - + @@ -37752,7 +37970,7 @@ p, li { white-space: pre-wrap; } Change symbol size - + @@ -37760,7 +37978,7 @@ p, li { white-space: pre-wrap; } (no filter) - + @@ -37770,17 +37988,17 @@ p, li { white-space: pre-wrap; } Rule - + Min. scale - + Max.scale - + @@ -37801,7 +38019,7 @@ p, li { white-space: pre-wrap; } Rendering order... - + @@ -37816,48 +38034,48 @@ p, li { white-space: pre-wrap; } Refine current rules - + Add scales to rule - + Add categories to rule - + Add ranges to rule - + Refine a rule to categories - + Refine a rule to ranges - + Scale refinement - + Parent rule %1 must have a symbol for this operation. - + Please enter scale denominators at which will split the rule, separate them by commas (e.g. 1000,5000): - + @@ -37867,7 +38085,7 @@ p, li { white-space: pre-wrap; } "%1" is not valid scale denominator, ignoring it. - + @@ -37905,61 +38123,61 @@ p, li { white-space: pre-wrap; } Database does not exist - + Failed to open database - + Failed to check metadata - + Failed to get list of tables - + Unknown error - + Delete - + %1: Not a vector layer! - + %1: Är inte ett vektorlager! %1: OK! - + %1: OK! Import to SpatiaLite database - + Failed to import some layers! - + Import was successful. - + @@ -37969,12 +38187,12 @@ p, li { white-space: pre-wrap; } Delete layer - + Layer deleted successfully. - + @@ -37982,12 +38200,12 @@ p, li { white-space: pre-wrap; } Create database... - + New SpatiaLite Database File - + Ny SpatiaLite-databasfil @@ -38003,18 +38221,18 @@ p, li { white-space: pre-wrap; } Create SpatiaLite database - + The database has been created - + Failed to create the database: - + @@ -38062,9 +38280,9 @@ p, li { white-space: pre-wrap; } QgsSVGFillSymbolLayerWidget - + Select svg texture file - + @@ -38256,32 +38474,32 @@ p, li { white-space: pre-wrap; } &Test - + &Test &Clear - + &Save... - + Save query to an xml file - + &Load... - + Load query from xml file - + @@ -38305,7 +38523,7 @@ p, li { white-space: pre-wrap; } Save query to file - + @@ -38318,17 +38536,17 @@ p, li { white-space: pre-wrap; } Could not open file for writing - + Load query from file - + Query files - + @@ -38338,27 +38556,27 @@ p, li { white-space: pre-wrap; } Could not open file for reading - + File is not a valid xml document - + File is not a valid query document - + Select attribute - + There is no attribute '%1' in the current vector layer. Please select an existing attribute - + @@ -38366,13 +38584,13 @@ p, li { white-space: pre-wrap; } Validation started. - + Validation finished (%n error(s) found). number of geometry errors - + @@ -38380,32 +38598,32 @@ p, li { white-space: pre-wrap; } ring %1, vertex %2 - + polygon %1, ring %2, vertex %3 - + polyline %1, vertex %2 - + vertex %1 - + point %1 - + single point - + @@ -38454,22 +38672,22 @@ Felet var: No enhancement - + Stretch to MinMax - + Stretch and clip to MinMax - + Clip to MinMax - + @@ -38504,69 +38722,69 @@ Felet var: QgsSingleBandPseudoColorRendererWidget - - - - + + + + Discrete Diskret - - - - - + + + + + Linear Linjär - - + + Exact Exakt - + Equal interval Jämna intervall - + Custom color map entry Anpassad färgkarta fält - + Load Color Map Läs in färgkarta - + The color map for band %1 failed to load Färgkartan för band %1 kunde inte läsas in - + Open file Öppna fil - - + + Textfile (*.txt) Textfil (*.txt) - + Import Error Fel vid import - + The following lines contained errors @@ -38575,12 +38793,12 @@ Felet var: - + Read access denied Läsåtkomst nekad - + Read access denied. Adjust the file permissions and try again. @@ -38589,22 +38807,22 @@ Felet var: - + Save file Spara fil - + QGIS Generated Color Map Export File QGIS-genererad fil för export av färgkarta - + Write access denied Skrivåtkomst nekad - + Write access denied. Adjust the file permissions and try again. @@ -38761,12 +38979,12 @@ Felet var: Open File - + Images - + @@ -38784,12 +39002,12 @@ Felet var: In map units - + Drawing by field - + @@ -38799,7 +39017,7 @@ Felet var: Area scale - + @@ -38809,12 +39027,12 @@ Felet var: Fill options - + Outline options - + @@ -38855,7 +39073,7 @@ Felet var: The Symbol - + @@ -38863,12 +39081,12 @@ Felet var: Invalid name - + The smart group name field is empty. Kindly provide a name - + @@ -38876,27 +39094,27 @@ Felet var: Smart Group Editor - + Smart Group Name - + Condition matches - + Add Condition - + Conditions - + @@ -39023,24 +39241,24 @@ Felet var: - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + SQLite error: %2 SQL: %1 SQLite fel: %2 @@ -39056,19 +39274,19 @@ SQL: %1 - - - - - - - - - - - - - + + + + + + + + + + + + + SpatiaLite SpatiaLite @@ -39076,12 +39294,12 @@ SQL: %1 - - - - - - + + + + + + unknown cause okänd orsak @@ -39091,7 +39309,7 @@ SQL: %1 SQLite-fel vid läsning av objekt: %1 - + FAILURE: Field %1 not found. FEL: Fält %1 hittades inte. @@ -39101,12 +39319,12 @@ SQL: %1 Add SpatiaLite Table(s) - + Databases - + @@ -39116,7 +39334,7 @@ SQL: %1 &Build Query - + @@ -39163,7 +39381,7 @@ SQL: %1 SpatiaLite DB - + @@ -39174,41 +39392,41 @@ SQL: %1 SpatiaLite DB Open Error - + Database does not exist: %1 - + Failure while connecting to: %1 %2 - + SpatiaLite Error - + Unexpected error when working with: %1 %2 - + @ - + @ Choose a SpatiaLite/SQLite DB to open - + @@ -39228,14 +39446,14 @@ SQL: %1 SpatiaLite getTableInfo Error - + Failure exploring tables from: %1 %2 - + @@ -39321,7 +39539,7 @@ SQL: %1 %n selected geometries selected geometries - + @@ -39329,12 +39547,12 @@ SQL: %1 Selected geometries - + < %1 > - + @@ -39345,102 +39563,102 @@ SQL: %1 all = %1 - + %1)Query - + The spatial query requires at least two vector layers - + Begin at %L1 - + Total of features = %1 - + Total of invalid features: - + Finish at %L1 (processing time %L2 minutes) - + Using the field "%1" for subset - + Sorry! Only this providers are enable: OGR, POSTGRES and SPATIALITE. - + %1 of %2(selected features) - + Create new selection - + Add to current selection - + Remove from current selection - + Result query - + Invalid source - + Invalid reference - + %1 of %2 selected by "%3" - + user - + Map "%1" "on the fly" transformation. - + enable - + @@ -39469,48 +39687,48 @@ CRS of map is %1. Missing reference layer - + Select reference layer! - + Missing target layer - + Select target layer! - + Create new layer from items - + The query from "%1" using "%2" in field not possible. - + Create new layer from selected - + %1 of %2 identified - + DEBUG - + @@ -39518,22 +39736,22 @@ CRS of map is %1. Spatial Query - + Layer on which the topological operation will select geometries - + Select source features from - + Select the target layer - + @@ -39542,74 +39760,74 @@ CRS of map is %1. p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">When checked the operation will only consider selected geometries of the target layer</span></p></body></html> - + Selected feature(s) only - + Where the feature - + Layer whose geometries will be used as reference by the topological operation - + Reference features of - + And use the result to - + Selected features - + Number of selected features in map - + Create layer with selected - + Select one FID to identify geometry of feature - + Create layer with list of items - + Zoom to item - + Log messages - + Select the reference layer - + @@ -39618,27 +39836,27 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">When checked the operation will be only consider selected geometries of the reference layer</span></p></body></html> - + Result feature ID's - + Run query or close the window - + Select the topological operation - + Check to show log processing of query - + @@ -39648,17 +39866,17 @@ p, li { white-space: pre-wrap; } &Spatial Query - + Query not executed - + DEBUG - + @@ -39673,7 +39891,7 @@ p, li { white-space: pre-wrap; } Select a Spatialite Spatial Reference System - + @@ -39684,12 +39902,12 @@ p, li { white-space: pre-wrap; } Authority - + Reference Name - + @@ -39946,7 +40164,7 @@ p, li { white-space: pre-wrap; } Shapefiles - + @@ -40218,7 +40436,7 @@ p, li { white-space: pre-wrap; } <p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.gfosservices.com"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Studio Associato Gfosservices</span></a></p> <p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://nextgis.org"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">NEXTGIS</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:14pt; font-weight:600;"></p></body></html> - + @@ -40226,95 +40444,95 @@ p, li { white-space: pre-wrap; } Failed to load interface - + Failed to connect to database - + A connection to the SQL Anywhere database cannot be established. - + No suitable key column - + The source relation %1 has no column suitable for use as a unique key. Quantum GIS requires that the relation has an integer column no larger than 32 bits containing unique values. - + Error loading attributes - + Ambiguous field! - + Duplicate field %1 found - + Error describing bind parameters - + Error binding parameters - + Error inserting features - + Error deleting features - + Error adding attributes - + Error deleting attributes - + Attribute not found - + Error updating attributes - + Error updating features - + Error verifying geometry column %1 - + @@ -40324,49 +40542,49 @@ Quantum GIS requires that the relation has an integer column no larger than 32 b Column %1 has a geometry type of %2, which Quantum GIS does not currently support. - + Mixed Spatial Reference Systems - + Column %1 is not restricted to a single SRID, which Quantum GIS requires. - + Error checking database ReadOnly property - + Error loading SRS definition - + Because Quantum GIS supports only planar data, the SQL Anywhere data provider will transform the data to the compatible planar projection (SRID=%1). - + Because Quantum GIS supports only planar data and no compatible planar projection was found, the SQL Anywhere data provider will attempt to transform the data to planar WGS 84 (SRID=%1). - + Limited Support of Round Earth SRS - + Column %1 (%2) contains geometries belonging to a round earth spatial reference system (SRID=%3). %4 Updates to geometry values will be disabled, and query performance may be poor because spatial indexes will not be utilized. To improve performance, consider creating a spatial index on a new (possibly computed) column containing a planar projection of these geometries. For help, refer to the descriptions of the ST_SRID(INT) and ST_Transform(INT) methods in the SQL Anywhere documentation. - + @@ -40379,7 +40597,7 @@ Updates to geometry values will be disabled, and query performance may be poor b Clear selection - + @@ -40389,7 +40607,7 @@ Updates to geometry values will be disabled, and query performance may be poor b Select symbols to import - + @@ -40410,97 +40628,97 @@ Updates to geometry values will be disabled, and query performance may be poor b Export/import error - + You should select at least one symbol/color ramp. - + Save styles - + XML files (*.xml *.XML) - + Error when saving selected symbols to file: %1 - + Import error - + An error occured during import: %1 - + Group Name - + Please enter a name for new group: - + imported - + New Group - + New group cannot be created without a name. Kindly enter a name. - + New group - + Cannot create a group without name. Enter a name. - + Duplicate names - + Symbol with name '%1' already exists. Overwrite? - + Color ramp with name '%1' already exists. Overwrite? - + Load styles - + @@ -40510,12 +40728,12 @@ Overwrite? Downloading style ... - + HTTP Error! - + @@ -40528,12 +40746,12 @@ Overwrite? Styles import/export - + Import from - + @@ -40543,12 +40761,12 @@ Overwrite? Save to group - + Select symbols to export - + @@ -40556,28 +40774,28 @@ Overwrite? Marker symbol (%1) - + Line symbol (%1) - + Fill symbol (%1) - + Color ramp (%1) - + Type here to filter symbols ... - + @@ -40587,160 +40805,160 @@ Overwrite? Please enter a name for new symbol: - + new symbol - + new marker - + new line - + new fill symbol - + Save symbol - + Cannot save symbol without name. Enter a name. - + Symbol with name '%1' already exists. Overwrite? - + Gradient - + Random - + ColorBrewer - + cpt-city - + Color ramp type - + Please select color ramp type: - + new ramp - + new gradient ramp - + new random ramp - + Color Ramp Name - + Please enter a name for new color ramp: - + Save Color Ramp - + Cannot save color ramp without name. Enter a name. - + Save color ramp - + Color ramp with name '%1' already exists. Overwrite? - + Invalid Selection - + The parent group you have selected is not user editable. Kindly select a user defined group. - + Operation Not Allowed - + Creation of nested smart groups are not allowed Select the 'Smart Group' to create a new group. - + Invalid selection - + Cannot delete system defined categories. Kindly select a group or smart group you might want to delete. - + @@ -40751,7 +40969,7 @@ Kindly select a group or smart group you might want to delete. New group could not be created. There was a problem with your symbol database. - + @@ -40761,22 +40979,22 @@ There was a problem with your symbol database. There was a problem with the Symbols database while regrouping. - + You have not selected a Smart Group. Kindly select a Smart Group to edit. - + Database Error! - + There was some error while editing the smart group. - + @@ -40784,7 +41002,7 @@ There was a problem with your symbol database. Style Manager - + Symbolhanteraren @@ -40799,7 +41017,7 @@ There was a problem with your symbol database. Fill - + Ytsymbol @@ -40809,17 +41027,17 @@ There was a problem with your symbol database. Add item - + Share - + Tags - + Add @@ -40828,7 +41046,7 @@ There was a problem with your symbol database. Edit item - + @@ -40838,7 +41056,7 @@ There was a problem with your symbol database. Remove item - + Remove @@ -40848,14 +41066,14 @@ There was a problem with your symbol database. QgsSvgMarkerSymbolLayerV2Widget - + Select SVG file - + - + SVG files - + @@ -40863,7 +41081,7 @@ There was a problem with your symbol database. Layer %1 - + @@ -40871,17 +41089,17 @@ There was a problem with your symbol database. Symbol Levels - + Enable symbol levels - + Define the order in which the symbol layers are rendered. The numbers in the cells define in which rendering pass the layer will be drawn. - + @@ -40893,12 +41111,12 @@ There was a problem with your symbol database. Invalid Selection! - + Kindly select a symbol to add layer. - + @@ -40906,27 +41124,27 @@ There was a problem with your symbol database. Symbol selector - + Symbol layers - + Add symbol layer - + Remove symbol layer - + Lock layer's color - + @@ -40972,32 +41190,32 @@ There was a problem with your symbol database. Symbol name - + Please enter name for the symbol: - + New symbol - + Save symbol - + Symbol with name '%1' already exists. Overwrite? - + Transparency %1% - + @@ -41011,12 +41229,12 @@ There was a problem with your symbol database. Clough-Toucher (cubic) - + Save triangulation to file - + @@ -41034,7 +41252,7 @@ There was a problem with your symbol database. Export triangulation to shapefile after interpolation - + @@ -41106,172 +41324,172 @@ There was a problem with your symbol database. Quantum GIS is open source - + Quantum GIS is open source software. This means that the software source code can be freely viewed and modified. The GPL places a restriction that any modifications you make must be made available in source form to whoever you give modified versions to, and that you can not create a new version of Quantum GIS under a 'closed source' license. Visit <a href="http://qgis.org"> the QGIS home page (http://qgis.org)</a> for more information. - + QGIS Publications - + If you write a scientific paper or any other article that refers to QGIS we would love to include your work in the <a href="http://www.qgis.org/en/community/qgis-case-studies.html">case studies section</a> of the Quantum GIS home page (http://http://www.qgis.org/en/community/qgis-case-studies.html). - + Become an QGIS translator - + Would you like to see QGIS in your native language? We are looking for more translators and would appreciate your help! The translation process is fairly straight forward - instructions are available in the QGIS wiki <a href="http://www.qgis.org/wiki/GUI_Translation">translator's page (http://www.qgis.org/wiki/GUI_Translation).</a> - + QGIS Mailing lists - + If you need help using QGIS we have a 'users' mailing list where users help each other with issues related to using our sofware. We also have a 'developers' mailing list. for those wanting help and to discuss things relating to the QGIS code base. Details on how to subscribe are in the <a href="http://www.qgis.org/en/community/mailing-lists.html">community section</a> of the QGIS home page (http://www.qgis.org/en/community/mailing-lists.html). - + Is it 'QGIS' or 'Quantum GIS'? - + Both are correct. For articles we suggest you write 'Quantum GIS (QGIS) is ....' and then refer to it as QGIS thereafter. - + How do I refer to Quantum GIS? - + QGIS is spelled in all caps. We have various subprojects of the QGIS project and it will help to avoid confusion if you refer to each by its name:<ul><li>QGIS Library - this is the C++ library that contains the core logic that is used to build the QGIS user interface and other applications.</li><li>QGIS Application - this is the desktop application that you know and love so much :-).</li><li>QGIS Mapserver - this is a server-side application based on the QGIS Library that will serve up your .qgs projects using the WMS protocol.</li></ul> - + Add the current date to a map layout - + You can add a current date variable to your map layout. Create a regular text label and add the string $CURRENT_DATE(yyyy-MM-dd) to the text box. See the <a href="http://doc.qt.nokia.com/latest/qdate.html#toString">QDate::toString format documentation</a> for the possible date formats. - + Moving Elements and Maps in the Print Composer - + In the print composer tool bar you can find two buttons for moving elements. The left one (a selection cursor with the hand symbol) selects and moves elements in the layout. After selecting the element with this tool you can also move them around with the arrow keys. For accurate positioning use the <strong>Position and Size</strong> dialogue, which can be found in the tab <strong>Item &rarr; General Options &rarr; Position and Size</strong>. For easier positioning you can also set specific anchor points of the element within this dialogue. The other move tool (the globe icon combined with the hand icon) allows one to move the map content within a map frame. - + Lock an element in the layout view - + By left clicking an element in the layout view you can select it, by right clicking an element you can lock it. A lock symbol will appear in the upper left corner of the selected element. This prevents the element from accidentally being moved with the mouse. While in a locked state, you cannot move an element with the mouse but you can still move it with the arrow keys or by absolutely positioning it by setting its <strong>Position and Size</strong>. - + Rotating a map and linking a north arrow - + You can rotate a map by setting its rotation value in the <strong>Item tab &rarr; Map</strong> section. To place a north arrow in your layout you can use the <strong>Add Image</strong> tool, the button with the little camera icon. QGIS comes with a selection of north arrows. After the placement of the north arrow in the layout you can link it with a specific map frame by activating the <strong>Sync with map</strong> checkbox and selecting a map frame. Whenever you change the rotation value of a linked map, the north arrow will now automatically adjust its rotation. - + Numeric scale value in map layout linked to map frame - + If you want to place a text label as a placeholder for the current scale, linked to a map frame, you need to place a scalebar and set the style to 'Numeric'. You also need to select the map frame, if there is more than one. - + Using the mouse scroll wheel - + You can use the scroll wheel on your mouse to zoom in, out and pan the map. Scroll forwards to zoom in, scroll backwards to zoom out and press and hold the scroll wheel down to pan the map. You can configure options for scroll wheel behaviour in the Options panel. - + Stopping rendering - + Sometimes you have a very large dataset which takes ages to draw. You can press 'esc' (the escape key), or click the small red 'X' icon in the status bar to the bottom right of the window at any time to halt rendering. If you are going to be performing several actions (e.g. modifying symbology options) and wish to temporarily disable map rendering while you do so, you can uncheck the 'Render' checkbox in the bottom right of the status bar. Don't forget to check it on again when you are ready to have the map draw itself again! - + Join intersected polylines when rendering - + When applying layered styles to a polyline layer, you can join intersecting lines together simply by enabling symbol levels. The image below shows a before (left) and after (right) view of an intersection when symbol levels are enabled. - + Auto-enable on the fly projection - + In the options dialog, under the CRS tab, you can set QGIS so that whenever you create a new project, 'on the fly projection' is enabled automatically and a pre-selected Coordinate Reference System of your choice is used. - + Sponsor QGIS - + If QGIS is saving you money or you like our work and have the financial ability to help, please consider sponsoring the development of Quantum GIS. We use money from sponsors to pay for travel and costs related to our bi-annual hackfests, and to generally support the goals of our project. Please see the <a href="http://qgis.org/en/sponsorship.html">QGIS Sponsorship Web Page</a> for more details. - + Quantum GIS has Plugins! - + Quantum GIS has plugins that extend its functionality. QGIS ships with some core plugins you can explore from the Plugins->Manage Plugins menu. In addition there are over 150 Python plugins contributed by the user community that can be installed from the Plugins->Fetch Python Plugins menu. Don't miss out on all QGIS has to offer---check out the plugins and see what they can do for you. - + @@ -41774,22 +41992,22 @@ Skall existerande klasser tas bort före klassificering? QgsVectorLayer - + ERROR: no provider FEL: ingen datakälla - + ERROR: layer not editable FEL: lager kan ej skrivas - + SUCCESS: attribute %1 was added. RÄTT: attribut %1 lades till. - + ERROR: attribute %1 not added FEL: attribut %1 lades inte till @@ -41804,17 +42022,17 @@ Skall existerande klasser tas bort före klassificering? Klassifikationsfält kunde ej hittas - + renderer failed to save renderare kunde inte spara - + no renderer ingen renderare - + SUCCESS: %n attribute(s) deleted. deleted attributes count @@ -41823,7 +42041,7 @@ Skall existerande klasser tas bort före klassificering? - + ERROR: %n attribute(s) not deleted. not deleted attributes count @@ -41832,7 +42050,7 @@ Skall existerande klasser tas bort före klassificering? - + SUCCESS: %n attribute(s) added. added attributes count @@ -41841,7 +42059,7 @@ Skall existerande klasser tas bort före klassificering? - + ERROR: %n new attribute(s) not added not added attributes count @@ -41850,7 +42068,7 @@ Skall existerande klasser tas bort före klassificering? - + SUCCESS: %n attribute value(s) changed. changed attribute values count @@ -41859,7 +42077,7 @@ Skall existerande klasser tas bort före klassificering? - + ERROR: %n attribute value change(s) not applied. not changed attribute values count @@ -41868,7 +42086,7 @@ Skall existerande klasser tas bort före klassificering? - + SUCCESS: %n feature(s) added. added features count @@ -41877,7 +42095,7 @@ Skall existerande klasser tas bort före klassificering? - + ERROR: %n feature(s) not added. not added features count @@ -41886,7 +42104,7 @@ Skall existerande klasser tas bort före klassificering? - + ERROR: %n feature(s) not added - provider doesn't support adding features. not added features count @@ -41895,7 +42113,7 @@ Skall existerande klasser tas bort före klassificering? - + SUCCESS: %n geometries were changed. changed geometries count @@ -41904,7 +42122,7 @@ Skall existerande klasser tas bort före klassificering? - + ERROR: %n geometries not changed. not changed geometries count @@ -41913,7 +42131,7 @@ Skall existerande klasser tas bort före klassificering? - + SUCCESS: %n feature(s) deleted. deleted features count @@ -41922,7 +42140,7 @@ Skall existerande klasser tas bort före klassificering? - + ERROR: %n feature(s) not deleted. not deleted features count @@ -41931,123 +42149,123 @@ Skall existerande klasser tas bort före klassificering? - + Provider errors: Datakällefel: - + Commit errors: %1 Commit-fel: %1 - + General: Allmänt: - + Layer comment: %1 Lagerkommentar: %1 - + Storage type of this layer: %1 Lagringstyp för detta lager: %1 - + Source for this layer: %1 Källa för detta lager : %1 - + Geometry type of the features in this layer: %1 Geometrityp på objekten i detta lager: %1 - + The number of features in this layer: %1 Antal objekt i detta lager: %1 - + Editing capabilities of this layer: %1 Möjlighet till redigering i detta lager: %1 - + Extents: Utsträckning: - + In layer spatial reference system units : I lagrets referenskoordinatsystemsenheter : - - + + xMin,yMin %1,%2 : xMax,yMax %3,%4 xMin,yMin %1,%2 : xMax,yMax %3,%4 - + unknown extent okänd utsträckning - - + + In project spatial reference system units : I projektets referenskoordinatsystemsenheter : - + Layer Spatial Reference System: Lagrets referenskoordinatsystem: - + Project (Output) Spatial Reference System: Projektets (visade) referenskoordinatsystem: - + (Invalid transformation of layer extents) (Ogiltig transformering av lagrets utsträckning) - + Attribute field info: Attributfält info: - + Field Fält - + Type Typ - + Length Längd - + Precision Precision - + Comment Kommentar @@ -42060,37 +42278,37 @@ Skall existerande klasser tas bort före klassificering? QgsVectorLayerProperties - - + + Single Symbol Enkel symbol - - + + Graduated Symbol Graderad Symbol - - + + Continuous Color Kontinuerlig Färg - - + + Unique Value Unik Symbol - - + + Spatial Index Rumsligt index - + Creation of spatial index failed Misslyckades skapa rumsligt index @@ -42127,28 +42345,28 @@ Skall existerande klasser tas bort före klassificering? Fält - + Type Typ - + Length Längd - + Precision Precision - + Comment Kommentar - - + + Default Style Standardstil @@ -42189,202 +42407,201 @@ Skall existerande klasser tas bort före klassificering? alias - + Name conflict Namnkonflikt - + The attribute could not be inserted. The name already exists in the table. Attributet kunde inte föras in. Namnet finns redan i tabellen. - + Added attribute La till attribut - + Deleted attribute Tog bort attribut - + Creation of spatial index successful Lyckades skapa rumsligt index - + Load layer properties from style file Läs in lageregenskaper från stilfil - - - + + + QGIS Layer Style File QGIS lager stilfil - - - + + + SLD File SLD-fil - + Load Style Läs in stil - + Save layer properties as style file Spara lageregenskaper som stilfil - + Saved Style Sparad stil - + Transparency: %1% Genomskinlighet: %1% - Overlay - Överlager + Överlager - + Layer Properties - %1 Lageregenskaper - %1 - + Id ID - + Name Namn - + Edit widget Redigeringssymbol - + Alias Alias - - + + Stop editing mode to enable this. Avsluta redigeringsläge för att tillåta detta. - + Insert expression Skriv in uttryck - + This button opens the query builder and allows you to create a subset of features to display on the map canvas rather than displaying all features in the layer Den här knappen öppnar Frågebyggaren som gör det möjligt att välja endast en delmängd av lagrets objekt för visning på kartbladet - + The query used to limit the features in the layer is shown here. To enter or modify the query, click on the Query Builder button Sökfrågan för att begränsa objekt i lagret visas här. För att ändra sökfrågan, klicka på på knappen Frågebyggare - + Line edit Linjeredigering - + Unique values Unika värden - + Unique values editable Unika värden (redigerbara) - + Classification Klassificering - + Value map Värdekarta - + Edit range Editera intervall - + Slider range Dragväljare intervall - + Dial range Snurrans intervall - + File name Filnamn - + Enumeration Uppräkning - + Immutable Oförstörbara - + Hidden Gömd - + Checkbox Kryssruta - + Text edit Textredigering - + Calendar Kalender - + Value relation Värderelation - + UUID generator UUID-generator @@ -42401,7 +42618,7 @@ Skall existerande klasser tas bort före klassificering? Kartenheter - + UI file UI-fil @@ -42442,12 +42659,12 @@ Skall existerande klasser tas bort före klassificering? Läs in lageregenskaper från stilfil (.qml) - + Select edit form Välj redigeringsformulär - + Symbology Symbologi @@ -42468,12 +42685,12 @@ Skall existerande klasser tas bort före klassificering? RuntPunkt - + Save Style Spara stil - + Save Style... Spara stil... @@ -42522,7 +42739,7 @@ Skall existerande klasser tas bort före klassificering? Spara lageregenskaper som stilfil (.qml) - + Do you wish to use the new symbology implementation for this layer? Vill du använda nya symbolimplementeringen för detta lager? @@ -43173,17 +43390,17 @@ Skall existerande klasser tas bort före klassificering? QgsWFSProvider - + unknown obekant - + received %1 bytes from %2 Tog emot %1 bytes av %2 - + Error Fel @@ -43651,7 +43868,7 @@ Objekt Feature limit for GetFeatureInfo - + @@ -43666,7 +43883,7 @@ Objekt Move selected layer UP - + @@ -43676,7 +43893,7 @@ Objekt Move selected layer DOWN - + @@ -43698,7 +43915,7 @@ Objekt Tilesets - + Styles @@ -43716,7 +43933,7 @@ Objekt Tileset - + @@ -43802,27 +44019,27 @@ Försökte med URL: %1 Capabilities request redirected. - + empty of capabilities: %1 - + Download of capabilities failed: %1 - + WCS - + WCS %1 of %2 bytes of capabilities downloaded. - + @@ -43832,7 +44049,7 @@ Försökte med URL: %1 Could not get WCS capabilities: %1 - + @@ -43851,17 +44068,17 @@ This might be due to an incorrect WCS Server URL. Tag:%3 Response was: %4 - + Version not supported - + WCS server version %1 is not supported by Quantum GIS (supported versions: 1.0.0, 1.1.0, 1.1.2) - + @@ -43870,289 +44087,288 @@ This is probably due to an incorrect WCS Server URL. Response was: %4 - + QgsWcsProvider - + Cannot describe coverage - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - + + WCS - + WCS - + Coverage not found - + - + Cannot calculate extent - + - + Cannot get test dataset. - + - + Received coverage has wrong extent %1 (expected %2) - + Rotating raster - + - + Block read OK - + - + Received coverage has wrong size %1 x %2 (expected %3 x %4) - + - + Getting map via WCS. - + - + Map request error (Status: %1; Reason phrase: %2; URL:%3) Kart-fel (status:%1; orsak:%2; URL: %3) - - + Map request error (Title:%1; Error:%2; URL: %3) Kart-fel (titel:%1; fel:%2; URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) Kart-fel (status:%1; svar:%2; URL: %3) - - Cannot find boundary in multipart content type + + Map request error:<br>Title: %1<br>Error: %2<br>URL: <a href='%3'>%3</a>) - + + Cannot find boundary in multipart content type + + + + Expected 2 parts, %1 received - + - + More than 2 parts (%1) received - + - + Map request error (Response: %1; URL:%2) - + - + Content-Transfer-Encoding %1 not supported - + - + No data received - + - + Cannot create memory file - + - + Map request failed [error:%1 url:%2] Kart-fel (fel:%1; URL:- %2) - + Not logging more than 100 request errors. Loggar ej mer än 100 fel. - + %1 of %2 bytes of map downloaded. - + - + Dom Exception DOM fel - + Could not get WCS Service Exception at %1: %2 at line %3 column %4 Response was: %5 - + - + Request contains a format not offered by the server. - + - + Request is for a Coverage not offered by the service instance. - + - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. Värdet på (frivilliga) UpdateSequence-parameter i GetCapabilities-förfrågan är samma som nuvarande värde på 'service metadata update' sekvensnummer. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. Värdet på (frivilliga) UpdateSequence-parameter i GetCapabilities-förfrågan är större än nuvarande värde på 'service metadata update' sekvensnummer. - + Request does not include a parameter value, and the server instance did not declare a default value for that dimension. - + - + Request contains an invalid parameter value. - + - + No other exceptionCode specified by this service and server applies to this exception. - + - + Operation request contains an output CRS that can not be used within the output format. - + - + Operation request specifies to "store" the result, but not enough storage is available to do this. - + - + (No error code was reported) (Ingen felkod) - + (Unknown error code) (Okänd felkod) - + The WCS vendor also reported: - + - + composed error message '%1'. - + - - + + Property Egenskap - - + + Value Värde - + Name (identifier) - + - - + + Title Titel - - + + Abstract Sammanfattning - + Fixed Width Fast bredd - + Fixed Height Fast höjd - + Native CRS - + - + Native Bounding Box - + - + WGS 84 Bounding Box WGS 84 begränsningsruta - - + + Available in CRS Tillgänglig i referenskoordinatsystem - - + + (and %n more) crs @@ -44161,76 +44377,76 @@ Response was: - - + + Available in format - + - - + + Coverages - + - + Cache Stats - + - + Server Properties - + - + Keywords Nyckelord - + Online Resource Online-resurser - + Contact Person Kontaktperson - + Fees Avgifter - + Access Constraints Åtkomstbegränsningar - + Image Formats Bildformat - + GetCapabilitiesUrl - + - + Get Coverage Url - + - + &nbsp;<font color="red">(advertised but ignored)</font> - + - + And %1 more coverages - + out of extent @@ -44256,308 +44472,338 @@ Response was: Förfrågan innehåller ett format som servern inte tillhandahåller. - + Request contains a CRS not offered by the server for one or more of the Layers in the request. Förfrågan innehåller ett referenskoordinatsystem för ett eller flera lager i anropet, som servern inte tillhandahåller. - + Request contains a SRS not offered by the server for one or more of the Layers in the request. Förfrågan innehåller en SRS för ett eller flera lager i anropet, som servern inte tillhandahåller. - + GetMap request is for a Layer not offered by the server, or GetFeatureInfo request is for a Layer not shown on the map. GetMap-förfrågan är för ett lager som serven inte tillhandahåller, eller GetFeatureInfo-anropet är avsett för ett lager som inte är med på kartan. - + Request is for a Layer in a Style not offered by the server. Förfrågan är för ett lager med en stil som servern inte stödjer. - + GetFeatureInfo request is applied to a Layer which is not declared queryable. GetFeatureInfo-förfrågan ställdes till ett lager som inte är definerat som frågbart. - + GetFeatureInfo request contains invalid X or Y value. GetFeatureInfo-förfrågan innehåller ogiltigt X- eller Y-värde. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. Värdet på (frivilliga) UpdateSequence-parameter i GetCapabilities-förfrågan är samma som nuvarande värde på 'service metadata update' sekvensnummer. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. Värdet på (frivilliga) UpdateSequence-parameter i GetCapabilities-förfrågan är större än nuvarande värde på 'service metadata update' sekvensnummer. - + Request does not include a sample dimension value, and the server did not declare a default value for that dimension. Förfrågan innehåller inte ett dimensionsvärde, och servern har inte angett ett standardvärde för dimensionen. - + Request contains an invalid sample dimension value. Förfrågan innehåller ett ogiltigt dimensionsvärde. - + Request is for an optional operation that is not supported by the server. Förfrågan gäller en frivillig operation som servern inte stödjer. - + The WMS vendor also reported: WMS-företaget sa också: - - - - + + + + Property Egenskap - - - - + + + + Value Värde - + WMS Version WMS version - - - + + + Title Titel - + Number of layers and styles don't match Antal lager och stil överensstämmer ej - + Getting tiles. Hämtar mosaik. - + Tile request error (Title:%1; Error:%2; URL: %3) Mosaik-fel (titel:%1; fel:%2; URL:- %3) - + Tile request error (Status:%1; Content-Type:%2; Length:%3; URL: %4) Mosaik-fel (status:%1; typ:%2; längd: %3; URL: %4) - + Tile request failed [error:%1 url:%2] Mosaik-fel (fel:%1; URL:- %2) - - + + Not logging more than 100 request errors. Loggar ej mer än 100 fel. - + Map request error (Status: %1; Reason phrase: %2; URL:%3) Kart-fel (status:%1; orsak:%2; URL: %3) - + Map request error (Title:%1; Error:%2; URL: %3) Kart-fel (titel:%1; fel:%2; URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) Kart-fel (status:%1; svar:%2; URL: %3) - + Map request failed [error:%1 url:%2] Kart-fel (fel:%1; URL:- %2) - - - + + + Abstract Sammanfattning - + Tile Layer Properties Egenskaper mosaiklager - + Keywords Nyckelord - + Online Resource Online-resurser - + Contact Person Kontaktperson - + Fees Avgifter - + Access Constraints Åtkomstbegränsningar - + Image Formats Bildformat - + Identify Formats Identifieringsformat - + Layer Count Antal lager - + Tile Layer Count Antal mosaiklager - + GetTileUrl GetTileUrl - + Tile templates Mosaik-mall - + FeatureInfo templates FeatureInfo-mall - + WMTS WMTS - + WMS-C WMS-C - + Selected Vald - - - - + + + + Yes Ja - - - - + + + + No Nej - + Visibility Synlighet - - - - - - - - - - - - - - - - - + + Cannot parse URI + + + + + Cannot calculate extent + + + + + Cannot set CRS + + + + + + + + + + + + + + + + + + + + WMS WMS - + + Number of tile layers must be one + + + + + Tile layer not found + + + + + Tile layer or tile matrix set not found + + + + image is NULL Bilden är tom - + unexpected image size Oväntad bildstorlek - + Tile request error Mosaik fel - + Status: %1 Reason phrase: %2 Status: %1 Orsak: %2 - - + + Returned image is flawed [%1] Returnerad bild är felaktig [%1] - + empty capabilities document Tomt dokument med förmågor - + Could not get WMS capabilities: %1 at line %2 column %3 This is probably due to an incorrect WMS Server URL. Response was: @@ -44570,7 +44816,7 @@ Svaret var: %4 - + Could not get WMS capabilities in the expected format (DTD): no %1 or %2 found. This might be due to an incorrect WMS Server URL. Tag:%3 @@ -44583,108 +44829,113 @@ Svaret var: %4 - + Could not get WMS Service Exception at %1: %2 at line %3 column %4 Response was: %5 - + - + Request contains a format not offered by the server. - + - + composed error message '%1'. + + + + + Extent for layer %1 not found in capabilities - + Visible Synlig - + Hidden Gömd - + Can Identify Kan identifieras - + Can be Transparent Kan vara transparent - + Can Zoom In Kan zooma in - + Cascade Count Kaskadnummer - + Fixed Width Fast bredd - + Fixed Height Fast höjd - + WGS 84 Bounding Box WGS 84 begränsningsruta - - + + Available in CRS Tillgänglig i referenskoordinatsystem - + Available in style Tilgänglig med stil - + Available Styles Tillgängliga stilar - + Available Tilesets Tillgängliga mosaiker - + Map getfeatureinfo error %1: %2 - + - + ERROR: GetFeatureInfo failed - + - + Map getfeatureinfo error: %1 [%2] - + - - + + Name Namn @@ -44693,128 +44944,126 @@ Response was: Stilar - + CRS Referenskoordinatsystem - + Bounding Box Begränsningsruta - + Hits Träffar - + Misses Missar - + Errors Fel - Layer cannot be queried in plain text. - Lagret kan inte förfrågas med text. + Lagret kan inte förfrågas med text. - Layer cannot be queried. - Lager kan inte utfrågas. + Lager kan inte utfrågas. - + identify request redirected. - + - - - + + + Dom Exception DOM fel - + Getting map via WMS. - + - - + + %n tile requests in background tile request count - + - - + + , %n cache hits tile cache hits - + - - + + , %n cache misses. tile cache missed - + - - + + , %n errors. errors - + - + Tried URL: %1 Försökte med URL: %1 - + Capabilities request redirected. - + - + empty of capabilities: %1 - + - + Download of capabilities failed: %1 - + - + %1 of %2 bytes of capabilities downloaded. - + - + %1 of %2 bytes of map downloaded. - + Could not get WMS capabilities: %1 at line %2 column %3 @@ -44829,17 +45078,17 @@ Försökte med URL: %1 - + (No error code was reported) (Ingen felkod) - + (Unknown error code) (Okänd felkod) - + (and %n more) crs @@ -44848,58 +45097,58 @@ Försökte med URL: %1 - - + + Server Properties - + - - + + Selected Layers - + - - + + Other Layers - + - + Tileset Properties - + - + Cache Stats - + - + GetCapabilitiesUrl - + - + GetMapUrl - + - - + + &nbsp;<font color="red">(advertised but ignored)</font> - + - + GetFeatureInfoUrl GetFeatureInfoUrl - + Cache stats - + @@ -44912,7 +45161,7 @@ Försökte med URL: %1 Dimension - + @@ -44941,17 +45190,17 @@ Försökte med URL: %1 Raster layer: - + Polygon layer containing the zones: - + Output column prefix: - + @@ -44961,12 +45210,12 @@ Försökte med URL: %1 &Zonal statistics - + Calculating zonal statistics... - + @@ -45044,17 +45293,17 @@ Försökte med URL: %1 Export feature - + Select destination layer - + New temporary layer - + @@ -45062,7 +45311,7 @@ Försökte med URL: %1 Transportation layer - + @@ -45072,37 +45321,37 @@ Försökte med URL: %1 Direction field - + Reverse direction - + Value for forward direction - + Value for reverse direction - + Value two-way direction - + Speed field - + Default settings - + @@ -45112,22 +45361,22 @@ Försökte med URL: %1 Two-way direction - + Forward direction - + Cost - + Line lengths - + @@ -45141,18 +45390,18 @@ Försökte med URL: %1 km/h - + m/s - + Always use default - + @@ -45160,42 +45409,42 @@ Försökte med URL: %1 Road graph plugin settings - + Time unit - + Distance unit - + Topology tolerance - + second - + hour - + meter - + kilometer - + @@ -45308,7 +45557,7 @@ Försökte med URL: %1 Road graph plugin settings - + @@ -45325,18 +45574,18 @@ Försökte med URL: %1 SEXTANTE Analysis - + - &SEXTANTE Toolbox + &SEXTANTE toolbox - &SEXTANTE Modeler + &SEXTANTE modeler - &SEXTANTE History and log + &SEXTANTE history and log @@ -45381,7 +45630,7 @@ Försökte med URL: %1 Line Interpretation - + @@ -45399,17 +45648,17 @@ Försökte med URL: %1 Save connection - + Spara anslutning Should the existing connection %1 be overwritten? - + Vill du att existerande anslutning '%1' ska skrivas över? Failed to load interface - + @@ -45428,7 +45677,7 @@ Försökte med URL: %1 SQL Anywhere error code: %1 Description: %2 - + @@ -45436,7 +45685,7 @@ Description: %2 Create a new SQL Anywhere connection - + @@ -45461,7 +45710,7 @@ Description: %2 Server - + @@ -45471,7 +45720,7 @@ Description: %2 Connection Parameters - + @@ -45486,57 +45735,57 @@ Description: %2 Name of the new connection - + Namn på den nya anslutningen Name or IP address of computer hosting the database server (leave blank for local connections) - + Port number used by the database server (leave blank for default 2638) - + Name of the database server (leave blank for default server on host) - + Name of the database (leave blank for default database on server) - + Additional connection parameters - + Database username - + Database password - + Save Username - + Spara användarnamn Save the connection username in the registry - + &Test Connect - + &Testa anslutning @@ -45546,37 +45795,37 @@ Description: %2 Save the connection password in the registry (WARNING: NOT SECURE) - + Simple Encryption - + Encrypt packets using simple encryption - + Estimate table metadata - + Use estimates for certain layer properties such as cardinality, extent, etc. (improves performance) - + Search other users' tables - + Search for geometry columns in tables owned by other users - + @@ -45622,7 +45871,7 @@ Description: %2 &Build Query - + @@ -45670,7 +45919,7 @@ Description: %2 Line Interpretation - + @@ -45692,7 +45941,7 @@ Description: %2 Confirm Delete - + @@ -45707,7 +45956,7 @@ Description: %2 Failed to load interface - + @@ -45720,7 +45969,7 @@ Description: %2 SQL Anywhere error code: %2 Description: %3 - + @@ -45730,17 +45979,17 @@ Description: %3 Database connection was successful, but no tables containing geometry columns were %1. - + found - + found in your schema - + @@ -45748,17 +45997,17 @@ Description: %3 Add SQL Anywhere layer - + SQL Anywhere Connections - + Delete - + @@ -45782,7 +46031,7 @@ Description: %3 Search options - + @@ -45792,12 +46041,12 @@ Description: %3 Search mode - + Search in columns - + @@ -45866,6 +46115,56 @@ Description: %3 + + SettingsDialog + + + Tab 1 + Tab 1 + + + + Use preloaded API file + + + + + Font + Typsnitt + + + + Size + Storlek + + + + API file + + + + + Browse + Bläddra + + + + Tab 2 + Tab 2 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Aurulent Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Python Console for QGIS</span></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Developed by Salvatore Larosa</span></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">---------------------------</span></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.</span></p></body></html> + + + SextanteToolbox @@ -46237,37 +46536,37 @@ additional algorithm providers Formulär - + Font family Typsnittsfamilj - + Color Färg - + Change Ändra - + Size Storlek - + Rotation Rotation - + ° ° - + Offset X,Y Offset X,Y @@ -46280,17 +46579,17 @@ additional algorithm providers Formulär - + Color Färg - + Change Ändra - + Pen width Pennbredd @@ -46303,38 +46602,36 @@ additional algorithm providers Formulär - + Angle Vinkel - + Distance Avstånd - + Line width Linjebredd - + Color Färg - - + Change Ändra - Outline - Kontur + Kontur - + Offset @@ -46403,22 +46700,22 @@ additional algorithm providers Ändra - + Horizontal distance Horisontellt avstånd - + Vertical distance Vertikalt avstånd - + Horizontal displacement Horisontell förkjutning - + Vertical displacement Vertikal förskjutning @@ -46431,54 +46728,52 @@ additional algorithm providers Formulär - + Texture width Texturbredd - + Rotation Rotation - + Color Färg - + Border color Kantfärg - + Border width Kantbredd - Outline - Kontur + Kontur - - - + + Change Ändra - + SVG Groups SVG-grupper - + SVG Symbols SVG-symboler - + ... ... @@ -46491,38 +46786,38 @@ additional algorithm providers Formulär - + Color Färg - + Fill style Fyllnadsstil - + Border color Kantfärg - + Border style Kantstil - + Border width Kantbredd - + Offset X,Y Offset X,Y - - + + Change Ändra @@ -46535,43 +46830,43 @@ additional algorithm providers Formulär - + Color Färg - + Pen width Pennbredd - + Offset Offset - + Pen style Pennstil - + Join style Ihopslagningsstil - + Cap style - + - - + + Change Ändra - + Use custom dash pattern Använd valbar streckning @@ -46584,33 +46879,33 @@ additional algorithm providers Formulär - + Border color Kantfärg - + Fill color Fyllnadsfärg - + Size Storlek - + Angle Vinkel - + Offset X,Y Offset X,Y - - + + Change Ändra @@ -46628,48 +46923,48 @@ additional algorithm providers Storlek - + Angle Vinkel - + Offset X,Y Offset X,Y - - + + Change Ändra - + Color Färg - + Border width Kantbredd - + Border color Kantfärg - + SVG Groups SVG-grupper - + SVG Image SVG-bild - + ... ... @@ -46934,12 +47229,12 @@ For support send a mail to scala@itc.cnr.it Undefined - + No predefined queries loaded - + @@ -46948,57 +47243,57 @@ For support send a mail to scala@itc.cnr.it Open File - + New Database connection requested... - + Error: You must select a database type - + Error: No host name entered - + Error: No database name entered - + Connection to [%1.%2] established - + Connection to [%1.%2] failed: %3 - + Error: Unabled to open file [%1] - + Error: Query failed: %1 - + Error: Could not create temporary file, process halted - + connected - + uppkopplad @@ -47008,12 +47303,12 @@ For support send a mail to scala@itc.cnr.it Error: Parse error at line %1, column %2: %3 - + Error: A database connection is not currently established - + @@ -47022,37 +47317,37 @@ For support send a mail to scala@itc.cnr.it Database Connection - + Load predefined queries - + Loads an XML file with predefined queries. Use the Open File window to locate the XML file that contains one or more predefined queries using the format described in the user guide. - + The description of the selected query. - + Predefined Queries - + Select the predefined query you want to use from the drop-down list containing queries identified from the file loaded using the Open File icon above. To run the query you need to click on the SQL Query tab. The query will be automatically entered in the query window. - + not connected - + @@ -47060,27 +47355,27 @@ For support send a mail to scala@itc.cnr.it p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Connection Status: </span></p></body></html> - + Database Host - + Enter the database host. If the database resides on your desktop you should enter ¨localhost¨. If you selected ¨MSAccess¨ as the database type this option will not be available. - + Password to access the database. - + Enter the name of the database. - + @@ -47090,12 +47385,12 @@ p, li { white-space: pre-wrap; } Enter the port through which the database must be accessed if a MYSQL database is used. - + Connect to the database using the parameters selected above. If the connection was successful a message will be displayed in the Output Console below saying the connection was established. - + @@ -47105,17 +47400,17 @@ p, li { white-space: pre-wrap; } User name to access the database. - + Select the type of database from the list of supported databases in the drop-down menu. - + Database Name - + @@ -47125,7 +47420,7 @@ p, li { white-space: pre-wrap; } Database Type - + @@ -47135,32 +47430,32 @@ p, li { white-space: pre-wrap; } SQL Query - + Run the query entered above. The status of the query will be displayed in the Output Console below. - + Run Query - + Enter the query you want to run in this window. - + A window for status messages to be displayed. - + Output Console - + @@ -47168,22 +47463,22 @@ p, li { white-space: pre-wrap; } Database File Selection - + The name of the field that contains the Y coordinate of the points. - + The name of the field that contains the X coordinate of the points. - + Enter the name for the new layer that will be created and displayed in QGIS. - + @@ -47198,7 +47493,7 @@ p, li { white-space: pre-wrap; } Name of New Layer - + @@ -47206,7 +47501,7 @@ p, li { white-space: pre-wrap; } Generic Event Browser - + @@ -47247,38 +47542,38 @@ p, li { white-space: pre-wrap; } Unable to connect to either the map canvas or application interface - + An invalid feature was received during initialization - + Event Browser - Displaying records 01 of %1 - + Event Browser - Displaying records %1 of %2 - + Attribute Contents - + Select Application - + All ( * ) - + @@ -47291,7 +47586,7 @@ p, li { white-space: pre-wrap; } Use the Previous button to display the previous photo when more than one photo is available for display. - + @@ -47301,17 +47596,17 @@ p, li { white-space: pre-wrap; } Use the Next button to display the next photo when more than one photo is available for display. - + Next - + All of the attribute information for the point associated with the photo being viewed is displayed here. If the file type being referenced in the displayed record is not an image but is of a file type defined in the “Configure External Applications” tab then when you double-click on the value of the field containing the path to the file the application to open the file will be launched to view or hear the contents of the file. If the file extension is recognized the attribute data will be displayed in green. - + @@ -47321,12 +47616,12 @@ p, li { white-space: pre-wrap; } Image display area - + Display area for the image. - + @@ -47336,17 +47631,17 @@ p, li { white-space: pre-wrap; } Use the drop-down list to select the field containing a directory path to the image. This can be an absolute or relative path. - + If checked the path to the image will be defined appending the attribute in the field selected from the “Attribute Containing Path to Image” drop-down list to the “Base Path” defined below. - + If checked, the relative path values will be saved for the next session. - + @@ -47356,53 +47651,53 @@ p, li { white-space: pre-wrap; } Reset to default - + Resets the values on this line to the default setting. - + If checked an arrow pointing in the direction defined by the attribute in the field selected from the drop-down list to the right will be displayed in the QGIS window on top of the point for this image. - + Use the drop-down list to select the field containing the compass bearing for the image. This bearing usually references the direction the camera was pointing when the image was acquired. - + If checked, the Display Compass Bearing values will be saved for the next session. - + A value to be added to the compass bearing. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values. - + Define the compass offset using a field from the vector layer attribute table. - + From Attribute - + Use the drop-down list to select the field containing the compass bearing offset. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values. - + Define the compass offset manually. - + @@ -47412,53 +47707,53 @@ p, li { white-space: pre-wrap; } If checked, the compass offset values will be saved for the next session. - + Resets the compass offset values to the default settings. - + The base path or url from which images and documents can be “relative” - + Base Path - + Enters the default “Base Path” which is the path to the directory of the vector layer containing the image information. - + If checked, the same path rules that are defined for images will be used for non-image documents such as movies, text documents, and sound files. If not checked the path rules will only apply to images and other documents will ignore the Base Path parameter. - + The Base Path onto which the relative path defined above will be appended. - + File path - + Attribute containing path to file - + Path is relative - + @@ -47468,7 +47763,7 @@ p, li { white-space: pre-wrap; } Remember this - + @@ -47478,105 +47773,105 @@ p, li { white-space: pre-wrap; } Reset - + Compass bearing - + Attribute containing compass bearing - + Display compass bearing - + Compass offset - + Relative paths - + If checked, the Base Path will be saved for the next session. - + If checked, the Base Path will append only the file name instead of the entire relative path (defined above) to create the full directory path to the file. - + Replace entire path/url stored in image path attribute with user defined Base Path (i.e. keep only filename from attribute) - + If checked, the current check-box setting will be saved for the next session. - + Clears the check-box on this line. - + Apply Path to Image rules when loading docs in external applications - + Clicking on Save will save the settings without closing the Options pane. Clicking on Restore Defaults will reset all of the fields to their default settings. It has the same effect as clicking all of the “Reset to default” buttons. - + Configure External Applications - + File extension and external application in which to load a document of that type - + A table containing file types that can be opened using eVis. Each file type needs a file extension and the path to an application that can open that type of file. This provides the capability of opening a broad range of files such as movies, sound recording, and text documents instead of only images. - + Extension - + Application - + Applikation Add new file type - + Add a new file type with a unique extension and the path for the application that can open the file. - + @@ -47586,7 +47881,7 @@ Base Path (i.e. keep only filename from attribute) Delete the file type highlighted in the table and defined by a file extension and a path to an associated application. - + @@ -47599,7 +47894,7 @@ Base Path (i.e. keep only filename from attribute) Zoom in to see more detail. - + @@ -47609,7 +47904,7 @@ Base Path (i.e. keep only filename from attribute) Zoom out to see more area. - + @@ -47619,7 +47914,7 @@ Base Path (i.e. keep only filename from attribute) Zoom to display the entire image. - + @@ -47636,7 +47931,7 @@ Insticksprogrammet stängs av. Create spatial index - + Skapa spatialt index &Analysis Tools @@ -47764,7 +48059,7 @@ Insticksprogrammet stängs av. Voronoi Polygons - + Extract nodes @@ -47776,7 +48071,7 @@ Insticksprogrammet stängs av. Densify geometries - + Multipart to singleparts @@ -47792,7 +48087,7 @@ Insticksprogrammet stängs av. Lines to polygons - + &Data Management Tools @@ -47820,7 +48115,7 @@ Insticksprogrammet stängs av. Merge shapefiles to one - + fTools Information @@ -47835,23 +48130,23 @@ Insticksprogrammet stängs av. Polygon area - + Polygon perimeter - + Line length - + Point x coordinate - + Point y coordinate - + @@ -47859,67 +48154,67 @@ Insticksprogrammet stängs av. (1-256) - + (Optional) column to read labels - + 3D-Viewer (NVIZ) - + 3d Visualization - + Add a value to the current category values - + Add elements to layer (ALL elements of the selected layer type!) - + Add missing centroids to closed boundaries - + Add one or more columns to attribute table - + Allocate network - + Assign constant value to column - + Assign new constant value to column only if the result of query is TRUE - + Assign new value as result of operation on columns to column in attribute table - + Assign new value to column as result of operation on columns only if the result of query is TRUE - + @@ -47929,57 +48224,57 @@ Insticksprogrammet stängs av. Attribute field (interpolated values) - + Attribute field to (over)write - + Attribute field to join - + Auto-balancing of colors for LANDSAT-TM raster - + Bicubic or bilinear spline interpolation with Tykhonov regularization - + Bilinear interpolation utility for raster maps - + Blend color components for two rasters by given ratio - + Blend red, green, raster layers to obtain one color raster - + Break (topologically clean) polygons (imported from non topological format, like ShapeFile). Boundaries are broken on each point shared between 2 and more polygons where angles of segments are different - + Break lines at each intersection of vector - + Brovey transform to merge multispectral and high-res panchromatic channels - + @@ -47989,527 +48284,527 @@ Insticksprogrammet stängs av. Build polylines from lines - + Calculate average of raster within areas with the same category in a user-defined base map - + Calculate covariance/correlation matrix for user-defined rasters - + Calculate error matrix and kappa parameter for accuracy assessment of classification result - + Calculate geometry statistics for vectors - + Calculate linear regression from two rasters: y = a + b*x - + Calculate median of raster within areas with the same category in a user-defined base map - + Calculate mode of raster within areas with the same category in a user-defined base map - + Calculate optimal index factor table for LANDSAT-TM raster - + Calculate raster surface area - + Calculate shadow maps from exact sun position - + Calculate shadow maps from sun position determinated by date/time - + Calculate statistics for raster - + Calculate univariate statistics for numeric attributes in a data table - + Calculate univariate statistics from raster based on vector objects - + Calculate univariate statistics from the non-null cells of raster - + Calculate univariate statistics of vector map features - + Calculate volume of data clumps, and create vector with centroids of clumps - + Category or object oriented statistics - + Cats - + Cats (select from the map or using their id) - + Change category values and labels - + Change field - + Change layer number - + Change resolution - + Change the type of boundary dangle to line - + Change the type of bridges connecting area and island or 2 islands from boundary to line - + Change the type of geometry elements - + Choose appropriate format - + Columns management - + Compares bit patterns with raster - + Compress and decompress raster - + Compress raster - + Computes a coordinate transformation based on the control points - + Concentric circles - + Connect nodes by shortest route (traveling salesman) - + Connect selected nodes by shortest tree (Steiner tree) - + Connect vector to database - + Convert 2D vector to 3D by sampling raster - + Convert 2D vector to 3D vector by sampling of elevation raster. Default sampling by nearest neighbour - + Convert GRASS binary vector to GRASS ASCII vector - + Convert a raster to vector within GRASS - + Convert a vector to raster within GRASS - + Convert bearing and distance measurements to coordinates and vice versa - + Convert boundaries to lines - + Convert centroids to points - + Convert coordinates - + Convert coordinates from one projection to another (cs2cs frontend) - + Convert lines to boundaries - + Convert points to centroids - + Convert raster to vector areas - + Convert raster to vector lines - + Convert raster to vector points - + Convert vector to raster using attribute values - + Convert vector to raster using constant - + Convex hull - + Copy a table - + Copy also attribute table (only the table of layer 1 is currently supported) - + Count of neighbouring points - + Create 3D volume map based on 2D elevation and value rasters - + Create a MASK for limiting raster operation - + Create a map containing concentric rings - + Create a raster plane - + Create and add new table to vector - + Create and/or modify raster support files - + Create aspect raster from DEM (digital elevation model) - + Create cross product of category values from multiple rasters - + Create fractal surface of given fractal dimension - + Create grid in current region - + Create new GRASS location and transfer data into it - + Create new GRASS location from metadata file - + Create new GRASS location from raster data - + Create new GRASS location from vector data - + Create new layer with category values based upon user's reclassification of categories in existing raster - + Create new location from .prj (WKT) file - + Create new raster by combining other rasters - + Create new vector by combining other vectors - + Create new vector with current region extent - + Create nodes on network - + Create parallel line to input lines - + Create points - + Create points along input lines - + Create points/segments from input vector lines and positions - + Create quantization file for floating-point raster - + Create random 2D/3D vector points - + Create random cell values with spatial dependence - + Create random points - + Create random vector point contained in raster - + Create raster images with textural features from raster (first serie of indices) - + Create raster of distance to features in input layer - + Create raster of gaussian deviates with user-defined mean and standard deviation - + Create raster of uniform random deviates with user-defined range - + Create raster with contiguous areas grown by one cell - + Create raster with textural features from raster (second serie of indices) - + Create red, green and blue rasters combining hue, intensity, and saturation (his) values from rasters - + Create shaded map - + Create slope raster from DEM (digital elevation model) - + Create standard vectors - + Create surface from rasterized contours - + Create vector contour from raster at specified levels - + Create vector contour from raster at specified steps - + Create watershed basin - + Create watershed subbasins raster - + Cut network by cost isolines - + DXF vector layer - + @@ -48519,452 +48814,452 @@ Insticksprogrammet stängs av. Database connection - + Database file - + Database management - + Delaunay triangulation (areas) - + Delaunay triangulation (lines) - + Delaunay triangulation, Voronoi diagram and convex hull - + Delete category values - + Develop images and group - + Develop map - + Directory of rasters to be linked - + Disconnect vector from database - + Display general DB connection - + Display list of category values found in raster - + Display projection information from PROJ.4 projection description file - + Display projection information from PROJ.4 projection description file and create a new location based on it - + Display projection information from a georeferenced file (raster, vector or image) and create a new location based on it - + Display projection information from georeferenced ASCII file containing WKT projection description - + Display projection information from georeferenced ASCII file containing WKT projection description and create a new location based on it - + Display projection information from georeferenced file (raster, vector or image) - + Display projection information of the current location - + Display raster category values and labels - + Display results of SQL selection from database - + Display the HTML manual pages of GRASS - + Display vector attributes - + Display vector map attributes with SQL - + Dissolves boundaries between adjacent areas sharing a common category number or attribute - + Download and import data from WMS server - + Drop column from attribute table - + E00 vector layer - + Elevation raster for height extraction (optional) - + Execute any SQL statement - + Export 3 GRASS rasters (R,G,B) to PPM image at the resolution of the current region - + Export from GRASS - + Export raster as non-georeferenced PNG image format - + Export raster from GRASS - + Export raster series to MPEG movie - + Export raster to 8/24bit TIFF image at the resolution of the current region - + Export raster to ASCII text file - + Export raster to ESRI ARCGRID - + Export raster to GRIDATB.FOR map file (TOPMODEL) - + Export raster to Geo TIFF - + Export raster to POVRAY height-field file - + Export raster to PPM image at the resolution of the current region - + Export raster to VTK-ASCII - + Export raster to Virtual Reality Modeling Language (VRML) - + Export raster to binary MAT-File - + Export raster to binary array - + Export raster to text file as x,y,z values based on cell centers - + Export raster to various formats (GDAL library) - + Export vector from GRASS - + Export vector table from GRASS to database format - + Export vector to DXF - + Export vector to GML - + Export vector to Mapinfo - + Export vector to POV-Ray - + Export vector to PostGIS (PostgreSQL) database table - + Export vector to SVG - + Export vector to Shapefile - + Export vector to VTK-ASCII - + Export vector to various formats (OGR library) - + Exports attribute tables into various format - + Extract features from vector - + Extract selected features - + Extracts terrain parameters from DEM - + Extrudes flat vector object to 3D with fixed height - + Extrudes flat vector object to 3D with height based on attribute - + Fast fourier transform for image processing - + Feature type (for polygons, choose Boundary) - + File management - + Fill lake from seed at given level - + Fill lake from seed point at given level - + Fill no-data areas in raster using v.surf.rst splines interpolation - + Filter and create depressionless elevation map and flow direction map from elevation raster - + Filter image - + Find nearest element in vector 'to' for elements in vector 'from'. Various information about this relation may be uploaded to attribute table of input vector 'from' - + Find shortest path on vector network - + GRASS MODULES - + GRASS shell - + Gaussian kernel density - + Generalization - + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) coordinates - + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) raster - + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) vector - + Generate raster of cumulative cost of moving between locations, based on elevation and friction input rasters and starting point(s) coordinates - + Generate raster of cumulative cost of moving between locations, based on elevation and friction input rasters and starting point(s) vector - + Generate surface - + Generate vector contour lines - + Generates area statistics for rasters - + Georeferencing, rectification, and import Terra-ASTER imagery and DEM using gdalwarp - + Graphical raster map calculator - + @@ -48974,17 +49269,17 @@ Insticksprogrammet stängs av. Hue Intensity Saturation (HIS) to Red Green Blue (RGB) raster color transform function - + Hydrologic modelling - + Imagery - + Import @@ -48993,372 +49288,372 @@ Insticksprogrammet stängs av. Import ASCII raster - + Import DXF vector - + Import ESRI ARC/INFO ASCII GRID - + Import ESRI E00 vector - + Import GDAL supported raster - + Import GDAL supported raster and create a fitted location - + Import GRIDATB.FOR (TOPMODEL) - + Import MapGen or MatLab vector - + Import OGR vector - + Import OGR vector and create a fitted location - + Import OGR vectors in a given data source combining them in a GRASS vector - + Import SPOT VGT NDVI - + Import SRTM HGT - + Import US-NGA GEOnet Names Server (GNS) country file - + Import all OGR/PostGIS vectors in a given data source and create a fitted location - + Import attribute tables in various formats - + Import binary MAT-File(v4) - + Import binary raster - + Import from database into GRASS - + Import geonames.org country files - + Import into GRASS - + Import loaded raster - + Import loaded raster and create a fitted location - + Import loaded vector - + Import loaded vector and create a fitted location - + Import only some layers of a DXF vector - + Import raster from ASCII polygon/line - + Import raster from coordinates using univariate statistics - + Import raster into GRASS - + Import raster into GRASS from QGIS view - + Import raster into GRASS from external data sources in GRASS - + Import text file - + Import vector from gps using gpsbabel - + Import vector from gps using gpstrans - + Import vector into GRASS - + Import vector points from database table containing coordinates - + Input nodes - + Input table - + Interpolate surface - + Inverse distance squared weighting raster interpolation - + Inverse distance squared weighting raster interpolation based on vector points - + Inverse fast fourier transform for image processing - + Join table to existing vector table - + Layers categories management - + Line-of-sight raster analysis - + Link GDAL supported raster as GRASS raster - + Link GDAL supported raster loaded in QGIS as GRASS raster - + Link all GDAL supported rasters in a directory as GRASS rasters - + Loaded layer - + Locate the closest points between objects in two raster maps - + Make each output cell function of the values assigned to the corresponding cells in the input rasters - + Manage features - + Manage image colors - + Manage map colors - + Manage raster cells value - + Manage training dataset - + Map algebra - + Map type conversion - + MapGen or MatLab vector layer - + Mask - + Maximal tolerance value (higher value=more simplification) - + Metadata support - + Minimum size for each basin (number of cells) - + Mosaic up to 4 images - + Name for new raster file (specify file extension) - + Name for new vector file (specify file extension) - + Name for output vector map (optional) - + Name for the output raster map (optional) - + Neighborhood analysis - + Network analysis - + Network maintenance - + Number of rows to be skipped - + Others - + Output GML file - + @@ -49368,12 +49663,12 @@ Insticksprogrammet stängs av. Output layer name (used in GML file) - + Output raster values along user-defined transect line(s) - + @@ -49383,72 +49678,72 @@ Insticksprogrammet stängs av. Overlay maps - + Path to GRASS database of input location (optional) - + Path to the OGR data source - + Percentage of first layer (0-99) - + Perform affine transformation (shift, scale and rotate, or GPCs) on vector - + Print projection information from a georeferenced file - + Print projection information from a georeferenced file and create a new location based on it - + Print projection information of the current location - + Projection conversion of vector - + Projection management - + Put geometry variables in database - + Query rasters on their category values and labels - + Random location perturbations of vector points - + Randomly partition points into test/train sets - + @@ -49458,372 +49753,372 @@ Insticksprogrammet stängs av. Raster buffer - + Raster file matrix filter - + Raster neighbours analysis - + Raster support - + Re-project raster from a location to the current location - + Rebuild topology of a vector in mapset - + Rebuild topology of all vectors in mapset - + Recategorize contiguous cells to unique categories - + Reclass category values - + Reclass category values using a column attribute (integer positive) - + Reclass category values using a rules file - + Reclass raster using reclassification rules - + Reclass raster with patches larger than user-defined area size (in hectares) - + Reclass raster with patches smaller than user-defined area size (in hectares) - + Reclassify raster greater or less than user-defined area size (in hectares) - + Recode categorical raster using reclassification rules - + Recode raster - + Reconnect vector to a new database - + Red Green Blue (RGB) to Hue Intensity Saturation (HIS) raster color transformation function - + Region settings - + Register external data sources in GRASS - + Regularized spline with tension raster interpolation based on vector points - + Reinterpolate and compute topographic analysis using regularized spline with tension and smoothing - + Remove all lines or boundaries of zero length - + Remove bridges connecting area and island or 2 islands - + Remove dangles - + Remove duplicate area centroids - + Remove duplicate lines (pay attention to categories!) - + Remove existing attribute table of vector - + Remove outliers from vector point data - + Remove small angles between lines at nodes - + Remove small areas, the longest boundary with adjacent area is removed - + Remove vertices in threshold from lines and boundaries, boundary is pruned only if topology is not damaged (new intersection, changed attachement of centroid), first and last segment of the boundary is never changed - + Rename column in attribute table - + Reports - + Reports and statistics - + Reproject raster from another Location - + Reproject vector from another Location - + Resample raster using aggregation - + Resample raster using interpolation - + Resample raster. Set new resolution first - + Rescale the range of category values in raster - + Sample raster at site locations - + Save the current region as a named region - + Select features by attributes - + Select features overlapped by features in another map - + Separator (| , etc.) - + Set PostgreSQL DB connection - + Set boundary definitions by edge (n-s-e-w) - + Set boundary definitions for raster - + Set boundary definitions from raster - + Set boundary definitions from vector - + Set boundary definitions to current or default region - + Set color rules based on stddev from a map's mean value - + Set general DB connection - + Set general DB connection with a schema (PostgreSQL only) - + Set raster color table - + Set raster color table from existing raster - + Set raster color table from setted tables - + Set raster color table from user-defined rules - + Set region to align to raster - + Set the region to match multiple rasters - + Set the region to match multiple vectors - + Set user/password for driver/database - + Sets the boundary definitions for a raster map - + Show database connection for vector - + Shrink current region until it meets non-NULL data from raster - + Simple map algebra - + Simplify vector - + Snap lines to vertex in threshold - + Solar and irradiation model - + Spatial analysis - + Spatial models - + Split lines to shorter segments - + @@ -49833,132 +50128,132 @@ Insticksprogrammet stängs av. Sum raster cell values - + Surface management - + Tables management - + Tabulate mutual occurrence (coincidence) of categories for two rasters - + Take vector stream data, transform it to raster, and subtract depth from the output DEM - + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 4 raster - + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 5 raster - + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 7 raster - + Tassled cap vegetation index - + Terrain analysis - + Tests of normality on vector points - + Text file - + Thin no-zero cells that denote line features - + Toolset for cleaning topology of vector map - + Topology management - + Trace a flow through an elevation model - + Transform cells with value in null cells - + Transform features - + Transform image - + Transform null cells in value cells - + Transform value cells in null cells - + Type in map names separated by a comma - + Update raster statistics - + Update vector map metadata - + Upload raster values at positions of vector points to the table - + Upload vector values at positions of vector points - + @@ -49968,166 +50263,166 @@ Insticksprogrammet stängs av. Vector buffer - + Vector geometry analysis - + Vector intersection - + Vector non-intersection - + Vector subtraction - + Vector union - + Vector update by other maps - + Visibility graph construction - + Voronoi diagram (area) - + Voronoi diagram (lines) - + Watershed Analysis - + Which column for the X coordinate? The first is 1 - + Which column for the Y coordinate? - + Which column for the Z coordinate? If 0, z coordinate is not used - + Work with vector points - + Write only features link to a record - + Zero-crossing edge detection raster function for image processing - + visualThread Max. len: - + Min. len: - + Mean. len: - + Filled: - + Empty: - + N: - + Mean: - + StdDev: - + Sum: - + Min: - + Max: - + CV: - + Number of unique values: - + Range: - + Median: - + Observed mean distance: - + Expected mean distance: - + Nearest neighbour index: - + Z-Score: - + Feature %1 contains an unnested hole diff --git a/i18n/qgis_sw.ts b/i18n/qgis_sw.ts new file mode 100644 index 000000000000..3d64ccd42cf6 --- /dev/null +++ b/i18n/qgis_sw.ts @@ -0,0 +1,46668 @@ + + + + + CharacterWidget + + + <p>Character: <span style="font-size: 24pt; font-family: %1%2</span><p>Value: 0x%3"> + + + + + CoordinateCapture + + + + Coordinate Capture + + + + + + Click on the map to view coordinates and capture to clipboard. + + + + + &Coordinate Capture + + + + + Click to select the CRS to use for coordinate display + + + + + Coordinate in your selected CRS (lat,lon or east,north) + + + + + Coordinate in map canvas coordinate reference system (lat,lon or east,north) + + + + + Copy to clipboard + + + + + Click to enable mouse tracking. Click the canvas to stop + + + + + Start capture + + + + + Click to enable coordinate capture + + + + + Dialog + + + Eliminate sliver polygons + + + + + area + + + + + Selected features: + + + + + + + + + Input vector layer + + + + + common boundary + + + + + Merge selection with the neighbouring polygon with the largest + + + + + + Save to new file + + + + + + + + + + + + + + + + + + + + + Browse + + + + + + Add result to canvas + + + + + Extract Nodes + + + + + Input line or polygon vector layer + + + + + + + Unique ID field + + + + + Save to new shapefile + + + + + Output point shapefile + + + + + Tolerance + + + + + Calculate using + + + + + Calculate extent for each feature separately + + + + + + + + + Use only selected features + + + + + Geoprocessing + + + + + Intersect layer + + + + + Buffer distance + + + + + Buffer distance field + + + + + Dissolve field + + + + + Dissolve buffer results + + + + + + + + Output shapefile + + + + + Segments to approximate + + + + + Locate Line Intersections + + + + + Input line layer + + + + + + Input unique ID field + + + + + Intersect line layer + + + + + Intersect unique ID field + + + + + + + + + + + Output Shapefile + + + + + Generate Centroids + + + + + Weight field + + + + + Number of standard deviations + + + + + Std. Dev. + + + + + Merge shapefiles + + + + + Select by layers in the folder + + + + + Shapefile type + + + + + Polygon + + + + + Line + + + + + Point + + + + + Input directory + + + + + Add result to map canvas + + + + + Create Distance Matrix + + + + + Input point layer + + + + + Target point layer + + + + + Target unique ID field + + + + + Output matrix type + + + + + Linear (N*k x 3) distance matrix + + + + + Standard (N x T) distance matrix + + + + + Summary distance matrix (mean, std. dev., min, max) + + + + + Use only the nearest (k) target points + + + + + Output distance matrix + + + + + Count Points In Polygons + + + + + + Input polygon vector layer + + + + + Input point vector layer + + + + + Output count field name + + + + + PNTCNT + + + + + Generate Random Points + + + + + + Input Boundary Layer + + + + + Sample Size + + + + + Unstratified Sampling Design (Entire layer) + + + + + + + Use this number of points + + + + + Stratified Sampling Design (Individual polygons) + + + + + Use this density of points + + + + + Use value from input field + + + + + Random Selection Tool + + + + + + + Input Vector Layer + + + + + + Randomly Select + + + + + + Number of Features + + + + + + Percentage of Features + + + + + + % + + + + + Projection Management Tool + + + + + Input spatial reference system + + + + + Output spatial reference system + + + + + Use predefined spatial reference system + + + + + Choose + + + + + Import spatial reference system from existing layer + + + + + Import spatial reference system + + + + + Generate Regular Points + + + + + Area + + + + + Input Coordinates + + + + + + X Min + + + + + + Y Min + + + + + + X Max + + + + + + Y Max + + + + + Grid Spacing + + + + + Use this point spacing + + + + + Apply random offset to point spacing + + + + + Initial inset from corner (LH side) + + + + + Simplify geometries + + + + + Input line or polygon layer + + + + + Simplify tolerance + + + + + Build spatial index + + + + + Select files from disk + + + + + Select files... + + + + + Select all + + + + + Select none + + + + + Clear list + + + + + Spatial Join + + + + + Target vector layer + + + + + Join vector layer + + + + + Attribute Summary + + + + + Mean + + + + + Take summary of intersecting features + + + + + Min + + + + + Sum + + + + + Median + + + + + Max + + + + + Take attributes of first located feature + + + + + Output table + + + + + Only keep matching records + + + + + Keep all records (including non-matching target records) + + + + + Random Selection From Within Subsets + + + + + Input subset field (unique ID field) + + + + + Sum Line Length In Polygons + + + + + Output summed length field name + + + + + LENGTH + + + + + Input line vector layer + + + + + Generate Vector Grid + + + + + Grid extent + + + + + Update extents from layer + + + + + Update extents from canvas + + + + + Align extents and resolution to selected raster layer + + + + + Parameters + + + + + X + + + + + Lock 1:1 ratio + + + + + Y + + + + + Output grid as polygons + + + + + Output grid as lines + + + + + Vector Split + + + + + Output folder + + + + + List Unique Values + + + + + Target field + + + + + Unique values list + + + + + Unique value count + + + + + Press Ctrl+C to copy results to the clipboard + + + + Regular points + + + + Please specify input layer + + + + Please properly specify extent coordinates + + + + Please specify output shapefile + + + + Created output point shapefile: +%1 + +Would you like to add the new layer to the TOC? + + + + creating new selection + + + + adding to current selection + + + + removing from current selection + + + + Select by location + + + + Select features in: + + + + that intersect features in: + + + + Modify current selection by: + + + + Use selected features only + + + + Please specify select layer + + + + Select directory with shapefiles to merge + + + + No shapefiles found + + + + There are no shapefiles in this directory. Please select another one. + + + + Input files + + + + No output file + + + + Please specify output file. + + + + Delete error + + + + Can't delete file %1 + + + + Cancel + + + + Merging + + + + Error loading output shapefile: +%1 + + + + Close + + + + Sum line lengths + + + + Sum Line Lengths In Polyons + + + + Please specify input polygon vector layer + + + + Please specify input line vector layer + + + + Please specify output length field + + + + Created output shapefile: +%1 + +Would you like to add the new layer to the TOC? + + + + CRS warning! + + + + Warning: Input layers have non-matching CRS. +This may cause unexpected results. + + + + length field + + + + Random selection within subsets + + + + Please specify input vector layer + + + + Please specify an input field + + + + Distance matrix + + + + Create Point Distance Matrix + + + + Please specify input point layer + + + + Please specify output file + + + + Please specify target point layer + + + + Please specify input unique ID field + + + + Please specify target unique ID field + + + + Created output matrix: + + + + + Define current projection + + + + Missing or invalid CRS + + + + No input shapefile specified + + + + Please specify spatial reference system + + + + Cannot define projection for PostGIS data...yet! + + + + Identical output spatial reference system chosen + +Are you sure you want to proceed? + + + + Output spatial reference system is not valid + + + + Defined Projection For: +%1.shp + + + + Please select the projection system that defines the current layer. + + + + Layer CRS information will be updated to the selected CRS. + + + + Export to new projection + + + + No Valid CRS selected + + + + Count Points in Polygon + + + + Count Points In Polygon + + + + Please specify input point vector layer + + + + Please specify output count field + + + + Random Points + + + + No input layer specified + + + + unstratified + + + + stratified + + + + density + + + + field + + + + Unknown layer type... + + + + Mean coordinates + + + + Standard distance + + + + (Optional) Weight field + + + + (Optional) Unique ID field + + + + Coordinate statistics + + + + No input vector layer specified + + + + Selected features: %1 + + + + Eliminate + + + + No selection in input layer + + + + Error creating output file + + + + Could not replace geometry of feature with id + + + + Could not delete feature with id + + + + Commit error + + + + Commit Error + + + + Created output shapefile: +%1 + + + + Could not eliminate features with these ids: +%1 + + + + Line intersections + + + + Please specify input line layer + + + + Please specify line intersect layer + + + + Please specify intersect unique ID field + + + + Random selection + + + + Densify geometries + + + + Vertices to add + + + + Warning + + + + Currently QGIS doesn't allow simultaneous access from + different threads to the same datasource. Make sure your layer's + attribute tables are closed. Continue? + + + + Simplify results + + + + There were %1 vertices in original dataset which +were reduced to %2 vertices after simplification + + + + Error + + + + Finished + + + + Processing completed. + + + + Join attributes by location + + + + Please specify target vector layer + + + + Please specify join vector layer + + + + Please specify at least one summary statistic + + + + Summary field + + + + Incorrect field names + + + + No output will be created. +Following field names are longer than 10 characters: +%1 + + + + Error deleting shapefile + + + + Can't delete existing shapefile +%1 + + + + Vector grid + + + + Please select a raster layer + + + + Unable to compute extents aligned on selected raster layer + + + + Please specify valid extent coordinates + + + + Invalid extent coordinates entered + + + + Split vector layer + + + + Created output shapefiles in folder: +%1 + + + + + DlgAddGeometryColumn + + + Dialog + + + + + Name + + + + + geom + + + + + Type + + + + + POINT + + + + + LINESTRING + + + + + POLYGON + + + + + MULTIPOINT + + + + + MULTILINESTRING + + + + + MULTIPOLYGON + + + + + GEOMETRYCOLLECTION + + + + + Dimensions + + + + + SRID + + + + + -1 + + + + + DlgCreateConstraint + + + Add constraint + + + + + Column + + + + + Primary key + + + + + Unique + + + + + DlgCreateIndex + + + Create index + + + + + Column + + + + + Name + + + + + DlgCreateTable + + + Create Table + + + + + Schema + + + + + + Name + + + + + Add field + + + + + Delete field + + + + + Up + + + + + Down + + + + + Primary key + + + + + Create geometry column + + + + + POINT + + + + + LINESTRING + + + + + POLYGON + + + + + MULTIPOINT + + + + + MULTILINESTRING + + + + + MULTIPOLYGON + + + + + GEOMETRYCOLLECTION + + + + + geom + + + + + Dimensions + + + + + SRID + + + + + -1 + + + + + Create spatial index + + + + + DlgDbError + + + Database Error + + + + + An error occured: + + + + + An error occured when executing a query: + + + + + Query: + + + + + DlgFieldProperties + + + Field properties + + + + + Name + + + + + Type + + + + + Can be NULL + + + + + Default value + + + + + Length + + + + + DlgImportVector + + + Import vector layer + + + + + Schema: + + + + + Table: + + + + + Action + + + + + Create new table + + + + + Drop existing one + + + + + Append data into table + + + + + Options + + + + + Primary key: + + + + + Geometry column: + + + + + Source SRID: + + + + + Target SRID: + + + + + Encoding: + + + + + Create single-part geometries instead of multi-part + + + + + Create spatial index + + + + + DlgSqlWindow + + + SQL window + + + + + SQL query: + + + + + &Execute (F5) + + + + + F5 + + + + + &Clear + + + + + Result: + + + + + Load as new layer + + + + + Column with unique +integer values + + + + + Geometry column + + + + + Retrieve +columns + + + + + Layer name (prefix) + + + + + Type + + + + + Vector + + + + + Raster + + + + + Load now! + + + + + <html><head/><body><p>Avoid selecting feature by id. Sometimes - especially when running expensive queries/views - fetching the data sequentially instead of fetching features by id can be much quicker.</p></body></html> + + + + + Avoid selecting by feature id + + + + Sorry + + + + You must fill the required fields: +geometry column - column with unique integer values + + + + + DlgTableProperties + + + Table properties + + + + + Columns + + + + + Table columns: + + + + + Add column + + + + + Add geometry column + + + + + Edit column + + + + + Delete column + + + + + Constraints + + + + + Primary, foreign keys, unique and check constraints: + + + + + Add primary key / unique + + + + + Delete constraint + + + + + Indexes + + + + + Indexes defined for this table: + + + + + Add index + + + + + Add spatial index + + + + + Delete index + + + + + DlgVersioning + + + Add versioning support to a table + + + + + Table is expected to be empty, with a primary key. + + + + + Schema + + + + + Table + + + + + create a view with current content (<TABLE>_current) + + + + + New columns + + + + + Prim. key + + + + + id_hist + + + + + Start time + + + + + time_start + + + + + End time + + + + + time_end + + + + + SQL to be executed: + + + + + GdalTools + + The process failed to start. Either the invoked program is missing, or you may have insufficient permissions to invoke the program. + + + + The process crashed some time after starting successfully. + + + + An unknown error occurred. + + + + &Input directory + + + + &Output directory + + + + The selected file is not a supported OGR format + + + + Plugin error + + + + Unable to load %1 plugin. +The required "%2" module is missing. +Install it and try again. + + + + Quantum GIS version detected: + + + + This version of Gdal Tools requires at least QGIS version 1.0.0 +Plugin will not be enabled. + + + + Projections + + + + Warp (Reproject) + + + + Warp an image into a new coordinate system + + + + Assign projection + + + + Add projection info to the raster + + + + Extract projection + + + + Extract projection information from raster(s) + + + + Conversion + + + + Rasterize (Vector to raster) + + + + Burns vector geometries into a raster + + + + Polygonize (Raster to vector) + + + + Produces a polygon feature layer from a raster + + + + Translate (Convert format) + + + + Converts raster data between different formats + + + + RGB to PCT + + + + Convert a 24bit RGB image to 8bit paletted + + + + PCT to RGB + + + + Convert an 8bit paletted image to 24bit RGB + + + + Extraction + + + + Contour + + + + Builds vector contour lines from a DEM + + + + Clipper + + + + Analysis + + + + Sieve + + + + Removes small raster polygons + + + + Near black + + + + Convert nearly black/white borders to exact value + + + + Fill nodata + + + + Fill raster regions by interpolation from edges + + + + Proximity (Raster distance) + + + + Produces a raster proximity map + + + + Grid (Interpolation) + + + + Create raster from the scattered data + + + + DEM (Terrain models) + + + + Tool to analyze and visualize DEMs + + + + Miscellaneous + + + + Build Virtual Raster (Catalog) + + + + Builds a VRT from a list of datasets + + + + Merge + + + + Build a quick mosaic from a set of images + + + + Information + + + + Lists information about raster dataset + + + + Build overviews (Pyramids) + + + + Builds or rebuilds overview images + + + + Tile index + + + + Build a shapefile as a raster tileindex + + + + GdalTools settings + + + + Various settings for Gdal Tools + + + + + GdalToolsAboutDialog + + + About Gdal Tools + + + + + GDAL Tools + + + + + Version x.x-xxxxxx + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p></body></html> + + + + + Web + + + + + Close + + + + + GdalToolsBaseBatchWidget + + Finished + + + + Operation completed. + + + + Warning + + + + The following files were not created: +%1 + + + + + GdalToolsBaseDialog + + Warning + + + + The command is still running. +Do you want terminate it anyway? + + + + Invalid parameters. + + + + + GdalToolsBasePluginWidget + + Warning + + + + No output file created. + + + + Finished + + + + Processing completed. + + + + %1 not created. + + + + + GdalToolsDialog + + + Dialog + + + + + &Load into canvas when finished + + + + + + Edit + + + + + + Reset + + + + + Extract projection + + + + + Batch mode (for processing whole directory) + + + + + &Input file + + + + + Recurse subdirectories + + + + + Create also prj file + + + + Select the input file for Rasterize + + + + Select the raster file to save the results to + + + + Output size required + + + + The output file doesn't exist. You must set up the output size to create it. + + + + Select the input file for Polygonize + + + + Select where to save the Polygonize output + + + + Select the input file for Contour + + + + Select where to save the Contour output + + + + Select the input file for Translate + + + + Select the input directory with files to Translate + + + + Select the output directory to save the results to + + + + Translate - srcwin + + + + Image coordinates (pixels) must be integer numbers. + + + + Translate - prjwin + + + + Image coordinates (geographic) must be numbers. + + + + Select the input file for convert + + + + Select the input directory with files for convert + + + + Select the files to Merge + + + + Error retrieving the extent + + + + GDAL was unable to retrieve the extent from any file. +The "Use intersected extent" option will be unchecked. + + + + Empty extent + + + + The computed extent is empty. +Disable the "Use intersected extent" option to have a nonempty output. + + + + Select where to save the Merge output + + + + Select the input directory with files to Merge + + + + Select the input file for Sieve + + + + Select the file to analyse + + + + Select the input directory with files to Assign projection + + + + Convert paletted image to RGB + + + + Warning + + + + Warning: CRS information for all raster in subfolders will be rewritten. Are you sure? + + + + Finished + + + + Processing completed. + + + + %1 not created. + + + + Assign projection + + + + This raster already found in map canvas + + + + Select the input file for Grid + + + + Select the input file for Near Black + + + + Select the files for VRT + + + + Select where to save the VRT + + + + VRT (*.vrt) + + + + Select the input directory with files for VRT + + + + Select the input directory with raster files + + + + Select where to save the TileIndex output + + + + Copy + + + + Copy all + + + + Select the input file for Warp + + + + Select the mask file + + + + Select the input directory with files to Warp + + + + Select the files to analyse + + + + Select the input directory with files + + + + Select the file for DEM + + + + Select the color configuration file + + + + Select the input file for Proximity + + + + Select the input file + + + + + GdalToolsExtentSelector + + + Select the extent by drag on canvas + + + + + or change the extent coordinates + + + + + + x + + + + + + y + + + + + 2 + + + + + 1 + + + + + Re-Enable + + + + + GdalToolsInOutSelector + + + Select... + + + + + GdalToolsOptionsTable + + + Name + + + + + Value + + + + + Add + + + + + Remove + + + + + GdalToolsSettingsDialog + + + Gdal Tools settings + + + + + Path to the GDAL executables + + + + + + + + + Browse + + + + + Path to the GDAL python modules + + + + + GDAL help path + + + + + GDAL data path + + + + + GDAL driver path + + + + A list of colon-separated (Linux and MacOS) or +semicolon-separated (Windows) paths to both binaries +and python executables. + +MacOS users usually need to set it to something like +/Library/Frameworks/GDAL.framework/Versions/1.8/Programs + + + + A list of colon-separated (Linux and MacOS) or +semicolon-separated (Windows) paths to python modules. + + + + Useful to open local GDAL documentation instead of online help +when pressing on the tool dialog's Help button. + + + + Select directory with GDAL executables + + + + Select directory with GDAL python modules + + + + Select directory with the GDAL documentation + + + + + GdalToolsWidget + + + Build Virtual Raster (Catalog) + + + + + Use visible raster layers for input + + + + + + Choose input directory instead of files + + + + + + &Input files + + + + + + + + Recurse subdirectories + + + + + + + + + + + + + + + + &Output file + + + + + &Resolution + + + + + Highest + + + + + Average + + + + + Lowest + + + + + &Source No Data + + + + + Se&parate + + + + + Allow projection difference + + + + + Clipper + + + + + + &No data value + + + + + + + &Input file (raster) + + + + + Clipping mode + + + + + + Extent + + + + + + + Mask layer + + + + + Create an output alpha band + + + + + Contour + + + + + &Output file for contour lines (vector) + + + + + I&nterval between contour lines + + + + + &Attribute name + + + + + If not provided, no elevation attribute is attached. + + + + + ELEV + + + + + Convert RGB image to paletted + + + + + + + + + + Batch mode (for processing whole directory) + + + + + + + + + + + + + &Input file + + + + + Number of colors + + + + + Band to convert + + + + + DEM (Terrain models) + + + + + &Input file (DEM raster) + + + + + &Band + + + + + Compute &edges + + + + + &Mode + + + + + Hillshade + + + + + Slope + + + + + Aspect + + + + + Color relief + + + + + TRI (Terrain Ruggedness Index) + + + + + TPI (Topographic Position Index) + + + + + Roughness + + + + + Use Zevenbergen&&Thorne formula (instead of the Horn's one) + + + + + Z factor (vertical exaggeration) + + + + + + Scale (ratio of vert. units to horiz.) + + + + + Azimuth of the light + + + + + Altitude of the light + + + + + Slope expressed as percent (instead of as degrees) + + + + + Return trigonometric angle (instead of azimuth) + + + + + Return 0 for flat (instead of -9999) + + + + + Color configuration file + + + + + Matching mode + + + + + Exact color (otherwise "0,0,0,0" RGBA) + + + + + Nearest color + + + + + Add alpha channel + + + + + + + &Creation Options + + + + + Fill Nodata + + + + + + &Input Layer + + + + + + Output format + + + + + Search distance + + + + + Smooth iterations + + + + + Band to operate on + + + + + Validity mask + + + + + Do not use the default validity mask + + + + + Grid (Interpolation) + + + + + &Z Field + + + + + &Algorithm + + + + + Inverse distance to a power + + + + + Moving average + + + + + Nearest neighbor + + + + + Data metrics + + + + + Power + + + + + Smoothing + + + + + + + + Radius1 + + + + + + + + Radius2 + + + + + Max points + + + + + + + Min points + + + + + + + + Angle + + + + + + + + + No data + + + + + Metrics + + + + + Minimum + + + + + Maximum + + + + + Range + + + + + + Resize + + + + + + + Width + + + + + + + Height + + + + + Info + + + + + Raster info + + + + + Suppress GCP printing + + + + + Suppress metadata printing + + + + + Merge + + + + + Layer stack + + + + + Use intersected extent + + + + + Grab pseudocolor table from the first image + + + + + Near Black + + + + + How &far from black (or white) + + + + + Search for nearly &white (255) pixels instead of black ones + + + + + Build overviews (Pyramids) + + + + + Resampling method + + + + + nearest + + + + + average + + + + + gauss + + + + + cubic + + + + + average_mp + + + + + average_magphase + + + + + mode + + + + + Levels (space delimited) + + + + + Remove all overviews. + + + + + Clean + + + + + In order to generate external overview (for GeoTIFF especially). + + + + + Open in read-only mode + + + + + Create external overviews in TIFF format, compressed using JPEG. + + + + + Overviews in TIFF format with JPEG compression + + + + + + For JPEG compressed external overviews, +the JPEG quality can be set. + + + + + JPEG Quality (1-100) + + + + + Alternate overview format using Erdas Imagine format, +placing the overviews in an associated .aux file +suitable for direct use with Imagine,ArcGIS, GDAL. + + + + + Use Imagine format (.aux file) + + + + + Polygonize (Raster to vector) + + + + + &Output file for polygons (shapefile) + + + + + &Field name + + + + + DN + + + + + Use mask + + + + + Assign projection + + + + + WARNING: current projection definition will be cleared + + + + + Desired SRS + + + + + Output will be: +- new GeoTiff if input file is not GeoTiff +- overwritten if input is GeoTiff + + + + + + + + Select... + + + + + Proximity (Raster distance) + + + + + &Values + + + + + &Dist units + + + + + GEO + + + + + PIXEL + + + + + &Max dist + + + + + &No data + + + + + &Fixed buf val + + + + + + 0 + + + + + Rasterize (Vector to raster) + + + + + &Input file (shapefile) + + + + + &Attribute field + + + + + &Output file for rasterized vectors (raster) + + + + + New size (required if output file doens't exist) + + + + + Sieve + + + + + &Threshold + + + + + &Pixel connections + + + + + 4 + + + + + 8 + + + + + Raster tile index + + + + + Input directory + + + + + Output shapefile + + + + + Tile index field + + + + + location + + + + + Write absolute path + + + + + Skip files with different projection ref + + + + + Translate (Convert format) + + + + + + &Target SRS + + + + + + Percentage to resize image. This will change pixel size/image resolution accordingly: 25% will create an image with pixels 4x larger. + + + + + Outsize + + + + + % + + + + + + Assign a specified nodata value to output bands. + + + + + + To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands. +Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets. +The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a color table that only contains gray levels to a gray indexed dataset. + + + + + Expand + + + + + Gray + + + + + RGB + + + + + RGBA + + + + + + Selects a subwindow from the source image for copying based on pixel/line location. (Enter Xoff Yoff Xsize Ysize) + + + + + Srcwin + + + + + + Selects a subwindow from the source image for copying (like -srcwin) but with the corners given in georeferenced coordinates. (Enter ulx uly lrx lry) + + + + + Prjwin + + + + + Copy all subdatasets of this file to individual output files. Use with formats like HDF or OGDI that have subdatasets. + + + + + Sds + + + + + Warp (Reproject) + + + + + &Source SRS + + + + + &Resampling method + + + + + Near + + + + + Bilinear + + + + + Cubic + + + + + Cubic spline + + + + + Lanczos + + + + + No data values + + + + + &Memory used for caching + + + + + MB + + + + + Use m&ultithreaded warping implementation + + + + &Output directory for contour lines (shapefile) + + + + + GeometryDialog + + Merge all + + + + Geometry + + + + Please specify input vector layer + + + + Please specify output shapefile + + + + Please specify valid tolerance value + + + + Please specify valid UID field + + + + Singleparts to multipart + + + + Output shapefile + + + + Multipart to singleparts + + + + Extract nodes + + + + Polygons to lines + + + + Input polygon vector layer + + + + Export/Add geometry columns + + + + Input vector layer + + + + Layer CRS + + + + Project CRS + + + + Ellipsoid + + + + Polygon centroids + + + + Output point shapefile + + + + Delaunay triangulation + + + + Input point vector layer + + + + Voronoi polygon + + + + Buffer region + + + + Lines to polygons + + + + Input line vector layer + + + + Polygon from layer extent + + + + Input layer + + + + Output polygon shapefile + + + + Unable to delete existing shapefile. + + + + Currently QGIS doesn't allow simultaneous access from + different threads to the same datasource. Make sure your layer's + attribute tables are closed. Continue? + + + + Cancel + + + + Error processing specified tolerance! +Please choose larger tolerance... + + + + Unable to delete incomplete shapefile. + + + + At least two features must have same attribute value! +Please choose another field... + + + + One or more features in the output layer may have invalid geometry, please check using the check validity tool + + + + + Created output shapefile: +%1 +%2 + +Would you like to add the new layer to the TOC? + + + + Error loading output shapefile: +%1 + + + + Layer '%1' updated + + + + Error writing output shapefile. + + + + + GeoprocessingDialog + + Dissolve all + + + + Geoprocessing + + + + Please specify an input layer + + + + Please specify a difference/intersect/union layer + + + + Please specify valid buffer value + + + + Please specify dissolve field + + + + Please specify output shapefile + + + + No features selected, please uncheck 'Use selected' or make a selection + + + + Buffer(s) + + + + Create single minimum convex hull + + + + Create convex hulls based on input field + + + + Convex hull(s) + + + + Dissolve + + + + Difference layer + + + + Difference + + + + Intersect layer + + + + Intersect + + + + Symetrical difference + + + + Clip layer + + + + Clip + + + + Union layer + + + + Union + + + + Unable to delete existing shapefile. + + + + Cancel + + + + Close + + + + No output created. File creation error: +%1 + + + + +Warnings: + + + + +Some output geometries may be missing or invalid. + +Would you like to add the new layer anyway? + + + + + +Would you like to add the new layer to the TOC? + + + + +Input CRS error: Different input coordinate reference systems detected, results may not be as expected. + + + + +Input CRS error: One or more input layers missing coordinate reference information, results may not be as expected. + + + + +Feature geometry error: One or more output features ignored due to invalid geometry. + + + + +GEOS geoprocessing error: One or more input features have invalid geometry. + + + + Created output shapefile: +%1 +%2%3 + + + + Error loading output shapefile: +%1 + + + + + GlobePlugin + + + Launch Globe + + + + + Globe Settings + + + + + Unload Globe + + + + + Overlay data on a 3D globe + + + + + Settings for 3D globe + + + + + Unload globe + + + + + + + &Globe + + + + + Heatmap + + + Heatmap + + + + + Creates a heatmap raster for the input point vector. + + + + + + &Heatmap + + + + + GDAL driver error + + + + + Cannot open the driver for the specified format + + + + + Raster update error + + + + + Could not open the created raster for updating. The heatmap was not generated. + + + + + Point layer error + + + + + Could not identify the vector data provider. + + + + + Heatmap generation aborted + + + + + QGIS will now load the partially-computed raster. + + + + + HeatmapGui + + + Save Heatmap as: + + + + + No valid layers found! + + + + + Advanced options cannot be enabled. + + + + + Invalid output filename + + + + + Please enter a valid output file path and name. + + + + + Layer not found + + + + + Layer %1 not found. + + + + + HeatmapGuiBase + + + Heatmap Plugin + + + + + Input Point Vector + + + + + Output Raster + + + + + ... + + + + + Output Format + + + + + Radius + + + + + 10 + + + + + + meters + + + + + + map units + + + + + Decay Ratio + + + + + 0.1 + + + + + Advanced + + + + + Row + + + + + Cell Size X + + + + + Column + + + + + Cell Size Y + + + + + Use Radius from field + + + + + Use Weight from field + + + + + Help + + + Dialog + + + + + about:blank + + + + + LayerPropertiesWidget + + + Form + + + + + Symbol layer type + + + + + This layer doesn't have any editable properties + + + + + MainWindow + + + &Edit + + + + + &File + + + + + &Open Recent Projects + + + + + Print Composers + + + + + New Project From Template + + + + + &View + + + + + Select + + + + + Measure + + + + + &Decorations + + + + + &Layer + + + + + New + + + + + &Plugins + + + + + &Help + + + + + &Settings + + + + + &Raster + + + + + File + + + + + Manage Layers + + + + + Digitizing + + + + + Advanced Digitizing + + + + + Map Navigation + + + + + Attributes + + + + + Plugins + + + + + Help + + + + + Raster + + + + + Label + + + + + Vector + + + + + Database + + + + + Web + + + + + &New Project + + + + + Ctrl+N + + + + + &Open Project... + + + + + Ctrl+O + + + + + &Save Project + + + + + Ctrl+S + + + + + Save Project &As... + + + + + Ctrl+Shift+S + + + + + Save as Image... + + + + + &New Print Composer + + + + + Ctrl+P + + + + + Composer Manager... + + + + + Exit + + + + + Ctrl+Q + + + + + &Undo + + + + + Ctrl+Z + + + + + &Redo + + + + + Ctrl+Shift+Z + + + + + Cut Features + + + + + Ctrl+X + + + + + Copy Features + + + + + Ctrl+C + + + + + Paste Features + + + + + Ctrl+V + + + + + Add Feature + + + + + Ctrl+. + + + + + Move Feature(s) + + + + + Reshape Features + + + + + Split Features + + + + + Delete Selected + + + + + Add Ring + + + + + Add Part + + + + + Simplify Feature + + + + + Delete Ring + + + + + Delete Part + + + + + Merge Selected Features + + + + + Merge Attributes of Selected Features + + + + + Node Tool + + + + + Rotate Point Symbols + + + + + Snapping Options... + + + + + Pan Map + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Select Single Feature + + + + + Select Features by Rectangle + + + + + Select Features by Polygon + + + + + Select Features by Freehand + + + + + Select Features by Radius + + + + + Deselect Features from All Layers + + + + + Identify Features + + + + + Ctrl+Shift+I + + + + + Measure Line + + + + + + Ctrl+Shift+M + + + + + Measure Area + + + + + Ctrl+Shift+J + + + + + Measure Angle + + + + + Zoom Full + + + + + Ctrl+Shift+F + + + + + Zoom to Layer + + + + + Zoom to Selection + + + + + Ctrl+J + + + + + Zoom Last + + + + + Zoom Next + + + + + Zoom Actual Size + + + + + Zoom to Native Pixel Resolution + + + + + Map Tips + + + + + Show information about a feature when the mouse is hovered over it + + + + + New Bookmark... + + + + + Ctrl+B + + + + + Show Bookmarks + + + + + Ctrl+Shift+B + + + + + Refresh + + + + + Ctrl+R + + + + + Text Annotation + + + + + Form Annotation + + + + + Move Annotation + + + + + Labeling + + + + + Layer Labeling Options + + + + + New Shapefile Layer... + + + + + Ctrl+Shift+N + + + + + New SpatiaLite Layer ... + + + + + Ctrl+Shift+A + + + + + Raster calculator ... + + + + + Add Vector Layer... + + + + + Ctrl+Shift+V + + + + + Add Raster Layer... + + + + + Ctrl+Shift+R + + + + + Add PostGIS Layers... + + + + + Ctrl+Shift+D + + + + + Add SpatiaLite Layer... + + + + + Ctrl+Shift+L + + + + + Add MSSQL Spatial Layer... + + + + + Add WMS Layer... + + + + + Ctrl+Shift+W + + + + + Open Attribute Table + + + + + Toggle Editing + + + + + Toggles the editing state of the current layer + + + + + Save Edits + + + + + Save edits to current layer, but continue editing + + + + + Save As... + + + + + Save Selection as Vector File... + + + + + Remove Layer(s) + + + + + Ctrl+D + + + + + Set CRS of Layer(s) + + + + + Ctrl+Shift+C + + + + + Set Project CRS from Layer + + + + + Properties... + + + + + Query... + + + + + Add to Overview + + + + + Ctrl+Shift+O + + + + + Add All to Overview + + + + + Remove All from Overview + + + + + Show All Layers + + + + + Ctrl+Shift+U + + + + + Hide All Layers + + + + + Ctrl+Shift+H + + + + + Manage Plugins... + + + + + Toggle Full Screen Mode + + + + + Ctrl+F + + + + + Project Properties... + + + + + Ctrl+Shift+P + + + + + Options... + + + + + Custom CRS... + + + + + Configure shortcuts... + + + + + Local Histogram Stretch + + + + + Stretch histogram of active raster to view extents + + + + + Help Contents + + + + + F1 + + + + + API documentation + + + + + QGIS Home Page + + + + + Ctrl+H + + + + + Check QGIS Version + + + + + Check if your QGIS version is up to date (requires internet access) + + + + + About + + + + + QGIS Sponsors + + + + + + Move Label + + + + + Rotate Label + + + + + Rotate Label +Ctl (Cmd) increments by 15 deg. + + + + + Change Label + + + + + Style Manager... + + + + + Python Console + + + + + Full histogram stretch + + + + + Stretch Histogram to Full Dataset + + + + + Customization... + + + + + mActionCatchForCustomization + + + + + This is here just to avoid shortcut conflicts, the shortcut is caught in QgsCustomization + + + + + Ctrl+M + + + + + Embed Layers and Groups... + + + + + Embed layers and groups from other project files + + + + + &Copyright Label + + + + + Creates a copyright label that is displayed on the map canvas. + + + + + &North Arrow + + + + + "Creates a north arrow that is displayed on the map canvas" + + + + + &Scale Bar + + + + + + Creates a scale bar that is displayed on the map canvas + + + + + Add WFS Layer... + + + + + Add WFS Layer + + + + + Feature Action + + + + + Run Feature Action + + + + + + Pan Map to Selection + + + + + + Touch zoom and pan + + + + + Offset Curve + + + + + Copy style + + + + + Paste style + + + + + Add WCS Layer... + + + + + &Grid + + + + + Grid + + + + + Pin/Unpin Labels + + + + + Pin/Unpin Labels +Click or marquee on label to pin +Shift unpins, Ctl (Cmd) toggles state +Acts on all editable layers + + + + + + Highlight Pinned Labels + + + + + + New Blank Project + + + + + Local Cumulative Cut Stretch + + + + + Local cumulative cut stretch using current extent, default limits and estimated values. + + + + + Full Dataset Cumulative Cut Stretch + + + + + Cumulative cut stretch using full dataset extent, default limits and estimated values. + + + + + Show/Hide Labels + + + + + Show/Hide Labels +Click or marquee on feature to show label +Shift+click or marquee on label to hide it +Acts on currently active editable layer + + + + + + Html Annotation + + + + + + Duplicate Layer(s) + + + + + SVG annotation + + + + + OracleConnectGuiBase + + + Create Oracle Connection + + + + + Name + + + + + Name of the new connection + + + + + Database instance + + + + + Username + + + + + Password + + + + + Save Password + + + + + OsmAddRelationDlg + + + Create OSM relation + + + + + Relation type: + + + + + Show type description + + + + + + Shows brief description of selected relation type. + + + + + + + + + ... + + + + + Properties + + + + + Generate tags + + + + + + Fills tag table with tags that are typical for relation of specified type. + + + + + Remove all selected tags + + + + + + Removes all selected tags. + + + + + Members + + + + + Select member on map + + + + + + Starts process of selecting next relation member on map. + + + + + Remove all selected members + + + + + + Removes all selected members. + + + + + Create + + + + + Cancel + + + + Save + + + + Edit OSM relation + + + + for grouping boundaries and marking enclaves / exclaves + + + + to put holes into areas (might have to be renamed, see article) + + + + any kind of turn restriction + + + + like bus routes, cycle routes and numbered highways + + + + traffic enforcement devices; speed cameras, redlight cameras, weight checks, ... + + + + OSM Information + + + + + OsmDownloadDlg + + + Download OSM data + + + + + Extent + + + + + Latitude: + + + + + + From + + + + + + To + + + + + Longitude: + + + + + <nothing> + + + + + + ... + + + + + Download to: + + + + + Open data automatically after download + + + + + Replace current data (current layer will be removed) + + + + + Use custom renderer + + + + + Download + + + + + Cancel + + + + OSM Download + + + + Unable to save the file %1: %2. + + + + Waiting for OpenStreetMap server ... + + + + Download process failed. OpenStreetMap server response: %1 - %2 + + + + Check your internet connection + + + + OSM Download Error + + + + Download failed: %1. + + + + Choose file to save + + + + OSM Files (*.osm) + + + + Getting data + + + + The OpenStreetMap server you are downloading OSM data from (~ api.openstreetmap.org) has fixed limitations of how much data you can get. As written at <http://wiki.openstreetmap.org/wiki/Getting_Data> neither latitude nor longitude extent of downloaded region can be larger than 0.25 degrees. Note that Quantum GIS allows you to specify any extent you want, but OpenStreetMap server will reject all request that won't satisfy downloading limitations. + + + + Both extents are too large! + + + + Latitude extent is too large! + + + + Longitude extent is too large! + + + + OK! Area is probably acceptable to server. + + + + + OsmFeatureDW + + + OSM Feature + + + + + + + + + + + + + + + + + + + ... + + + + + + + Identify feature + + + + + + + Move feature + + + + + Create point + + + + + Create line + + + + + Create polygon + + + + + Create relation + + + + + + + Undo + + + + + + + Redo + + + + + + + Show/Hide OSM Edit History + + + + + Feature: + + + + + TYPE, ID: + + + + + CREATED: + + + + + USER: + + + + + + + unknown + + + + + + + Remove this feature + + + + + Properties + + + + + + + Remove selected tags + + + + + Relations + + + + + + + Add relation + + + + + + + Edit relation + + + + + + + Remove relation + + + + + Relation tags: + + + + + 1 + + + + + Relation members: + + + + OSM Plugin + + + + The 'Create OSM Relation' dialog was closed automatically because current OSM database was changed. + + + + OSM Feature Dock Widget + + + + Choose OSM feature first. + + + + Choose relation for editing first. + + + + Snapping ON. Hold Ctrl to disable it. + + + + Hide OSM Edit History + + + + Show OSM Edit History + + + + + OsmImportDlg + + + Import data to OSM + + + + + In this dialog you can import a layer loaded in QGIS into active OSM data. + + + + + Layer + + + + + Import only current selection + + + + Layer doesn't exist + + + + The selected layer doesn't exist anymore! + + + + Importing features... + + + + Cancel + + + + Import + + + + Import has been completed. + + + + + OsmLoadDlg + + + Load OSM + + + + + OpenStreetMap file to load: + + + + + ... + + + + + Add columns for tags: + + + + + Use custom renderer + + + + + Replace current data (current layers will be removed) + + + + Choose an Open Street Map file + + + + OSM Files (*.osm) + + + + OSM Load + + + + Please enter path to OSM data file. + + + + Path to OSM file is invalid: %1. + + + + Error + + + + Layers of OSM file "%1" are loaded already. + + + + Failed to load polygon layer. + + + + Failed to load line layer. + + + + Failed to load point layer. + + + + Could not connect to setRenderer signal. + + + + Failed to load layers: %1 + + + + + OsmPlugin + + Load OSM from file + + + + Load OpenStreetMap from file + + + + Import data from a layer + + + + Import data from a layer to OpenStreetMap + + + + Save OSM to file + + + + Save OpenStreetMap to file + + + + Download OSM data + + + + Download OpenStreetMap data + + + + Upload OSM data + + + + Upload OpenStreetMap data + + + + Show/Hide OSM Feature Manager + + + + Show/Hide OpenStreetMap Feature Manager + + + + Sorry + + + + You don't have OSM provider installed! + + + + OSM Save to file + + + + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. +Please change this situation first, because OSM Plugin doesn't know what to save. + + + + OSM Upload + + + + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. +Please change this situation first, because OSM Plugin doesn't know what to upload. + + + + OSM Import + + + + No OSM data are loaded/downloaded or no OSM layer is selected in Layers panel. +Please change this situation first, because OSM Plugin doesn't know what layer will be destination of the import. + + + + There are currently no available vector layers. + + + + + OsmSaveDlg + + + Save OSM + + + + + Where to save: + + + + + ... + + + + + Features to save: + + + + + Points + + + + + Lines + + + + + Polygons + + + + + Relations + + + + + Tags + + + + Choose an Open Street Map file + + + + OSM Files (*.osm) + + + + Save OSM to file + + + + Unable to save the file %1: %2. + + + + Initializing... + + + + Saving nodes... + + + + Saving lines... + + + + Saving polygons... + + + + Saving relations... + + + + + OsmUndoRedoDW + + + OSM Edit History + + + + + + + Clear all + + + + + + + ... + + + + + + + Undo + + + + + + + Redo + + + + + OsmUploadDlg + + + Upload OSM data + + + + + Ready for upload + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + Comment on your changes: + + + + + OSM account + + + + + Username: + + + + + Password: + + + + + Show password + + + + + Save password + + + + Upload + + + + OSM Upload + + + + Uploading data... + + + + Node addition failed. + + + + Node update failed. + + + + Node deletion failed. + + + + Way addition failed. + + + + Way update failed. + + + + Way deletion failed. + + + + Relation addition failed. + + + + Relation update failed. + + + + Relation deletion failed. + + + + Connection to OpenStreetMap server cannot be established. Please check your proxy settings, firewall settings and try again. + + + + Changeset closing failed. + + + + Upload process failed. OpenStreetMap server response: %1 - %2. + + + + Authentication failed. Please try again with correct login and password. + + + + Setting host failed. + + + + Setting user and password failed. + + + + Setting proxy failed. + + + + + PointsInPolygonThread + + point count field + + + + + Python + + An error has occured while executing Python code: + + + + Python version: + + + + QGIS version: + + + + Python path: + + + + Python error + + + + Couldn't load plugin '%1' from ['%2'] + + + + Couldn't load plugin %1 + + + + %1 due an error when calling its classFactory() method + + + + %1 due an error when calling its initGui() method + + + + Error while unloading plugin %1 + + + + + PythonConsole + + Python Console + + + + Clear console + + + + Settings + + + + Import Class + + + + Manage Script + + + + Import Sextante class + + + + Import QgisInterface class + + + + Import PyQt.QtCore class + + + + Import PyQt.QtGui class + + + + Open script file + + + + Save to script file + + + + Run command + + + + Help + + + + + QGis::UnitType + + + meters + + + + + feet + + + + + + + + degrees + + + + + <unknown> + + + + + QObject + + + Interpolating... + + + + + + Abort + + + + + Building triangulation... + + + + + Estimating normal derivatives... + + + + + QGIS starting in non-interactive mode not supported. +You are seeing this message most likely because you have no DISPLAY environment variable set. + + + + + + Deleted vertices + + + + + Moved vertices + + + + + CRS undefined - defaulting to project CRS + + + + + CRS undefined - defaulting to default CRS: %1 + + + + + Reading raster + + + + + No active vector layer + + + + + To select features, you must choose a vector layer by clicking on its name in the legend + + + + + + CRS Exception + + + + + + Selection extends beyond layer's coordinate system. + + + + + Python is not enabled in QGIS. + + + + + + + + + + + + + + + Plugins + + + + + Loaded %1 (package: %2) + + + + + Library name is %1 + + + + + + + Failed to load %1 (Reason: %2) + + + + + Attempting to resolve the classFactory function + + + + + + Loaded %1 (Path: %2) + + + + + Error Loading Plugin + + + + + There was an error loading a plugin.The following diagnostic information may help the QGIS developers resolve the issue: +%1. + + + + + Unable to find the class factory for %1. + + + + + Plugin %1 did not return a valid type and cannot be loaded + + + + + + Python error + + + + + Error when reading metadata of plugin %1 + + + + + Could not open CRS database %1 +Error(%2): %3 + + + + + + CRS + + + + + Generated CRS + A CRS automatically generated from layer info get this prefix for description + + + + + Saved user CRS [%1] + + + + + Imported from GDAL + + + + + Can't open database: %1 + + + + + + Caught a coordinate system exception while trying to transform a point. Unable to calculate line length. + + + + + Caught a coordinate system exception while trying to transform a point. Unable to calculate polygon area or perimeter. + + + + + Caught a coordinate system exception while trying to transform a point. Unable to calculate polygon area. + + + + + + m² + + + + + km² + + + + + ha + + + + + + m + + + + + km + + + + + mm + + + + + cm + + + + + sq ft + + + + + acres + + + + + sq mile + + + + + foot + + + + + feet + + + + + mile + + + + + sq.deg. + + + + + degree + + + + + degrees + + + + + unknown + + + + + day + Note: Word is part matched in code + + + + + days + Note: Word is part matched in code + + + + + week + Note: Word is part matched in code + + + + + weeks + Note: Word is part matched in code + + + + + month + Note: Word is part matched in code + + + + + months + Note: Word is part matched in code + + + + + year + Note: Word is part matched in code + + + + + years + Note: Word is part matched in code + + + + + second + Note: Word is part matched in code + + + + + seconds + Note: Word is part matched in code + + + + + minute + Note: Word is part matched in code + + + + + minutes + Note: Word is part matched in code + + + + + hour + Note: Word is part matched in code + + + + + hours + Note: Word is part matched in code + + + + + Cannot convert '%1' to double + + + + + Cannot convert '%1' to int + + + + + Cannot convert '%1' to DateTime + + + + + Cannot convert '%1' to Date + + + + + Cannot convert '%1' to Time + + + + + Cannot convert '%1' to Interval + + + + + Cannot convert '%1' to boolean + + + + + Invalid regular expression '%1': %2 + + + + + Index is out of range + + + + + + + + + + + + + + + + + Math + + + + + + + + + + + Conversions + + + + + Conditionals + + + + + + + + + + + + + Date and Time + + + + + + + + + + + + + + + + + + + String + + + + + + + + + + + Geometry + + + + + + + + Record + + + + + Special + + + + + + No root node! Parsing failed? + + + + + (no root) + + + + + Unary minus only for numeric values. + + + + + Can't preform /, *, or % on DateTime and Interval + + + + + [unsupported type;%1; value:%2] + + + + + Column '%1' not found + + + + + + + + + + + + + + + + + + + + + + + + + + Exception: %1 + + + + + + + + + + + + + + + + + + + + + + + + + + + GEOS + + + + + GEOS prior to 3.2 doesn't support GEOSInterpolate + + + + + segment %1 of ring %2 of polygon %3 intersects segment %4 of ring %5 of polygon %6 at %7 + + + + + ring %1 with less than four points + + + + + ring %1 not closed + + + + + line %1 with less than two points + + + + + line %1 contains %n duplicate node(s) at %2 + number of duplicate nodes + + + + + + + + segments %1 and %2 of line %3 intersect at %4 + + + + + ring %1 of polygon %2 not in exterior ring + + + + + GEOS error:could not produce geometry for GEOS (check log window) + + + + + + GEOS error:%1 + + + + + + polygon %1 inside polygon %2 + + + + + Unknown geometry type + + + + + Unknown geometry type %1 + + + + + Geometry validation was aborted. + + + + + Geometry has %1 errors. + + + + + Geometry is valid. + + + + + invalid line + + + + + Label + + + + + Console + + + + + + infinite + + + + + + W + + + + + + E + + + + + + S + + + + + + N + + + + + No QGIS data provider plugins found in: +%1 + + + + + + No vector layers can be loaded. Check your QGIS installation + + + + + No Data Providers + + + + + No data provider plugins are available. No vector layers can be loaded + + + + + Unable to instantiate the data provider plugin %1 + + + + + Failed to load %1: %2 + + + + + OGR driver for '%1' not found (OGR error: %2) + + + + + trimming attribute name '%1' to ten significant characters produces duplicate column name. + + + + + creation of data source failed (OGR error:%1) + + + + + creation of layer failed (OGR error:%1) + + + + + + unsupported type for field %1 + + + + + creation of field %1 failed (OGR error: %2) + + + + + created field %1 not found (OGR error: %2) + + + + + Invalid variant type for field %1[%2]: received %3 with type %4 + + + + + + + + + + + + + + + + + OGR + + + + + + + Feature geometry not imported (OGR error: %1) + + + + + Feature creation error (OGR error: %1) + + + + + + Failed to transform a point while drawing a feature of type '%1'. Writing stopped. (Exception: %2) + + + + + + Feature write errors: + + + + + + Stopping after %1 errors + + + + + +Only %1 of %2 features written. + + + + + + Arc/Info ASCII Coverage + + + + + + Atlas BNA + + + + + + Comma Separated Value + + + + + ESRI Shapefile + + + + + + + FMEObjects Gateway + + + + + + GeoJSON + + + + + + GeoRSS + + + + + + Geography Markup Language [GML] + + + + + + Generic Mapping Tools [GMT] + + + + + + GPS eXchange Format [GPX] + + + + + + INTERLIS 1 + + + + + + INTERLIS 2 + + + + + + Keyhole Markup Language [KML] + + + + + Mapinfo TAB + + + + + Mapinfo MIF + + + + + + Microstation DGN + + + + + + S-57 Base file + + + + + + Spatial Data Transfer Standard [SDTS] + + + + + + SQLite + + + + + SpatiaLite + + + + + + AutoCAD DXF + + + + + + Geoconcept + + + + + + ESRI FileGDB + + + + + Unable to load %1 provider + + + + + Provider %1 has no createEmptyLayer method + + + + + Loading of layer failed + + + + + Creation error for features from #%1 to #%2. Provider errors was: +%3 + + + + + Vector import + + + + + Only %1 of %2 features written. + + + + + + + + Reading raster part %1 of %2 + + + + + Building pyramids failed - write access denied + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + + Building pyramids failed. + + + + + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. + + + + + + Building pyramid overviews is not supported on this type of raster. + + + + + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. + + + + + Multiband color + + + + + Paletted + + + + + Singleband gray + + + + + Singleband pseudocolor + + + + + Singleband color data + + + + + Single Symbol + + + + + Categorized + + + + + Graduated + + + + + Rule-based + + + + + Point displacement + + + + + Simple line + + + + + Marker line + + + + + Line decoration + + + + + Simple marker + + + + + SVG marker + + + + + Font marker + + + + + Ellipse marker + + + + + Vector Field marker + + + + + Simple fill + + + + + SVG fill + + + + + Centroid fill + + + + + Line pattern fill + + + + + Point pattern fill + + + + + Where is '%1' (original location: %2)? + + + + + QGIS rocks! + + + + + <html>QGIS rocks!</html> + + + + + Raster Histogram + + + + + Pixel Value + + + + + Frequency + + + + + Internal Compass + + + + + Shows a QtSensors compass reading + + + + + Version 0.9 + + + + + Coordinate Capture + + + + + Capture mouse coordinates in different CRS + + + + + + + + + Vector + + + + + + + + + + + + + + + + + Version 0.1 + + + + + + Version 0.2 + + + + + Loads and displays delimited text files containing x,y coordinates + + + + + + + Layers + + + + + Add Delimited Text Layer + + + + + Diagram Overlay (Legacy) + + + + + A plugin for placing diagrams on vector layers + + + + + Version 0.0.1 (Legacy) + + + + + Dxf2Shp Converter + + + + + Converts from dxf to shp file format + + + + + eVis + + + + + An event visualization tool - view images associated with vector features + + + + + + + + Database + + + + + Version 1.1.0 + + + + + + + + + + + + + + + + + + + + + + + + + + Warning + + + + + This tool only supports vector data + + + + + No active layers found + + + + + Georeferencer GDAL + + + + + Georeferencing rasters using GDAL + + + + + + + + + Raster + + + + + Version 3.1.9 + + + + + Fit to a linear transform requires at least 2 points. + + + + + Fit to a Helmert transform requires at least 2 points. + + + + + Fit to an affine transform requires at least 4 points. + + + + + Fitting a projective transform requires at least 4 corresponding points. + + + + + Globe + + + + + Overlay data on a 3D globe + + + + + GPS Tools + + + + + Tools for loading and importing GPS data + + + + + Location: %1 + + + + + + Location: %1<br>Mapset: %2 + + + + + <b>Raster</b> + + + + + Cannot open raster header + + + + + + Rows + + + + + + Columns + + + + + + N-S resolution + + + + + + E-W resolution + + + + + + + North + + + + + + + South + + + + + + + East + + + + + + + West + + + + + Format + + + + + Minimum value + + + + + Maximum value + + + + + Data source + + + + + Data description + + + + + Comments + + + + + Categories + + + + + + <b>Vector</b> + + + + + Points + + + + + Lines + + + + + Boundaries + + + + + Centroids + + + + + Faces + + + + + Kernels + + + + + Areas + + + + + Islands + + + + + + Top + + + + + + Bottom + + + + + yes + + + + + no + + + + + History<br> + + + + + <b>Layer</b> + + + + + Features + + + + + Driver + + + + + Table + + + + + Key column + + + + + <b>Region</b> + + + + + Cannot open region header + + + + + XY + + + + + UTM + + + + + SP + + + + + LL + + + + + Other + + + + + Projection Type + + + + + Zone + + + + + 3D Cols + + + + + 3D Rows + + + + + Depths + + + + + E-W 3D resolution + + + + + N-S 3D resolution + + + + + GRASS + + + + + GRASS layer + + + + + Heatmap + + + + + Creates a Heatmap raster for the input point vector + + + + + Interpolation plugin + + + + + A plugin for interpolation based on vertices of a vector layer + + + + + Version 0.001 + + + + + OfflineEditing + + + + + Allow offline editing and synchronizing with database + + + + + Oracle Spatial GeoRaster + + + + + Access Oracle Spatial GeoRaster + + + + + Raster Terrain Analysis plugin + + + + + A plugin for raster based terrain analysis + + + + + Road graph plugin + + + + + It solves the shortest path problem. + + + + + Processing 1/2 - %p% + + + + + Processing 2/2 - %p% + + + + + Intersects + + + + + Is disjoint + + + + + + + Touches + + + + + + Crosses + + + + + + Within + + + + + + Contains + + + + + Equals + + + + + Overlaps + + + + + Spatial Query Plugin + + + + + A plugin that makes spatial queries on vector layers + + + + + SPIT + + + + + Shapefile to PostgreSQL/PostGIS Import Tool + + + + + SQL Anywhere plugin + + + + + Store vector layers within a SQL Anywhere database + + + + + Zonal statistics plugin + + + + + A plugin to calculate count, sum, mean of rasters for each polygon of a vector layer + + + + + Cannot open GDAL MEM dataset %1: %2 + + + + + Cannot GDALCreateGenImgProjTransformer: + + + + + Cannot inittialize GDALWarpOperation : + + + + + Cannot ChunkAndWarpImage: %1 + + + + + [GDAL] All files (*) + + + + + + GDAL/OGR VSIFileHandler + + + + + This raster file has no bands and is invalid as a raster layer. + + + + + Cannot get GDAL raster band: %1 + + + + + Couldn't open the data source: %1 + + + + + Parse error at line %1 : %2 + + + + + GPS eXchange format provider + + + + + + GRASS plugin + + + + + QGIS couldn't find your GRASS installation. +Would you like to specify path (GISBASE) to your GRASS installation? + + + + + Choose GRASS installation path (GISBASE) + + + + + GRASS data won't be available if GISBASE is not specified. + + + + + GISBASE is not set. + + + + + %1 is not a GRASS mapset. + + + + + Cannot start %1/etc/lock + + + + + Mapset is already in use. + + + + + Temporary directory %1 exists but is not writable + + + + + Cannot create temporary directory %1 + + + + + Cannot create %1 + + + + + Cannot remove mapset lock: %1 + + + + + Cannot open vector %1 in mapset %2 on level 2 (topology not available, try to rebuild topology using v.build module). + + + + + Cannot open vector %1 in mapset %2 + + + + + Cannot read raster map region + + + + + Cannot read vector map region + + + + + Cannot read region + + + + + Cannot open GISRC file + + + + + Cannot start module + + + + + command: %1 %2 + + + + + Cannot run module + + + + + command: %1 %2<br>%3<br>%4 + + + + + Cannot get projection + + + + + + Cannot get raster extent + + + + + Cannot get map info + + + + + Cannot get colors + + + + + Cannot query raster + + + + + + + Cannot draw raster + + + + + Loading of the MSSQL provider failed + + + + + + Unsupported type for field %1 + + + + + + Creation of fields failed + + + + + OGR[%1] error %2: %3 + + + + + Unable to create the datasource. %1 exists and overwrite flag is false. + + + + + Unable to get driver %1 + + + + + Arc/Info Binary Coverage + + + + + DODS + + + + + + ESRI Personal GeoDatabase + + + + + ESRI ArcSDE + + + + + ESRI Shapefiles + + + + + Grass Vector + + + + + Informix DataBlade + + + + + Ingres + + + + + Mapinfo File + + + + + MySQL + + + + + MSSQL + + + + + Oracle Spatial + + + + + ODBC + + + + + OGDI Vectors + + + + + PostgreSQL + + + + + UK. NTF2 + + + + + U.S. Census TIGER/Line + + + + + VRT - Virtual Datasource + + + + + X-Plane/Flightgear + + + + + All files + + + + + Duplicate field (10 significant characters): %1 + + + + + Creating the data source %1 failed: %2 + + + + + Unknown vector type of %1 + + + + + Creation of OGR data source %1 failed: %2 + + + + + creation of field %1 failed + + + + + Couldn't create file %1.qpj + + + + + no result buffer + + + + + + + + Connection to database failed + + + + + Creation of data source %1 failed: +%2 + + + + + Loading of the layer %1 failed + + + + + + Unable to delete layer %1: +%2 + + + + + creation of data source %1 failed. %2 + + + + + loading of the layer %1 failed + + + + + creation of fields failed + + + + + Unable to initialize SpatialMetadata: + + + + + + Could not create a new database + + + + + + Unable to activate FOREIGN_KEY constraints [%1] + + + + + Unable to delete table %1: + + + + + + Couldn't load SIP module. + + + + + + + + Python support will be disabled. + + + + + Couldn't load PyQt4. + + + + + Couldn't load PyQGIS. + + + + + Couldn't load QGIS utils. + + + + + An error occured during execution of following code: + + + + + Python version: + + + + + QGIS version: + + + + + Python path: + + + + + QextSerialPort + + + No Error has occurred + + + + + Invalid file descriptor (port was not opened correctly) + + + + + Unable to allocate memory tables (POSIX) + + + + + Caught a non-blocked signal (POSIX) + + + + + Operation timed out (POSIX) + + + + + The file opened by the port is not a valid device + + + + + The port detected a break condition + + + + + The port detected a framing error (usually caused by incorrect baud rate settings) + + + + + There was an I/O error while communicating with the port + + + + + Character buffer overrun + + + + + Receive buffer overflow + + + + + The port detected a parity error in the received data + + + + + Transmit buffer overflow + + + + + General read operation failure + + + + + General write operation failure + + + + + Unknown error: %1 + + + + + QgisApp + + + &Raster + + + + + Quantum GIS + + + + + Multiple Instances of QgisApp + + + + + Multiple instances of Quantum GIS application object detected. +Please contact the developers. + + + + + + Checking database + + + + + Reading settings + + + + + Setting up the GUI + + + + + Map canvas. This is where raster and vector layers are displayed when added to the map + + + + + GPS Information + + + + + Log Messages + + + + + Quantum GIS - %1 ('%2') + + + + + QGIS starting... + + + + + Checking provider plugins + + + + + Starting Python + + + + + Restoring loaded plugins + + + + + Initializing file filters + + + + + Restoring window state + + + + + + QGIS Ready! + + + + + Minimize + + + + + Ctrl+M + Minimize Window + + + + + Minimizes the active window to the dock + + + + + Zoom + + + + + Toggles between a predefined size and the window size set by the user + + + + + Bring All to Front + + + + + Bring forward all open windows + + + + + + + + + + + Error + + + + + Failed to open Python console: + + + + + Panels + + + + + Toolbars + + + + + Window + + + + + &Database + + + + + Vect&or + + + + + &Web + + + + + Progress bar that displays the status of rendering layers and other time-intensive operations + + + + + Toggle extents and mouse position display + + + + + + Coordinate: + + + + + Current map coordinate + + + + + Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved. It also allows editing to set the canvas center to a given position. The format is lat,lon or east,north + + + + + Current map coordinate (lat,lon or east,north) + + + + + Scale + + + + + Current map scale + + + + + Displays the current map scale + + + + + Current map scale (formatted as x:y) + + + + + Stop map rendering + + + + + Render + + + + + When checked, the map layers are rendered in response to map navigation commands and other events. When not checked, no rendering is done. This allows you to add a large number of layers and symbolize them before rendering. + + + + + Toggle map rendering + + + + + This icon shows whether on the fly coordinate reference system transformation is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour. + + + + + CRS status - Click to open coordinate reference system dialog + + + + + Ready + + + + + Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas. + + + + + Overview + + + + + Map legend that displays all the layers currently on the map canvas. Click on the check box to turn a layer on or off. Double click on a layer in the legend to customize its appearance and set other properties. + + + + + Layers + + + + + Control rendering order + + + + + Map layer list that displays all layers in drawing order. + + + + + Layer order + + + + + [ERROR] Can not make qgis.db private copy + + + + + + + Private qgis.db + + + + + Could not open qgis.db + + + + + Migration of private qgis.db failed. +%1 + + + + + Update of view in private qgis.db failed. +%1 + + + + + + < Blank > + + + + + QGIS version + + + + + QGIS code revision + + + + + Compiled against Qt + + + + + Running against Qt + + + + + Compiled against GDAL/OGR + + + + + Running against GDAL/OGR + + + + + GEOS Version + + + + + PostgreSQL Client Version + + + + + + No support. + + + + + SpatiaLite Version + + + + + QWT Version + + + + + PROJ.4 Version + + + + + QScintilla2 Version + + + + + This copy of QGIS writes debugging output. + + + + + %1 doesn't have any layers + + + + + + + Invalid Data Source + + + + + %1 is not a valid or recognized data source + + + + + Select zip layers to add... + + + + + Vector + + + + + Select raster layers to add... + + + + + Raster + + + + + Select vector layers to add... + + + + + PostgreSQL + + + + + Cannot get PostgreSQL select dialog from provider. + + + + + %1 is an invalid layer - not loaded + + + + + + + + Invalid Layer + + + + + %1 is an invalid layer and cannot be loaded. + + + + + SpatiaLite + + + + + Cannot get SpatiaLite select dialog from provider. + + + + + MSSQL + + + + + Cannot get MSSQL select dialog from provider. + + + + + WMS + + + + + Cannot get WMS select dialog from provider. + + + + + WCS + + + + + Cannot get WCS select dialog from provider. + + + + + WFS + + + + + Cannot get WFS select dialog from provider. + + + + + Calculating... + + + + + + Abort... + + + + + Choose a QGIS project file to open + + + + + + + QGis files + + + + + Unable to open project + + + + + Security warning: + + + + + project macros have been disabled. + + + + + Enable macros + + + + + Choose a QGIS project file + + + + + + Saved project to: %1 + + + + + + Unable to save project %1 + + + + + Choose a file name to save the QGIS project file as + + + + + Unable to load %1 + + + + + Choose a file name to save the map image as + + + + + Saved map image to %1 + + + + + Labeling + + + + + Please select a vector layer first. + + + + + Layer labeling settings + + + + + Saving done + + + + + Export to vector file has been completed + + + + + Save error + + + + + Export to vector file failed. +Error: %1 + + + + + + No Layer Selected + + + + + To delete features, you must select a vector layer in the legend + + + + + No Vector Layer Selected + + + + + Deleting features only works on vector layers + + + + + Provider does not support deletion + + + + + Data provider does not support deleting features + + + + + + + Layer not editable + + + + + The current layer is not editable. Choose 'Start editing' in the digitizing toolbar. + + + + + Delete features + + + + + Delete %n feature(s)? + number of features to delete + + + + + + + + Features deleted + + + + + Problem deleting features + + + + + A problem occured during deletion of features + + + + + Merging features... + + + + + Abort + + + + + + Composer %1 + + + + + + No active layer + + + + + + No active layer found. Please select a layer in the layer list + + + + + + Active layer is not vector + + + + + + The merge features tool only works on vector layers. Please select a vector layer from the layer list + + + + + + Merging features can only be done for layers in editing mode. To use the merge tool, go to Layer->Toggle editing + + + + + + + Not enough features selected + + + + + + + The merge tool requires at least two selected features + + + + + Merged feature attributes + + + + + + Merge failed + + + + + + An error occured during the merge operation + + + + + Union operation canceled + + + + + + The union operation would result in a geometry type that is not compatible with the current layer and therefore is canceled + + + + + Merged features + + + + + Features cut + + + + + Features pasted + + + + + Cannot copy style: %1 + + + + + Cannot parse style: %1:%2:%3 + + + + + Cannot read style: %1 + + + + + + Could not commit changes to layer %1 + +Errors: %2 + + + + + + Start editing failed + + + + + Provider cannot be opened for editing + + + + + Stop editing + + + + + Do you want to save the changes to layer %1? + + + + + Problems during roll back + + + + + copy + + + + + Plugin layer + + + + + Memory layer + + + + + + Duplicate layer: + + + + + %1 (duplication resulted in invalid layer) + + + + + %1 (%2type unsupported) + + + + + Couldn't load Python support library: %1 + + + + + Couldn't resolve python support library's instance() symbol. + + + + + Python support ENABLED :-) + + + + + There is a new version of QGIS available + + + + + You are running a development version of QGIS + + + + + You are running the current version of QGIS + + + + + Would you like more information? + + + + + + + + QGIS Version Information + + + + + QGIS - Changes since last release + + + + + Unable to get current version information from server + + + + + Connection refused - server may be down + + + + + QGIS server was not found + + + + + Unknown network socket error: %1 + + + + + Unable to communicate with QGIS Version server +%1 + + + + + + To perform a full histogram stretch, you need to have a raster layer selected. + + + + + No Raster Layer Selected + + + + + + Layer is not valid + + + + + The layer %1 is not a valid layer and can not be added to the map + + + + + The layer is not a valid layer and can not be added to the map + + + + + Save? + + + + + Do you want to save the current project? + + + + + Current CRS: %1 (OTFR enabled) + + + + + Current CRS: %1 (OTFR disabled) + + + + + Map coordinates for the current view extents + + + + + Map coordinates at mouse cursor position + + + + + Extents: + + + + + Maptips require an active layer + + + + + %n feature(s) selected on layer %1. + number of selected features + + + + + + + + Open a GDAL Supported Raster Data Source + + + + + %1 is not a valid or recognized raster data source + + + + + %1 is not a supported raster data source + + + + + Unsupported Data Source + + + + + <p>This project file was saved by an older version of QGIS. When saving this project file, QGIS will update it to the latest version, possibly rendering it useless for older versions of QGIS.<p>Even though QGIS developers try to maintain backwards compatibility, some of the information from the old project file might be lost. To improve the quality of QGIS, we appreciate if you file a bug report at %3. Be sure to include the old project file, and state the version of QGIS you used to discover the error.<p>To remove this warning when opening an older project file, uncheck the box '%5' in the %4 menu.<p>Version of the project file: %1<br>Current version of QGIS: %2 + + + + + <tt>Settings:Options:General</tt> + Menu path to setting options + + + + + Warn me when opening a project file saved with an older version of QGIS + + + + + Project file is older + + + + + This project file was saved by an older version of QGIS + + + + + Warning + + + + + This layer doesn't have a properties dialog. + + + + + Authentication required + + + + + Proxy authentication required + + + + + SSL errors occured accessing URL %1: + + + + + + +Always ignore these errors? + + + + + %n SSL errors occured + number of errors + + + + + + + + QgisAppInterface + + + Attributes changed + + + + + QgsAbout + + + About Quantum GIS + + + + + About + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:x-large; font-weight:600;"><span style=" font-size:x-large;">Quantum GIS (QGIS)</span></p></body></html> + + + + + Quantum GIS is licensed under the GNU General Public License + + + + + http://www.gnu.org/licenses + + + + + QGIS Home Page + + + + + Join our user mailing list + + + + + What's New + + + + + Providers + + + + + Developers + + + + + Essen (Germany), Developer meeting 2012 + + + + + Contributors + + + + + Translators + + + + + about:blank + + + + + Donors + + + + + <p>For a list of individuals and institutions who have contributed money to fund QGIS development and other project costs see <a href="http://qgis.org/en/sponsorship/donors.html">http://qgis.org/en/sponsorship/donors.html</a></p> + + + + + Available QGIS Data Provider Plugins + + + + + Available Qt Database Plugins + + + + + Available Qt Image Plugins + + + + + Qt Image Plugin Search Paths <br> + + + + + QgsAddAttrDialog + + + Warning + + + + + Invalid field name. This field name is reserved and cannot be used. + + + + + QgsAddAttrDialogBase + + + Add column + + + + + N&ame + + + + + Comment + + + + + + Type + + + + + Width + + + + + Precision + + + + + QgsAddJoinDialogBase + + + Add vector join + + + + + Join layer + + + + + Join field + + + + + Target field + + + + + Create attribute index on join field + + + + + Cache join layer in virtual memory + + + + + QgsAddTabOrGroup + + + Add tab or group for %1 + + + + + QgsAddTabOrGroupBase + + + Dialog + + + + + Create category + + + + + as + + + + + a tab + + + + + a group in container + + + + + QgsAnnotationWidget + + + Select frame color + + + + + QgsAnnotationWidgetBase + + + Form + + + + + Fixed map position + + + + + Map marker + + + + + Frame width + + + + + Frame color + + + + + QgsApplication + + + + + Exception + + + + + unknown exception + + + + + Application state: +QGIS_PREFIX_PATH env var: %1 +Prefix: %2 +Plugin Path: %3 +Package Data Path: %4 +Active Theme Name: %5 +Active Theme Path: %6 +Default Theme Path: %7 +SVG Search Paths: %8 +User DB Path: %9 + + + + + + + + match indentation of application state + + + + + QgsAtlasCompositionWidget + + + + Map %1 + + + + + Expression based filename + + + + + QgsAtlasCompositionWidgetBase + + + Atlas generation + + + + + Atlas options + + + + + Hide the coverage layer when generating the output + + + + + Hidden coverage layer + + + + + Margin around coverage + + + + + Output filename expression + + + + + % + + + + + ... + + + + + Coverage layer + + + + + Fixed scale + + + + + Single file export when possible + + + + + Composer map to use + + + + + Generate an atlas + + + + + QgsAttributeActionDialog + + + Select an action + File dialog window title + + + + + Insert expression + + + + + Missing Information + + + + + To create an attribute action, you must provide both a name and the action to perform. + + + + + Echo attribute's value + + + + + Run an application + + + + + Get feature id + + + + + Selected field's value (Identify features tool) + + + + + Clicked coordinates (Run feature actions tool) + + + + + Open file + + + + + Search on web based on attribute's value + + + + + QgsAttributeActionDialogBase + + + Attribute Actions + + + + + Action list + + + + + This list contains all actions that have been defined for the current layer. Add actions by entering the details in the controls below and then pressing the Add to action list button. Actions can be edited here by double clicking on the item. + + + + + + + Type + + + + + + Name + + + + + + Action + + + + + Capture + + + + + Remove the selected action + + + + + Remove action + + + + + Move the selected action up + + + + + Move up + + + + + Move the selected action down + + + + + Move down + + + + + Add default actions + + + + + Action properties + + + + + Generic + + + + + Python + + + + + Mac + + + + + Windows + + + + + Unix + + + + + Open + + + + + Captures any output from the action + + + + + Captures the standard output or error generated by the action and displays it in a dialog box + + + + + Capture output + + + + + + Enter the name of an action here. The name should be unique (qgis will make it unique if necessary). + + + + + Enter the action name here + + + + + Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters that start with a % and then have the name of a field will be replaced by the value of that field. The special characters %% will be replaced by the value of the field that was selected. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if prefixed with a backslash + + + + + Enter the action command here + + + + + Enter the action here. This can be any program, script or command that is available on your system. When the action is invoked any set of characters within [% and %] will be evaluated as expression and replaced by its result. Double quote marks group text into single arguments to the program, script or command. Double quotes will be ignored if prefixed with a backslash + + + + + Browse for action + + + + + Click to browse for an action + + + + + Clicking the button will let you select an application to use as the action + + + + + ... + + + + + Inserts an expression into the action + + + + + Insert expression... + + + + + The valid attribute names for this layer + + + + + Inserts the selected field into the action + + + + + Insert field + + + + + Inserts the action into the list above + + + + + Add to action list + + + + + Update the selected action + + + + + Update selected action + + + + + QgsAttributeDialog + + + Error + + + + + Error: %1 + + + + + Attributes - %1 + + + + + QgsAttributeEditor + + + Select a file + + + + + Select a date + + + + + (no selection) + + + + + ... + + + + + QgsAttributeLoadValues + + + Load values from layer + + + + + Layer + + + + + + Description + + + + + + Value + + + + + Select data from attributes in selected layer. + + + + + View All + + + + + QgsAttributeSelectionDialog + + + + + Ascending + + + + + + Descending + + + + + QgsAttributeSelectionDialogBase + + + Select attributes + + + + + Select all + + + + + Clear + + + + + Sorting + + + + + Column + + + + + Ascending + + + + + <b>Attribute</b> + + + + + <b>Alias</b> + + + + + QgsAttributeTableAction + + + Attributes changed + + + + + QgsAttributeTableDelegate + + + Attribute changed + + + + + QgsAttributeTableDialog + + + Attribute Table + + + + + Show selected only + + + + + Search selected only + + + + + Case sensitive + + + + + Opens the search query builder + + + + + Advanced search + + + + + ? + + + + + Close + + + + + Unselect all (Ctrl+U) + + + + + Ctrl+U + + + + + Move selection to top (Ctrl+T) + + + + + Ctrl+T + + + + + Invert selection (Ctrl+R) + + + + + Ctrl+S + + + + + Copy selected rows to clipboard (Ctrl+C) + + + + + Ctrl+C + + + + + Zoom map to the selected rows (Ctrl+J) + + + + + Ctrl+J + + + + + Pan map to the selected rows (Ctrl+P) + + + + + Ctrl+P + + + + + Toggle editing mode (Ctrl+E) + + + + + + Ctrl+E + + + + + Save Edits (Ctrl+S) + + + + + Delete selected features (Ctrl+D) + + + + + ... + + + + + Ctrl+D + + + + + New column (Ctrl+W) + + + + + Ctrl+W + + + + + Delete column (Ctrl+L) + + + + + Ctrl+L + + + + + Add feature + + + + + + + + + + + Open field calculator (Ctrl+I) + + + + + Ctrl+I + + + + + Look for + + + + + in + + + + + Looks for the given value in the given attribute column + + + + + &Search + + + + + Attribute table - %1 (%n Feature(s)) + feature count + + + + + + + + Attribute table - %1 :: %n / %2 feature(s) selected + feature count + + + + + + + + Parsing error + + + + + Evaluation error + + + + + Error during search + + + + + Attribute table - %1 (%n matching features) + matching features + + + + + + + + Attribute table - %1 (No matching features) + + + + + Attribute added + + + + + + Attribute Error + + + + + The attribute could not be added to the layer + + + + + Deleted attribute + + + + + The attribute(s) could not be deleted + + + + + Geometryless feature added + + + + + Run action + + + + + + Open form + + + + + Loading feature attributes... + + + + + Abort + + + + + Attribute table + + + + + %1 features loaded. + + + + + QgsAttributeTableModel + + + feature id + + + + + QgsAttributeTypeDialog + + + + Attribute Edit Dialog + + + + + Simple edit box. This is the default editation widget. + + + + + Displays combo box containing values of attribute used for classification. + + + + + Allows one to set numeric values from a specified range. The edit widget can be either a slider or a spin box. + + + + + Minimum + + + + + Maximum + + + + + Step + + + + + Local minimum/maximum = 0/0 + + + + + The user can select one of the values already used in the attribute. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used. + + + + + + + Editable + + + + + Simplifies file selection by adding a file chooser dialog. + + + + + Combo box with predefined items. Value is stored in the attribute, description is shown in the combo box. + + + + + Load Data from layer + + + + + Value + + + + + Description + + + + + Remove Selected + + + + + Load Data from CSV file + + + + + Combo box with values that can be used within the column's type. Must be supported by the provider. + + + + + An immutable attribute is read-only - the user is not able to modify the contents. + + + + + A hidden attribute will be invisible - the user is not able to see it's contents. + + + + + Representation for checked state + + + + + Representation for unchecked state + + + + + A text edit field that accepts multiple lines will be used. + + + + + A calendar widget to enter a date. + + + + + Layer + + + + + Key column + + + + + Select layer, key column and value column + + + + + Allow null value + + + + + Order by value + + + + + Allow multiple selections + + + + + Value column + + + + + Filter column + + + + + Filter value + + + + + Read-only field that generates a UUID if empty. + + + + + Line edit + + + + + Classification + + + + + Range + + + + + Unique values + + + + + File name + + + + + Value map + + + + + Enumeration + + + + + Immutable + + + + + Hidden + + + + + Checkbox + + + + + Text edit + + + + + Calendar + + + + + Value relation + + + + + UUID generator + + + + + Select a file + + + + + Error + + + + + Could not open file %1 +Error was:%2 + + + + + + Slider + + + + + Dial + + + + + + Current minimum for this value is %1 and current maximum is %2. + + + + + Attribute has no integer or real type, therefore range is not usable. + + + + + Enumeration is not available for this attribute + + + + + No filter + + + + + QgsBookmarks + + + &Add + + + + + &Delete + + + + + &Zoom to + + + + + + Error + + + + + Unable to open bookmarks database. +Database: %1 +Driver: %2 +Database: %3 + + + + + Name + + + + + Project + + + + + xMin + + + + + yMin + + + + + xMax + + + + + yMax + + + + + SRID + + + + + New bookmark + + + + + Unable to create the bookmark. +Driver:%1 +Database:%2 + + + + + Really Delete? + + + + + Are you sure you want to delete %n bookmark(s)? + number of rows + + + + + + + + Empty extent + + + + + Reprojected extent is empty. + + + + + QgsBookmarksBase + + + Geospatial Bookmarks + + + + + QgsBrowser + + + WMS + + + + + Cannot get WMS select dialog from provider. + + + + + CRS + + + + + Cannot set layer CRS + + + + + QgsBrowserBase + + + QGIS Browser + + + + + Param + + + + + Metadata + + + + + Preview + + + + + Stop rendering + + + + + Attributes + + + + + toolBar + + + + + New Shapefile + + + + + Ctrl+Shift+N + + + + + Refresh + + + + + Ctrl+R + + + + + + Set layer CRS + + + + + Manage WMS + + + + + Manage WMS Connections + + + + + Ctrl+Shift+W + + + + + QgsBrowserDirectoryPropertiesBase + + + Dialog + + + + + Path + + + + + QgsBrowserDockWidget + + + Browser + + + + + Filter Pattern Syntax + + + + + Wildcard(s) + + + + + Regular Expression + + + + + Add as a favourite + + + + + Remove favourite + + + + + + Properties + + + + + Add Layer + + + + + Add Selected Layers + + + + + Add a directory + + + + + Add directory to favourites + + + + + Error + + + + + Layer Properties + + + + + Directory Properties + + + + + QgsBrowserDockWidgetBase + + + Browser + + + + + + Refresh + + + + + Add Selected Layers + + + + + Add + + + + + Filter Files + + + + + + ... + + + + + Collapse All + + + + + Options + + + + + Filter files + + + + + QgsBrowserLayerPropertiesBase + + + Dialog + + + + + Display Name + + + + + Layer Source + + + + + Provider + + + + + Metadata + + + + + QgsBrowserModel + + + Home + + + + + Favourites + + + + + QgsBrushStyleComboBox + + + Solid + + + + + No Brush + + + + + Horizontal + + + + + Vertical + + + + + Cross + + + + + BDiagonal + + + + + FDiagonal + + + + + Diagonal X + + + + + Dense 1 + + + + + Dense 2 + + + + + Dense 3 + + + + + Dense 4 + + + + + Dense 5 + + + + + Dense 6 + + + + + Dense 7 + + + + + QgsCategorizedSymbolRendererV2Widget + + + Column + + + + + + + Symbol + + + + + change + + + + + Color ramp + + + + + Classify + + + + + Add + + + + + Delete + + + + + Delete all + + + + + Join + + + + + Advanced + + + + + + Value + + + + + + Label + + + + + Symbol levels... + + + + + + Error + + + + + There are no available color ramps. You can add them in Style Manager. + + + + + The selected color ramp is not available. + + + + + Confirm Delete + + + + + The classification field was changed from '%1' to '%2'. +Should the existing classes be deleted before classification? + + + + + QgsColorRampComboBox + + + New color ramp... + + + + + QgsCompassPlugin + + + Show compass + + + + + &About + + + + + QgsCompassPluginGui + + + Pixmap not found + + + + + QgsCompassPluginGuiBase + + + Internal Compass + + + + + Azimut + + + + + QgsComposer + + + QGIS + + + + + File + + + + + View + + + + + Panels + + + + + Toolbars + + + + + Layout + + + + + Composition + + + + + Item Properties + + + + + Command history + + + + + Atlas generation + + + + + + Choose a file name to save the map as + + + + + PDF Format + + + + + + + Empty filename pattern + + + + + + + The filename pattern is empty. A default one will be used. + + + + + Directory where to save PDF files + + + + + + + Unable to write into the directory + + + + + + + The given output directory is not writeable. Cancelling. + + + + + + + + Rendering maps... + + + + + + + + Abort + + + + + + + + Atlas processing error + + + + + Big image + + + + + To create image %1x%2 requires about %3 MB of memory. Proceed? + + + + + Choose a file name to save the map image as + + + + + Directory where to save image files + + + + + Image format: + + + + + SVG warning + + + + + + Don't show this message again + + + + + <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the + + + + + Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p> + + + + + If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p> + + + + + SVG Format + + + + + Directory where to save SVG files + + + + + Save template + + + + + Composer templates + + + + + Save error + + + + + Error, could not save file + + + + + Load template + + + + + Read error + + + + + Error, could not read file + + + + + Composer + + + + + Project contains WMS layers + + + + + Some WMS servers (e.g. UMN mapserver) have a limit for the WIDTH and HEIGHT parameter. Printing layers from such servers may exceed this limit. If this is the case, the WMS layer will not be printed + + + + + QgsComposerArrowWidget + + + General options + + + + + Arrow outline width + + + + + Arrowhead width + + + + + Arrow color + + + + + Arrow color changed + + + + + + + Arrow marker changed + + + + + + Arrow start marker + + + + + + Arrow end marker + + + + + Start marker svg file + + + + + End marker svg file + + + + + QgsComposerArrowWidgetBase + + + Form + + + + + Arrow + + + + + Arrow color... + + + + + Line width + + + + + Arrow head width + + + + + Arrow markers + + + + + Start marker + + + + + + ... + + + + + SVG markers + + + + + End marker + + + + + No marker + + + + + Default marker + + + + + QgsComposerBase + + + MainWindow + + + + + Toolbar + + + + + &Print... + + + + + Zoom Full + + + + + Zoom In + + + + + Zoom Out + + + + + Add Map + + + + + Add new map + + + + + Add Label + + + + + Add new label + + + + + Add Legend + + + + + Add new legend + + + + + Move Item + + + + + Select/Move item + + + + + Export as Image... + + + + + Export as PDF... + + + + + Export as SVG... + + + + + Add Scalebar + + + + + Add new scalebar + + + + + Refresh + + + + + Refresh view + + + + + Add Image + + + + + Move Content + + + + + Move item content + + + + + Group + + + + + Group items + + + + + Ungroup + + + + + Ungroup items + + + + + Raise + + + + + Raise selected items + + + + + Lower + + + + + Lower selected items + + + + + Bring to Front + + + + + Move selected items to top + + + + + Send to Back + + + + + Move selected items to bottom + + + + + Load From template + + + + + Save as template + + + + + Align left + + + + + Align selected items left + + + + + Align center + + + + + Align center horizontal + + + + + Align right + + + + + Align selected items right + + + + + Align top + + + + + Align selected items to top + + + + + + Align center vertical + + + + + Align bottom + + + + + Align selected items bottom + + + + + &Quit + + + + + Quit + + + + + Ctrl+Q + + + + + Add arrow + + + + + Add table + + + + + Adds attribute table + + + + + Page Setup + + + + + Undo + + + + + Revert last change + + + + + Ctrl+Z + + + + + Redo + + + + + Restore last change + + + + + Ctrl+Shift+Z + + + + + + Add Rectangle + + + + + + Add Triangle + + + + + + Add Ellipse + + + + + Add html + + + + + Add html frame + + + + + QgsComposerHtmlWidget + + + Use existing frames + + + + + Extend to next page + + + + + Repeat on every page + + + + + Repeat until finished + + + + + General options + + + + + Change html url + + + + + Select HTML document + + + + + Change resize mode + + + + + QgsComposerHtmlWidgetBase + + + Form + + + + + HTML + + + + + ... + + + + + URL + + + + + Resize mode + + + + + QgsComposerItem + + + Change item position + + + + + QgsComposerItemWidget + + + Frame color changed + + + + + Background color changed + + + + + Item opacity changed + + + + + Item outline width + + + + + Item frame toggled + + + + + Item position changed + + + + + Item id changed + + + + + QgsComposerItemWidgetBase + + + Form + + + + + Frame color... + + + + + Background color... + + + + + Opacity + + + + + Outline width + + + + + Position and size... + + + + + Show frame + + + + + Item ID + + + + + QgsComposerLabelWidget + + + General options + + + + + Label text changed + + + + + + Label font changed + + + + + Label margin changed + + + + + + Insert expression + + + + + + + + + + Label alignment changed + + + + + Label id changed + + + + + Label rotation changed + + + + + QgsComposerLabelWidgetBase + + + Label Options + + + + + Label + + + + + Font color... + + + + + Horizontal Alignment: + + + + + Left + + + + + Center + + + + + Right + + + + + Vertical Alignment: + + + + + Top + + + + + Middle + + + + + Bottom + + + + + Margin + + + + + mm + + + + + Rotation + + + + + Font + + + + + Insert an expression + + + + + QgsComposerLegend + + + Legend + + + + + QgsComposerLegendItemDialogBase + + + Legend item properties + + + + + Item text + + + + + QgsComposerLegendLayersDialogBase + + + Add layer to legend + + + + + QgsComposerLegendWidget + + + General Options + + + + + Item wrapping changed + + + + + Legend title changed + + + + + Legend symbol width + + + + + Legend symbol height + + + + + Legend group space + + + + + Legend layer space + + + + + Legend symbol space + + + + + Legend icon label space + + + + + Title font changed + + + + + Legend group font changed + + + + + Legend layer font changed + + + + + Legend item font changed + + + + + Legend box space + + + + + Legend map changed + + + + + Legend item edited + + + + + + + Legend updated + + + + + Legend group added + + + + + Map %1 + + + + + None + + + + + QgsComposerLegendWidgetBase + + + Barscale Options + + + + + General + + + + + Title Font... + + + + + Group Font... + + + + + Layer Font... + + + + + Item Font... + + + + + Symbol width + + + + + + + + + + + mm + + + + + Symbol height + + + + + Layer space + + + + + Symbol space + + + + + Icon label space + + + + + Box space + + + + + Map + + + + + &Title + + + + + Group Space + + + + + Wrap text on + + + + + Legend items + + + + + Auto Update + + + + + Update + + + + + All + + + + + Add group + + + + + Show feature count for each class of vector layer. + + + + + QgsComposerManager + + + &Show + + + + + &Remove + + + + + Re&name + + + + + Empty composer + + + + + Remove composer + + + + + Do you really want to remove the map composer '%1'? + + + + + Change title + + + + + Title + + + + + QgsComposerManagerBase + + + Composer manager + + + + + Add + + + + + QgsComposerMap + + + + Map %1 + + + + + Map will be printed here + + + + + QgsComposerMapWidget + + + General options + + + + + + + Cache + + + + + + + Render + + + + + + + Rectangle + + + + + + Solid + + + + + + + Cross + + + + + Decimal + + + + + DegreeMinute + + + + + DegreeMinuteSecond + + + + + + No frame + + + + + + + Zebra + + + + + Change item width + + + + + Change item height + + + + + Map scale changed + + + + + Map rotation changed + + + + + + Map extent changed + + + + + Canvas items toggled + + + + + + + None + + + + + Grid checkbox toggled + + + + + + Grid interval changed + + + + + + Grid offset changed + + + + + + Grid pen changed + + + + + Grid type changed + + + + + Grid cross width changed + + + + + Annotation font changed + + + + + Annotation distance changed + + + + + Annotation format changed + + + + + Annotation toggled + + + + + Changed annotation precision + + + + + Changed grid frame style + + + + + Changed grid frame width + + + + + + + Inside frame + + + + + + Outside frame + + + + + + + Disabled + + + + + + + Horizontal + + + + + + Vertical + + + + + Annotation position changed + + + + + Changed annotation direction + + + + + Map %1 + + + + + QgsComposerMapWidgetBase + + + Map options + + + + + Map + + + + + Update preview + + + + + Overview style + + + + + Change... + + + + + Overview frame + + + + + Width + + + + + Height + + + + + Scale + + + + + Rotation + + + + + degrees + + + + + Lock layers for map item + + + + + Draw map canvas items + + + + + Extents + + + + + X min + + + + + X max + + + + + Y min + + + + + Y max + + + + + Set to map canvas extent + + + + + Grid + + + + + Show grid? + + + + + Grid &type + + + + + Interval X + + + + + Interval Y + + + + + Offset X + + + + + Offset Y + + + + + Cross width + + + + + Line width + + + + + Frame style + + + + + Frame width + + + + + Line color + + + + + Draw annotation + + + + + Annotation position left side + + + + + Annotation position right side + + + + + Annotation position top side + + + + + Annotation position bottom side + + + + + Annotation direction left side + + + + + Annotation direction right side + + + + + Annotation direction top side + + + + + Annotation direction bottom side + + + + + Annotation format + + + + + Font... + + + + + Distance to map frame + + + + + Coordinate precision + + + + + QgsComposerPictureWidget + + + General options + + + + + Select svg or image file + + + + + + + Picture changed + + + + + Picture width changed + + + + + Picture height changed + + + + + Picture rotation changed + + + + + Select new preview directory + + + + + Rotation synchronisation toggled + + + + + Rotation map changed + + + + + + Map %1 + + + + + Creating icon for file %1 + + + + + QgsComposerPictureWidgetBase + + + Picture Options + + + + + Picture options + + + + + Preloaded images + + + + + Load another + + + + + ... + + + + + Options + + + + + Width + + + + + Height + + + + + Rotation + + + + + Sync with map + + + + + Search directories + + + + + Add... + + + + + Remove + + + + + QgsComposerScaleBar + + + km + + + + + m + + + + + QgsComposerScaleBarWidget + + + General options + + + + + + Single Box + + + + + + Double Box + + + + + + + Line Ticks Middle + + + + + + Line Ticks Down + + + + + + Line Ticks Up + + + + + + Numeric + + + + + Left + + + + + Middle + + + + + Right + + + + + Map units + + + + + Meters + + + + + Feet + + + + + + + Map %1 + + + + + Scalebar map changed + + + + + Scalebar line width + + + + + Scalebar segment size + + + + + Scalebar segments left + + + + + Scalebar n segments + + + + + Scalebar height changed + + + + + Scalebar font changed + + + + + Scalebar color changed + + + + + Scalebar unit text + + + + + Scalebar map units per segment + + + + + Scalebar style changed + + + + + Scalebar label bar space + + + + + Scalebar box content space + + + + + Scalebar alignment + + + + + Scalebar unit changed + + + + + QgsComposerScaleBarWidgetBase + + + Barscale Options + + + + + Scale bar + + + + + Segment size + + + + + Units + + + + + Map units per bar unit + + + + + Left segments + + + + + Right segments + + + + + Style + + + + + Map + + + + + Alignment + + + + + + + + mm + + + + + Height + + + + + Line width + + + + + Label space + + + + + Box space + + + + + Unit label + + + + + Font... + + + + + Color... + + + + + QgsComposerShapeWidget + + + General options + + + + + + + Ellipse + + + + + + + Rectangle + + + + + + + Triangle + + + + + Shape rotation changed + + + + + Shape type changed + + + + + Select outline color + + + + + Shape outline color + + + + + Shape outline width + + + + + Shape transparency toggled + + + + + Select fill color + + + + + Shape fill color + + + + + QgsComposerShapeWidgetBase + + + Form + + + + + Shape + + + + + Shape outline color... + + + + + Outline width + + + + + Transparent fill + + + + + Shape fill Color... + + + + + Rotation + Rotation + Rotation + + + + + QgsComposerTableWidget + + + General options + + + + + + Map %1 + + + + + Table layer changed + + + + + Table attribute settings + + + + + Table map changed + + + + + + Table maximum columns + + + + + + + + Select Font + + + + + Table header font + + + + + Table content font + + + + + Table grid stroke + + + + + Select grid color + + + + + Table grid color + + + + + Table grid toggled + + + + + Table visible only toggled + + + + + QgsComposerTableWidgetBase + + + Form + + + + + Table + + + + + Layer + + + + + Attributes... + + + + + Composer map + + + + + Maximum rows + + + + + Show grid + + + + + Grid stroke width + + + + + Grid color + + + + + Header Font... + + + + + Content Font... + + + + + Margin + + + + + Show only visible features + + + + + QgsComposerVectorLegendBase + + + Vector Legend Options + + + + + Preview + + + + + Map + + + + + Title + + + + + Layers + + + + + Group + + + + + ID + + + + + Box + + + + + Font + + + + + QgsComposerView + + + Quantum GIS + + + + + Label added + + + + + Scale bar added + + + + + Legend added + + + + + Picture added + + + + + Table added + + + + + Shape added + + + + + Move item content + + + + + Arrow added + + + + + Map added + + + + + Html item added + + + + + Html frame added + + + + + + + + Item moved + + + + + Zoom item content + + + + + QgsComposition + + + Label added + + + + + Map added + + + + + Arrow added + + + + + Scale bar added + + + + + Shape added + + + + + Picture added + + + + + Legend added + + + + + Table added + + + + + Aligned items left + + + + + Aligned items hcenter + + + + + Aligned items right + + + + + Aligned items top + + + + + Aligned items vcenter + + + + + Aligned items bottom + + + + + Item z-order changed + + + + + Remove item group + + + + + Frame deleted + + + + + Item deleted + + + + + Multiframe removed + + + + + QgsCompositionBase + + + Composition + + + + + Paper + + + + + Size + + + + + Units + + + + + Width + + + + + Height + + + + + Orientation + + + + + QgsCompositionWidget + + + mm + + + + + inch + + + + + + + Landscape + + + + + + Portrait + + + + + + Solid + + + + + + Dots + + + + + + Crosses + + + + + A5 (148x210 mm) + + + + + A4 (210x297 mm) + + + + + A3 (297x420 mm) + + + + + A2 (420x594 mm) + + + + + A1 (594x841 mm) + + + + + A0 (841x1189 mm) + + + + + B5 (176 x 250 mm) + + + + + B4 (250 x 353 mm) + + + + + B3 (353 x 500 mm) + + + + + B2 (500 x 707 mm) + + + + + B1 (707 x 1000 mm) + + + + + B0 (1000 x 1414 mm) + + + + + Legal (8.5x14 inches) + + + + + ANSI A (Letter; 8.5x11 inches) + + + + + ANSI B (Tabloid; 11x17 inches) + + + + + ANSI C (17x22 inches) + + + + + ANSI D (22x34 inches) + + + + + ANSI E (34x44 inches) + + + + + Arch A (9x12 inches) + + + + + Arch B (12x18 inches) + + + + + Arch C (18x24 inches) + + + + + Arch D (24x36 inches) + + + + + Arch E (36x48 inches) + + + + + Arch E1 (30x42 inches) + + + + + + + + Custom + + + + + QgsCompositionWidgetBase + + + Composition + + + + + Paper and quality + + + + + Size + + + + + Width + + + + + Height + + + + + Orientation + + + + + Print as raster + + + + + dpi + + + + + Quality + + + + + Number of pages + + + + + Snapping + + + + + Snap to grid + + + + + X offset + + + + + Y offset + + + + + Grid color + + + + + Grid style + + + + + Selection tolerance (mm) + + + + + Spacing + + + + + Pen width + + + + + QgsConfigureShortcutsDialog + + + Configure shortcuts + + + + + Action + + + + + Shortcut + + + + + + Change + + + + + Set none + + + + + Set default + + + + + Load... + + + + + Save... + + + + + Save shortcuts + + + + + + XML file + + + + + + All files + + + + + Saving shortcuts + + + + + Cannot write file %1: +%2. + + + + + Load shortcuts + + + + + + + + Loading shortcuts + + + + + Cannot read file %1: +%2. + + + + + Parse error at line %1, column %2: +%3 + + + + + The file is not an shortcuts exchange file. + + + + + The file contains shortcuts created with different locale, so you can't use it. + + + + + None + + + + + Set default (%1) + + + + + Input: + + + + + Shortcut conflict + + + + + This shortcut is already assigned to action %1. Reassign? + + + + + QgsContinuousColorDialogBase + + + Continuous color + + + + + Classification field + + + + + Minimum value + + + + + Maximum value + + + + + Outline width + + + + + Draw polygon outline + + + + + QgsCoordinateTransform + + + The source spatial reference system (CRS) is not valid. The coordinates can not be reprojected. The CRS is: %1 + + + + + + CRS + + + + + The destination spatial reference system (CRS) is not valid. The coordinates can not be reprojected. The CRS is: %1 + + + + + inverse transform + + + + + forward transform + + + + + %1 of +%2PROJ.4: %3 +to %4 +Error: %5 + + + + + QgsCptCityBrowserModel + + + Name + + + + + Info + + + + + QgsCptCityColorRampItem + + + colors + + + + + continuous + + + + + continuous (multi) + + + + + discrete + + + + + variants + + + + + QgsCptCityColorRampV2Dialog + + + Error - cpt-city gradient files not found. + +You have two means of installing them: + +1) Install the "Color Ramp Manager" python plugin (you must enable Experimental plugins in the plugin manager) and use it to download latest cpt-city package. +You can install the entire cpt-city archive or a selection for QGIS. + +2) Download the complete archive (in svg format) and unzip it to your QGis settings directory [%1] . + +This file can be found at [%2] +and current file is [%3] + + + + + Selections by theme + + + + + All by author + + + + + You can download a more complete set of cpt-city gradients by installing the "Color Ramp Manager" plugin (you must enable Experimental plugins in the plugin manager). + + + + + + + %1 directory details + + + + + %1 gradient details + + + + + QgsCptCityColorRampV2DialogBase + + + cpt-city color ramp + + + + + Selection and preview + + + + + + License + + + + + Palette + + + + + Path + + + + + Information + + + + + Author(s) + + + + + Source + + + + + Details + + + + + QgsCredentialDialog + + + Enter Credentials + + + + + Username + + + + + Password + + + + + + TextLabel + + + + + Realm + + + + + QgsCustomProjectionDialog + + + Delete Projection Definition? + + + + + Deleting a projection definition is not reversable. Do you want to delete it? + + + + + + + + %1 of %2 + + + + + + + + Abort + + + + + + New + + + + + * of %1 + + + + + + + + + + + + QGIS Custom Projection + + + + + + + + + This proj4 projection definition is not valid. + + + + + Please give the projection a name before pressing save. + + + + + Please add the parameters before pressing save. + + + + + Please add a proj= clause before pressing save. + + + + + This proj4 ellipsoid definition is not valid. Please add a ellips= clause before pressing save. + COMMENTED OUT + + + + + Please correct before pressing save. + + + + + Northing and Easthing must be in decimal form. + + + + + Internal Error (source projection invalid?) + + + + + + Error + + + + + QgsCustomProjectionDialogBase + + + Custom Coordinate Reference System Definition + + + + + Define + + + + + You can define your own custom Coordinate Reference System (CRS) here. The definition must conform to the proj4 format for specifying a CRS. + + + + + Name + + + + + + Parameters + + + + + |< + + + + + < + + + + + 1 of 1 + + + + + > + + + + + >| + + + + + * + + + + + S + + + + + X + + + + + Test + + + + + Use the text boxes below to test the CRS definition you are creating. Enter a coordinate where both the lat/long and the transformed result are known (for example by reading off a map). Then press the calculate button to see if the CRS definition you are creating is accurate. + + + + + Geographic / WGS84 + + + + + Destination CRS + + + + + North + + + + + East + + + + + Calculate + + + + + QgsCustomizationDialog + + + Object name + + + + + Label + + + + + Description + + + + + + Choose a customization INI file + + + + + + Customization files (*.ini) + + + + + Widgets + + + + + QgsCustomizationDialogBase + + + Customization + + + + + toolBar + + + + + Catch + + + + + Switch to catching widgets in main application + + + + + Save + + + + + Save to file + + + + + Load + + + + + Load from file + + + + + Expand All + + + + + Collapse All + + + + + Select All + + + + + QgsDashSpaceDialogBase + + + Dash space pattern + + + + + Dash + + + + + Space + + + + + QgsDbSourceSelectBase + + + Add PostGIS layers + + + + + Connections + + + + + Connect + + + + + New + + + + + Edit + + + + + Delete + + + + + Load + Load connections from file + + + + + Save connections to file + + + + + Save + + + + + Also list tables with no geometry + + + + + Search options + + + + + Search + + + + + Search mode + + + + + Search in columns + + + + + QgsDecorationCopyright + + + Bottom Left + + + + + Top Left + + + + + Top Right + + + + + Bottom Right + + + + + QgsDecorationCopyrightDialog + + + Copyright Label Decoration + + + + + Enable copyright label + + + + + &Enter your copyright label here: + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana';">© QGIS 2009</span></p></body></html> + + + + + &Placement + + + + + Bottom Left + + + + + Top Left + + + + + Bottom Right + + + + + Top Right + + + + + &Orientation + + + + + Horizontal + + + + + Vertical + + + + + &Color + + + + + QgsDecorationGrid + + + + + + Error + + + + + No active layer + + + + + Please select a raster layer + + + + + Invalid raster layer + + + + + Layer CRS must be equal to project CRS + + + + + QgsDecorationGridDialog + + + Dialog + + + + + Enable grid + + + + + Interval X + + + + + Interval Y + + + + + Grid type + + + + + Line symbol + + + + + Draw annotation + + + + + Annotation direction + + + + + Font... + + + + + Distance to map frame + + + + + Coordinate precision + + + + + Marker symbol + + + + + Offset X + + + + + Offset Y + + + + + Update Interval / Offset from + + + + + Canvas Extents + + + + + Active Raster Layer + + + + + + Line + + + + + + Marker + + + + + + Horizontal + + + + + + Vertical + + + + + Horizontal and vertical + + + + + Boundary direction + + + + + Horizontal and Vertical + + + + + QgsDecorationNorthArrow + + + Bottom Left + + + + + Top Left + + + + + Top Right + + + + + Bottom Right + + + + + North arrow pixmap not found + + + + + QgsDecorationNorthArrowDialog + + + North Arrow Decoration + + + + + Preview of north arrow + + + + + Angle + + + + + Placement + + + + + Placement on screen + + + + + Top Left + + + + + Top Right + + + + + Bottom Left + + + + + Bottom Right + + + + + Enable North Arrow + + + + + Set direction automatically + + + + + Pixmap not found + + + + + QgsDecorationScaleBar + + + Bottom Left + + + + + Top Left + + + + + Top Right + + + + + Bottom Right + + + + + Tick Down + + + + + Tick Up + + + + + Bar + + + + + Box + + + + + km + + + + + mm + + + + + cm + + + + + m + + + + + miles + + + + + mile + + + + + inches + + + + + foot + + + + + feet + + + + + degree + + + + + degrees + + + + + unknown + + + + + QgsDecorationScaleBarDialog + + + Scale Bar Decoration + + + + + Placement + + + + + Top Left + + + + + Top Right + + + + + Bottom Left + + + + + Bottom Right + + + + + Scale bar style + + + + + Select the style of the scale bar + + + + + Tick Down + + + + + Tick Up + + + + + Box + + + + + Bar + + + + + Color of bar + + + + + + Click to select the color + + + + + Size of bar + + + + + Enable scale bar + + + + + Automatically snap to round number on resize + + + + + metres/km + + + + + feet/miles + + + + + degrees + + + + + QgsDelAttrDialogBase + + + Delete Attributes + + + + + QgsDelimitedTextPlugin + + + DelimitedTextLayer + + + + + &Add Delimited Text Layer + + + + + Add a delimited text file as a map layer. The file must have a header row containing the field names. The file must either contain X and Y fields with coordinates in decimal units or a WKT field. + + + + + Delimited Text + + + + + Cannot get Delimited Text select dialog from provider. + + + + + QgsDelimitedTextProvider + + + Error + + + + + Note: the following lines were not loaded because QGIS was unable to determine values for the x and y coordinates: + + + + + + QgsDelimitedTextSourceSelect + + + No layer name + + + + + Please enter a layer name before adding the layer to the map + + + + + Choose a delimited text file to open + + + + + Text files + + + + + Well Known Text files + + + + + All files + + + + + QgsDelimitedTextSourceSelectBase + + + Create a Layer from a Delimited Text File + + + + + File Name + + + + + Full path to the delimited text file + + + + + Full path to the delimited text file. In order to properly parse the fields in the file, the delimiter must be defined prior to entering the file name. Use the Browse button to the right of this field to choose the input file. + + + + + Layer name + + + + + Name to display in the map legend + + + + + Name displayed in the map legend + + + + + Browse to find the delimited text file to be processed + + + + + Use this button to browse to the location of the delimited text file. This button will not be enabled until a delimiter has been entered in the <i>Delimiter</i> box. Once a file is chosen, the X and Y field drop-down boxes will be populated with the fields from the delimited text file. + + + + + Browse... + + + + + Selected delimiters + + + + + + The delimiter is a regular expression + + + + + Regular expression + + + + + + The delimiter is taken as is + + + + + Plain characters + + + + + Tab + + + + + Space + + + + + Comma + + + + + Semicolon + + + + + Colon + + + + + Delimiter to use when splitting fields in the text file. The delimiter can be more than one character. + + + + + Delimiter to use when splitting fields in the delimited text file. The delimiter can be 1 or more characters in length. + + + + + Start import at row + + + + + The file contains X and Y coordinate columns + + + + + X Y fields + + + + + <p align="right">X field</p> + + + + + Name of the field containing x values + + + + + Name of the field containing x values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. + + + + + <p align="right">Y field</p> + + + + + + Name of the field containing y values + + + + + + Name of the field containing y values. Choose a field from the list. The list is generated by parsing the header row of the delimited text file. + + + + + The file contains a well known text geometry field + + + + + WKT field + + + + + Decimal point + + + + + Sample text + + + + + QgsDetailedItemWidgetBase + + + Form + + + + + Heading Label + + + + + Detail label + + + + + Category label + + + + + QgsDiagramProperties + + + + mm + + + + + Map units + + + + + Around Point + + + + + Over Point + + + + + Line + + + + + Horizontal + + + + + Free + + + + + On line + + + + + Above line + + + + + Below Line + + + + + Map orientation + + + + + Pie chart + + + + + Text diagram + + + + + Histogram + + + + + Height + + + + + + x-height + + + + + Area + + + + + Diameter + + + + + + None + + + + + Unknown diagram type. + + + + + The diagram type '%1' is unknown. A default type is selected for you. + + + + + Transparency: %1% + + + + + Background color + + + + + Pen color + + + + + No attributes added. + + + + + You did not add any attributes to this diagram layer. Please specify the attributes to visualize on the diagrams or disable diagrams. + + + + + No attribute value specified + + + + + You did not specify a maximum value for the diagram size. Please specify the attribute and a reference value as a base for scaling in the Tab Diagram / Size. + + + + + QgsDiagramPropertiesBase + + + Display diagrams + + + + + Diagram type + + + + + Priority: + + + + + Low + + + + + High + + + + + Appearance + + + + + Background color + + + + + Line color + + + + + Line width + + + + + Font... + + + + + Bar width + + + + + Transparency 0% + + + + + Only show diagrams with a size inside the specified range. + + + + + Hide diagrams with a size outside the specified range. + + + + + Scale dependent visibility + + + + + Minimum + + + + + Maximum + + + + + + Size + + + + + Fixed size + + + + + Size units + + + + + Scale linearly between 0 and the following attribute value / diagram size: + + + + + + Attribute + + + + + Find maximum value + + + + + Scale + + + + + Will scale diagrams with a size smaller than the minimum size to the minimum size + + + + + Increase size of small diagrams + + + + + Minimum size + + + + + Position + + + + + Placement + + + + + Line Options + + + + + Distance + + + + + Data defined position + + + + + x + + + + + y + + + + + Automated placement settings + + + + + Options + + + + + Label placement + + + + + Bar Orientation + + + + + Up + + + + + Down + + + + + Right + + + + + Left + + + + + Attributes + + + + + Available attributes + + + + + Assigned attributes + + + + + Drag and drop to reorder + + + + + Color + + + + + QgsDirectoryParamWidget + + + + Name + + + + + + Size + + + + + + Date + + + + + + Permissions + + + + + + Owner + + + + + + Group + + + + + + Type + + + + + folder + + + + + file + + + + + link + + + + + QgsDisplayAngle + + + %1 degrees + + + + + %1 radians + + + + + %1 gon + + + + + QgsDisplayAngleBase + + + Angle + + + + + QgsEncodingFileDialog + + + Encoding: + + + + + Cancel &All + + + + + QgsEngineConfigDialog + + + Dialog + + + + + Search method + + + + + Chain (fast) + + + + + Popmusic Tabu + + + + + Popmusic Chain + + + + + Popmusic Tabu Chain + + + + + FALP (fastest) + + + + + Number of candidates + + + + + Point + + + + + Line + + + + + Polygon + + + + + Show all labels and features for all layers + + + + + Show candidates (for debugging) + + + + + (i.e. including colliding objects) + + + + + QgsErrorDialog + + + Error + + + + + QgsErrorDialogBase + + + Dialog + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Summary</p></body></html> + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detailed report.</p></body></html> + + + + + Always show details + + + + + Details >> + + + + + QgsExpressionBuilderDialogBase + + + Expression string builder + + + + + QgsExpressionBuilderWidget + + + + + + + + + + + + + + + + + + + + + Operators + + + + + (String Concatenation) + + + + + Joins two values together into a string + + + + + Usage + + + + + 'Dia' || Diameter + + + + + + Conditionals + + + + + Search + + + + + Fields and Values + + + + + Parser Error + + + + + Eval Error + + + + + Expression is invalid <a href=more>(more info)</a> + + + + + More info on expression error + + + + + Load top 10 unique values + + + + + Load all unique values + + + + + <h3>Oops! QGIS can't find help for this function.</h3>The help file for %1 was not found.<br> + + + + + (Showing English version as there was no help available in your language (%1). If you would like to create it, contact the QGIS translation team).<br> + + + + + It was neither available in your language (%1) nor English. + + + + + <br>If you would like to create it, contact the QGIS development team. + + + + + QgsExpressionBuilderWidgetBase + + + Form + + + + + Function List + + + + + Selected Function Help + + + + + Field Values + + + + + Load all unique values + + + + + Load 10 sample values + + + + + Operators + + + + + = + + + + + + + + + + + - + + + + + / + + + + + * + + + + + ^ + + + + + || + + + + + ( + + + + + ) + + + + + + Output preview is generated <br> using the first feature from the layer. + + + + + Output preview: + + + + + Expression + + + + + QgsFeatureAction + + + Run actions + + + + + QgsFieldCalculator + + + + Not available for layer + + + + + Evaluation error + + + + + Provider error + + + + + Could not add the new field to the provider. + + + + + Error + + + + + An error occured while evaluating the calculation string: +%1 + + + + + Please enter a field name + + + + + + The expression is invalid see (more info) for details + + + + + QgsFieldCalculatorBase + + + Field calculator + + + + + Only update selected features + + + + + Create a new field + + + + + Output field name + + + + + Output field type + + + + + Output field width + + + + + Width of complete output. For example 123,456 means 6 as field width. + + + + + Precision + + + + + Update existing field + + + + + QgsFieldsProperties + + + Label + + + + + Id + + + + + Name + + + + + Type + + + + + Length + + + + + Precision + + + + + Comment + + + + + Edit widget + + + + + Alias + + + + + + Name conflict + + + + + + The attribute could not be inserted. The name already exists in the table. + + + + + Added attribute + + + + + + Deleted attribute + + + + + Line edit + + + + + Unique values + + + + + Unique values editable + + + + + Classification + + + + + Value map + + + + + Edit range + + + + + Slider range + + + + + Dial range + + + + + File name + + + + + Enumeration + + + + + Immutable + + + + + Hidden + + + + + Checkbox + + + + + Text edit + + + + + Calendar + + + + + Value relation + + + + + UUID generator + + + + + Select edit form + + + + + UI file + + + + + QgsFieldsPropertiesBase + + + Field calculator + + + + + + Click to toggle table editing + + + + + Toggle editing mode + + + + + New column + + + + + Ctrl+N + + + + + Delete column + + + + + Ctrl+X + + + + + ... + + + + + Init function + + + + + Edit UI + + + + + + + + + + + - + + + + + > + + + + + ^ + + + + + v + + + + + Autogenerate + + + + + Drag and drop designer + + + + + Provide ui-file + + + + + Attribute editor layout: + + + + + QgsFormAnnotationDialog + + + Delete + + + + + Qt designer file + + + + + QgsFormAnnotationDialogBase + + + Dialog + + + + + ... + + + + + QgsGCPListModel + + + + map units + + + + + + pixels + + + + + QgsGCPListWidget + + + Recenter + + + + + Remove + + + + + QgsGPSDetector + + + internal GPS + + + + + local gpsd + + + + + QgsGPSDeviceDialog + + + New device %1 + + + + + Are you sure? + + + + + Are you sure that you want to delete this device? + + + + + QgsGPSDeviceDialogBase + + + GPS Device Editor + + + + + Devices + + + + + Delete + + + + + New + + + + + Update + + + + + Device name + + + + + This is the name of the device as it will appear in the lists + + + + + Commands + + + + + Track download + + + + + Route upload + + + + + Waypoint download + + + + + The command that is used to download routes from the device + + + + + Route download + + + + + The command that is used to upload waypoints to the device + + + + + Track upload + + + + + The command that is used to download tracks from the device + + + + + The command that is used to upload routes to the device + + + + + The command that is used to download waypoints from the device + + + + + The command that is used to upload tracks to the device + + + + + Waypoint upload + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">In the download and upload commands there can be special words that will be replaced by QGIS when the commands are used. These words are:</span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%babel</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the path to GPSBabel<br /></span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%in</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the GPX filename when uploading or the port when downloading<br /></span><span style=" font-family:'Sans Serif'; font-size:9pt; font-style:italic;">%out</span><span style=" font-family:'Sans Serif'; font-size:9pt;"> - the port when uploading or the GPX filename when downloading</span></p></body></html> + + + + + QgsGPSInformationWidget + + + /gps + + + + + No path to the GPS port is specified. Please enter a path then try again. + + + + + Connecting... + + + + + Connecting to GPS device... + + + + + Timed out! + + + + + Failed to connect to GPS device. + + + + + Connected! + + + + + Dis&connect + + + + + Connected to GPS device. + + + + + Error opening log file. + + + + + Disconnected... + + + + + &Connect + + + + + Disconnected from GPS device. + + + + + %1 m + + + + + %1 km/h + + + + + Automatic + + + + + Manual + + + + + 3D + + + + + 2D + + + + + No fix + + + + + Differential + + + + + Non-differential + + + + + No position + + + + + Valid + + + + + Invalid + + + + + + Not enough vertices + + + + + Cannot close a line feature until it has at least two vertices. + + + + + Cannot close a polygon feature until it has at least three vertices. + + + + + + Feature added + + + + + + + + + Error + + + + + + Could not commit changes to layer %1 + +Errors: %2 + + + + + + The feature could not be added because removing the polygon intersections would change the geometry type + + + + + An error was reported during intersection removal + + + + + Cannot add feature. Unknown WKB type. Choose a different layer and try again. + + + + + Save GPS log file as + + + + + NMEA files + + + + + &Add feature + + + + + &Add Point + + + + + &Add Line + + + + + &Add Polygon + + + + + QgsGPSInformationWidgetBase + + + GPS Connect + + + + + &Add feature + + + + + Quick status indicator: +green = good or 3D fix +yellow = good 2D fix +red = no fix or bad fix +gray = no data + +2D/3D depends on this information being available + + + + + Add track point + + + + + Reset track + + + + + + + + + + + + ... + + + + + Position + + + + + Signal + + + + + Satellite + + + + + Options + + + + + Debug + + + + + &Connect + + + + + latitude of position fix (degrees) + + + + + Longitude + + + + + longitude of position fix (degrees) + + + + + antenna altitude with respect to geoid (mean sea level) + + + + + Altitude + + + + + Latitude + + + + + Time of fix + + + + + date/time of position fix (UTC) + + + + + speed over ground + + + + + Speed + + + + + track direction (degrees) + + + + + Direction + + + + + Horizontal Dilution of Precision + + + + + HDOP + + + + + Vertical Dilution of Precision + + + + + VDOP + + + + + Position Dilution of Precision + + + + + PDOP + + + + + GPS receiver configuration 2D/3D mode: Automatic or Manual + + + + + Mode + + + + + position fix dimensions: 2D, 3D or No fix + + + + + Dimensions + + + + + quality of the position fix: Differential, Non-differential or No position + + + + + Quality + + + + + position fix status: Valid or Invalid + + + + + Status + + + + + number of satellites used in the position fix + + + + + Satellites + + + + + H accurancy + + + + + V accurancy + + + + + Connection + + + + + Autodetect + + + + + Serial device + + + + + Refresh serial device list + + + + + Port + + + + + Host + + + + + Device + + + + + 00000; + + + + + gpsd + + + + + Internal + + + + + Digitizing + + + + + Track + + + + + Automatically add points + + + + + Track width in pixels + + + + + width + + + + + Color + + + + + save layer after every feature added + + + + + Automatically save added feature + + + + + save GPS data (NMEA sentences) to a file + + + + + Log File + + + + + browse for log file + + + + + Map centering + + + + + when leaving + + + + + % of map extent + + + + + never + + + + + always + + + + + Cursor + + + + + Small + + + + + Large + + + + + QgsGPSPlugin + + + &GPS Tools + + + + + &Create new GPX layer + + + + + + Creates a new GPX layer and displays it on the map canvas + + + + + + &GPS + + + + + Save new GPX file as... + + + + + GPS eXchange file + + + + + Could not create file + + + + + Unable to create a GPX file with the given name. Try again with another name or in another directory. + + + + + GPX Loader + + + + + Unable to read the selected file. +Please reselect a valid file. + + + + + + + + Could not start process + + + + + + + + Could not start GPSBabel! + + + + + + Importing data... + + + + + + + + Cancel + + + + + Could not import data from %1! + + + + + + + Error importing data + + + + + Could not convert data from %1! + + + + + + + Error converting data + + + + + + Not supported + + + + + This device does not support downloading of %1. + + + + + Downloading data... + + + + + Could not download data from GPS! + + + + + + + Error downloading data + + + + + This device does not support uploading of %1. + + + + + Uploading data... + + + + + Error while uploading data to GPS! + + + + + + + Error uploading data + + + + + QgsGPSPluginGui + + + + Waypoints + + + + + + Routes + + + + + + Tracks + + + + + + + Choose a file name to save under + + + + + + + + GPS eXchange format + + + + + + Select GPX file + + + + + Select file and format to import + + + + + Waypoints from a route + + + + + Waypoints from a track + + + + + Route from waypoints + + + + + Track from waypoints + + + + + GPS eXchange format (*.gpx) + + + + + QgsGPSPluginGuiBase + + + GPS Tools + + + + + Load GPX file + + + + + File + + + + + + + Browse... + + + + + Feature types + + + + + + Waypoints + + + + + + Routes + + + + + + Tracks + + + + + Import other file + + + + + File to import + + + + + + Feature type + + + + + + + Layer name + + + + + + GPX output file + + + + + + + Save As... + + + + + (Note: Selecting correct file type in browser dialog important!) + + + + + Download from GPS + + + + + + GPS device + + + + + Edit devices... + + + + + + Port + + + + + Refresh + + + + + Output file + + + + + Upload to GPS + + + + + Data layer + + + + + Edit devices + + + + + GPX Conversions + + + + + GPX input file + + + + + Conversion + + + + + QgsGPXProvider + + + Bad URI - you need to specify the feature type. + + + + + GPS eXchange file + + + + + Digitized in QGIS + + + + + QgsGdalProvider + + + Dataset Description + + + + + Band %1 + + + + + Dimensions: + + + + + X: %1 Y: %2 Bands: %3 + + + + + Origin: + + + + + Pixel Size: + + + + + Gauss + + + + + Cubic + + + + + Average + + + + + Mode + + + + + None + + + + + Cannot get GDAL raster band: %1 + + + + + QgsGenericProjectionSelector + + + Define this layer's coordinate reference system: + + + + + This layer appears to have no projection specification. + + + + + By default, this layer will now have its projection set to that of the project, but you may override this by selecting a different projection below. + + + + + QgsGenericProjectionSelectorBase + + + Coordinate Reference System Selector + + + + + QgsGeorefConfigDialog + + + A5 (148x210 mm) + + + + + A4 (210x297 mm) + + + + + A3 (297x420 mm) + + + + + A2 (420x594 mm) + + + + + A1 (594x841 mm) + + + + + A0 (841x1189 mm) + + + + + B5 (176 x 250 mm) + + + + + B4 (250 x 353 mm) + + + + + B3 (353 x 500 mm) + + + + + B2 (500 x 707 mm) + + + + + B1 (707 x 1000 mm) + + + + + B0 (1000 x 1414 mm) + + + + + Legal (8.5x14 inches) + + + + + ANSI A (Letter; 8.5x11 inches) + + + + + ANSI B (Tabloid; 11x17 inches) + + + + + ANSI C (17x22 inches) + + + + + ANSI D (22x34 inches) + + + + + ANSI E (34x44 inches) + + + + + Arch A (9x12 inches) + + + + + Arch B (12x18 inches) + + + + + Arch C (18x24 inches) + + + + + Arch D (24x36 inches) + + + + + Arch E (36x48 inches) + + + + + Arch E1 (30x42 inches) + + + + + QgsGeorefConfigDialogBase + + + Configure Georeferencer + + + + + Point tip + + + + + Show IDs + + + + + Show coords + + + + + Residual units + + + + + Pixels + + + + + Use map units if possible + + + + + PDF report + + + + + Left margin + + + + + + mm + + + + + Right margin + + + + + Show Georeferencer window docked + + + + + PDF map + + + + + Paper size + + + + + QgsGeorefDescriptionDialogBase + + + Description georeferencer + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Droid Sans'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:10pt;"></p></body></html> + + + + + QgsGeorefPlugin + + + + + &Georeferencer + + + + + QgsGeorefPluginGui + + + Georeferencer + + + + + All other files (*) + + + + + Open raster + + + + + %1 is not a supported raster data source + + + + + Unsupported Data Source + + + + + Raster loaded: %1 + + + + + Georeferencer - %1 + + + + + + + Transform: + + + + + + + + + + + + + + + Info + + + + + GDAL scripting is not supported for %1 transformation + + + + + Load GCP points + + + + + + GCP file + + + + + No GCP points to save + + + + + Save GCP points + + + + + + Please load raster to be georeferenced + + + + + + Help + + + + + Panels + + + + + Toolbars + + + + + Current transform parametrisation + + + + + Coordinate: + + + + + Current map coordinate + + + + + None + + + + + Coordinate of image(column/line) + + + + + Unable to open GCP points file %1 + + + + + Save GCPs + + + + + Save GCP points? + + + + + Failed to get linear transform parameters + + + + + World file exists + + + + + <p>The selected file already seems to have a world file! Do you want to replace it with the new world file?</p> + + + + + + Failed to compute GCP transform: Transform is not solvable + + + + + Error + + + + + Could not write to %1 + + + + + + + + map units + + + + + + pixels + + + + + Transformation parameters + + + + + Translation x + + + + + Translation y + + + + + Scale x + + + + + Scale y + + + + + Rotation [degrees] + + + + + Mean error [%1] + + + + + Residuals + + + + + yes + + + + + no + + + + + Translation (%1, %2) + + + + + Scale (%1, %2) + + + + + Rotation: %1 + + + + + Mean error: %1 + + + + + Copy in clipboard + + + + + %1 + + + + + GDAL script + + + + + Please set transformation type + + + + + Please set output raster name + + + + + %1 requires at least %2 GCPs. Please define more + + + + + Linear + + + + + Helmert + + + + + Polynomial 1 + + + + + Polynomial 2 + + + + + Polynomial 3 + + + + + Thin plate spline (TPS) + + + + + Projective + + + + + Not set + + + + + QgsGeorefPluginGuiBase + + + Georeferencer + + + + + + File + + + + + + View + + + + + + Edit + + + + + Settings + + + + + GCP table + + + + + toolBar + + + + + + Open raster + + + + + Ctrl+O + + + + + + Zoom In + + + + + Ctrl++ + + + + + + Zoom Out + + + + + Ctrl+- + + + + + + Zoom to Layer + + + + + Ctrl+Shift+F + + + + + + Pan + + + + + + Transformation settings + + + + + + Add point + + + + + Ctrl+A + + + + + + Delete point + + + + + Ctrl+D + + + + + + Quit + + + + + + Start georeferencing + + + + + Ctrl+G + + + + + + Generate GDAL script + + + + + Ctrl+C + + + + + + Link Georeferencer to QGis + + + + + + Link QGis to Georeferencer + + + + + + Save GCP points as... + + + + + Ctrl+S + + + + + + Load GCP points + + + + + Ctrl+L + + + + + Configure Georeferencer + + + + + Ctrl+P + + + + + Raster properties + + + + + + Move GCP point + + + + + Zoom Next + + + + + Zoom Last + + + + + Local histogram stretch + + + + + Full histogram stretch + + + + + QgsGlobePluginDialog + + + GDAL files + + + + + DEM files + + + + + + All files + + + + + Open raster file + + + + + Invalid Path: The file is either unreadable or does not exist + + + + + Invalid URL: + + + + + Do you want to add the datasource anyway? + + + + + Open 3D model file + + + + + Model files + + + + + QgsGlobePluginDialogGuiBase + + + Globe Settings + + + + + Elevation + + + + + + Type + + + + + Raster + + + + + TMS + + + + + URL/File + + + + + + ... + + + + + Up + + + + + Down + + + + + Add + + + + + Remove + + + + + Cache + + + + + Path + + + + + Model + + + + + Point Layer + + + + + 3D Model + + + + + Stereo + + + + + Stereo Mode + + + + + Screen distance (m) + + + + + Screen width (m) + + + + + Split stereo horizontal separation (px) + + + + + Split stereo vertical separation (px) + + + + + Split stereo vertical eye mapping + + + + + Screen height (m) + + + + + Eye separation (m) + + + + + Reset to defaults + + + + + Split stereo horizontal eye mapping + + + + + QgsGraduatedSymbolDialog + + + + + + Equal Interval + + + + + + + + + Quantiles + + + + + + + + Empty + + + + + QgsGraduatedSymbolDialogBase + + + graduated Symbol + + + + + Classification field + + + + + Mode + + + + + Number of classes + + + + + Classify + + + + + Delete class + + + + + QgsGraduatedSymbolRendererV2Widget + + + Column + + + + + + Symbol + + + + + change + + + + + Classes + + + + + Color ramp + + + + + Mode + + + + + Equal Interval + + + + + Quantile + + + + + Natural Breaks (Jenks) + + + + + Standard Deviation + + + + + Pretty Breaks + + + + + Classify + + + + + Add class + + + + + Delete class + + + + + Advanced + + + + + + Range + + + + + + Label + + + + + Symbol levels... + + + + + + + Error + + + + + There are no available color ramps. You can add them in Style Manager. + + + + + The selected color ramp is not available. + + + + + Renderer creation has failed. + + + + + QgsGrassAttributes + + + Column + + + + + Value + + + + + Type + + + + + Layer + + + + + Warning + + + + + ERROR + + + + + OK + + + + + QgsGrassAttributesBase + + + GRASS Attributes + + + + + Tab 1 + + + + + result + + + + + Update database record + + + + + Update + + + + + Add new category using settings in GRASS Edit toolbox + + + + + New + + + + + Delete selected category + + + + + Delete + + + + + QgsGrassBrowser + + + Tools + + + + + Add selected map to canvas + + + + + Copy selected map + + + + + Rename selected map + + + + + Delete selected map + + + + + Set current region to selected map + + + + + Refresh + + + + + + New name + + + + + + New name for layer "%1" + + + + + + + + Warning + + + + + Cannot copy map %1@%2 + + + + + + + <br>command: %1 %2<br>%3<br>%4 + + + + + Cannot rename map %1 + + + + + Information + + + + + Remove the selected layer(s) from QGis canvas before continue. + + + + + Question + + + + + Are you sure you want to delete %n selected layer(s)? + number of layers to delete + + + + + + + + Cannot delete map %1 + + + + + Cannot write new region + + + + + QgsGrassEdit + + + + + + + + + + + + + Warning + + + + + You are not owner of the mapset, cannot open the vector for editing. + + + + + Cannot open vector for update. + + + + + Edit tools + + + + + New point + + + + + New line + + + + + New boundary + + + + + New centroid + + + + + Move vertex + + + + + Add vertex + + + + + Delete vertex + + + + + Move element + + + + + Split line + + + + + Delete element + + + + + Edit attributes + + + + + Close + + + + + Background + + + + + Highlight + + + + + Dynamic + + + + + Point + + + + + Line + + + + + Boundary (no area) + + + + + Boundary (1 area) + + + + + Boundary (2 areas) + + + + + Centroid (in area) + + + + + Centroid (outside area) + + + + + Centroid (duplicate in area) + + + + + Node (1 line) + + + + + Node (2 lines) + + + + + Next not used + + + + + Manual entry + + + + + No category + + + + + Info + + + + + The table was created + + + + + Tool not yet implemented. + + + + + Cannot check orphan record: %1 + + + + + Orphan record was left in attribute table. <br>Delete the record? + + + + + Cannot delete orphan record: + + + + + Cannot describe table for field %1 + + + + + Left: %1 + + + + + -- Middle: %1 + + + + + -- Right: %1 + + + + + QgsGrassEditAddVertex + + + + + + Select line segment + + + + + New vertex position + + + + + Release + + + + + QgsGrassEditAttributes + + + Select element + + + + + QgsGrassEditBase + + + GRASS Edit + + + + + + Category + + + + + Mode + + + + + + Layer + + + + + Settings + + + + + Snapping in screen pixels + + + + + Symbology + + + + + Line width + + + + + Marker size + + + + + Disp + + + + + Color + + + + + + Type + + + + + Index + + + + + Table + + + + + Column + + + + + Length + + + + + Add Column + + + + + Create / Alter Table + + + + + QgsGrassEditDeleteLine + + + + + Select element + + + + + Delete selected / select next + + + + + Release selected + + + + + QgsGrassEditDeleteVertex + + + + + + Select vertex + + + + + Delete vertex + + + + + Release vertex + + + + + QgsGrassEditMoveLine + + + + + + Select element + + + + + New location + + + + + Release selected + + + + + QgsGrassEditMoveVertex + + + + + Select vertex + + + + + Select new position + + + + + QgsGrassEditNewLine + + + + + + + New vertex + + + + + + Undo last vertex + + + + + Close line + + + + + QgsGrassEditNewPoint + + + New centroid + + + + + New point + + + + + QgsGrassEditSplitLine + + + + Select position on line + + + + + Split the line + + + + + Release the line + + + + + + Select point on line + + + + + QgsGrassElementDialog + + + Cancel + + + + + Ok + + + + + <font color='red'>Enter a name!</font> + + + + + <font color='red'>This is name of the source!</font> + + + + + <font color='red'>Exists!</font> + + + + + Overwrite + + + + + QgsGrassMapcalc + + + Mapcalc tools + + + + + Add map + + + + + Add constant value + + + + + Add operator or function + + + + + Add connection + + + + + Select item + + + + + Delete selected item + + + + + Open + + + + + Save + + + + + Save as + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Modulus + + + + + Exponentiation + + + + + Equal + + + + + Not equal + + + + + Greater than + + + + + Greater than or equal + + + + + Less than + + + + + Less than or equal + + + + + And + + + + + Or + + + + + Absolute value of x + + + + + Inverse tangent of x (result is in degrees) + + + + + Inverse tangent of y/x (result is in degrees) + + + + + Current column of moving window (starts with 1) + + + + + Cosine of x (x is in degrees) + + + + + Convert x to double-precision floating point + + + + + Current east-west resolution + + + + + Exponential function of x + + + + + x to the power y + + + + + Convert x to single-precision floating point + + + + + Decision: 1 if x not zero, 0 otherwise + + + + + Decision: a if x not zero, 0 otherwise + + + + + Decision: a if x not zero, b otherwise + + + + + Decision: a if x > 0, b if x is zero, c if x < 0 + + + + + Convert x to integer [ truncates ] + + + + + Check if x = NULL + + + + + Natural log of x + + + + + Log of x base b + + + + + + Largest value + + + + + + Median value + + + + + + Smallest value + + + + + + Mode value + + + + + 1 if x is zero, 0 otherwise + + + + + Current north-south resolution + + + + + NULL value + + + + + Random value between a and b + + + + + Round x to nearest integer + + + + + Current row of moving window (Starts with 1) + + + + + Sine of x (x is in degrees) + sin(x) + + + + + Square root of x + sqrt(x) + + + + + Tangent of x (x is in degrees) + tan(x) + + + + + Current x-coordinate of moving window + + + + + Current y-coordinate of moving window + + + + + + Output + + + + + + + + + + + + + + + Warning + + + + + + Cannot get current region + + + + + Cannot check region of map %1 + + + + + Cannot get region of map %1 + + + + + No GRASS raster maps currently in QGIS + + + + + Cannot create 'mapcalc' directory in current mapset. + + + + + New mapcalc + + + + + Enter new mapcalc name: + + + + + Enter vector name + + + + + The file already exists. Overwrite? + + + + + + Save mapcalc + + + + + File name empty + + + + + Cannot open mapcalc file + + + + + The mapcalc schema (%1) not found. + + + + + Cannot open mapcalc schema (%1) + + + + + Cannot read mapcalc schema (%1): + + + + + +%1 +at line %2 column %3 + + + + + QgsGrassMapcalcBase + + + MainWindow + + + + + Output + + + + + QgsGrassModule + + + Module: %1 + + + + + + + + + + + + + + + Warning + + + + + The module file (%1) not found. + + + + + Cannot open module file (%1) + + + + + + Cannot read module file (%1) + + + + + + +%1 +at line %2 column %3 + + + + + Module %1 not found + + + + + Cannot find man page %1 + + + + + Please ensure you have the GRASS documentation installed. + + + + + Not available, description not found (%1) + + + + + Not available, cannot open description (%1) + + + + + Not available, incorrect description (%1) + + + + + + Run + + + + + + Cannot get input region + + + + + Input %1 outside current region! + + + + + Use Input Region + + + + + Output %1 exists! Overwrite? + + + + + Cannot find module %1 + + + + + Cannot start module: %1 + + + + + Stop + + + + + <B>Successfully finished</B> + + + + + <B>Finished with error</B> + + + + + <B>Module crashed or killed</B> + + + + + QgsGrassModuleBase + + + GRASS Module + + + + + Options + + + + + Output + + + + + Manual + + + + + TextLabel + + + + + Run + + + + + View output + + + + + Close + + + + + QgsGrassModuleField + + + Attribute field + + + + + Warning + + + + + 'layer' attribute in field tag with key= %1 is missing. + + + + + QgsGrassModuleFile + + + File + + + + + %1:&nbsp;missing value + + + + + %1:&nbsp;directory does not exist + + + + + QgsGrassModuleGdalInput + + + OGR/PostGIS/GDAL Input + + + + + + + Warning + + + + + Cannot find layeroption %1 + + + + + Cannot find whereoption %1 + + + + + Password + + + + + Select a layer + + + + + PostGIS driver in OGR does not support schemas!<br>Only the table name will be used.<br>It can result in wrong input if more tables of the same name<br>are present in the database. + + + + + %1:&nbsp;no input + + + + + QgsGrassModuleInput + + + Input + + + + + + + + Warning + + + + + Cannot find typeoption %1 + + + + + Cannot find values for typeoption %1 + + + + + Cannot find layeroption %1 + + + + + GRASS element %1 not supported + + + + + Use region of this map + + + + + Select a layer + + + + + %1:&nbsp;no input + + + + + QgsGrassModuleOption + + + + Warning + + + + + Cannot parse version_min %1 + + + + + Cannot parse version_max %1 + + + + + %1:&nbsp;missing value + + + + + QgsGrassModuleSelection + + + Selected categories + + + + + QgsGrassModuleStandardOptions + + + + + + + + + + + + Warning + + + + + Cannot find module %1 + + + + + Cannot start module %1 + + + + + <br>command: %1 %2<br>%3<br>%4 + + + + + Cannot read module description (%1): + + + + + +%1 +at line %2 column %3 + + + + + Cannot find key %1 + + + + + << Hide advanced options + + + + + Show advanced options >> + + + + + Item with key %1 not found + + + + + Item with id %1 not found + + + + + + Cannot get current region + + + + + Cannot check region of map %1 + + + + + Cannot set region of map %1 + + + + + QgsGrassNewMapset + + + Database + + + + + Location 1 + + + + + + System mapset + + + + + + + User's mapset + + + + + Location 2 + + + + + Enter path to GRASS database + + + + + The directory doesn't exist! + + + + + No writable locations, the database is not writable! + + + + + Enter location name! + + + + + The location exists! + + + + + Selected projection is not supported by GRASS! + + + + + + + + + + + + + + + Warning + + + + + Cannot create projection. + + + + + Cannot reproject previously set region, default region set. + + + + + North must be greater than south + + + + + East must be greater than west + + + + + Regions file (%1) not found. + + + + + Cannot open locations file (%1) + + + + + Cannot read locations file (%1): + + + + + +%1 +at line %2 column %3 + + + + + + + + Cannot create QgsCoordinateReferenceSystem + + + + + Cannot reproject selected region. + + + + + Cannot reproject region + + + + + Enter mapset name. + + + + + The mapset already exists + + + + + Database: + + + + + Location: + + + + + Mapset: + + + + + Create location + + + + + Cannot create new location: %1 + + + + + + + Create mapset + + + + + Cannot create new mapset directory + + + + + Cannot open DEFAULT_WIND + + + + + Cannot open WIND + + + + + + New mapset + + + + + New mapset successfully created, but cannot be opened: %1 + + + + + New mapset successfully created and set as current working mapset. + + + + + QgsGrassNewMapsetBase + + + New Mapset + + + + + GRASS Database + + + + + Tree + + + + + Comment + + + + + Example directory tree: + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">GRASS data are stored in tree directory structure. The GRASS database is the top-level directory in this tree structure.</p></body></html> + + + + + Database Error + + + + + + Database: + + + + + Browse... + + + + + Select existing directory or create a new one: + + + + + GRASS Location + + + + + Location + + + + + Select location + + + + + Create new location + + + + + Location Error + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS location is a collection of maps for a particular territory or project.</p></body></html> + + + + + + Projection + + + + + Projection Error + + + + + Coordinate system + + + + + Not defined + + + + + Default GRASS Region + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS region defines a workspace for raster modules. The default region is valid for one location. It is possible to set a different region in each mapset. It is possible to change the default location region later.</p></body></html> + + + + + Set current QGIS extent + + + + + Set + + + + + Region Error + + + + + S + + + + + W + + + + + E + + + + + N + + + + + + Mapset + + + + + New mapset: + + + + + Mapset Error + + + + + <p align="center">Existing masets</p> + + + + + Owner + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;">The GRASS mapset is a collection of maps used by one user. A user can read maps from all mapsets in the location but he can open for writing only his mapset (owned by user).</p></body></html> + + + + + Create New Mapset + + + + + Location: + + + + + Mapset: + + + + + QgsGrassPlugin + + + GrassVector + + + + + 0.1 + + + + + GRASS layer + + + + + Plugins + + + + + Open mapset + + + + + New mapset + + + + + Close mapset + + + + + Add GRASS vector layer + + + + + Add GRASS raster layer + + + + + + Open GRASS tools + + + + + Display Current Grass Region + + + + + Edit Current Grass Region + + + + + Edit Grass Vector layer + + + + + Create new Grass Vector + + + + + Adds a GRASS vector layer to the map canvas + + + + + Adds a GRASS raster layer to the map canvas + + + + + Displays the current GRASS region as a rectangle on the map canvas + + + + + Edit the current GRASS region + + + + + Edit the currently selected GRASS vector layer. + + + + + + + + + + + + + + + + + + + + + + + + &GRASS + + + + + GRASS + + + + + + + + + + + + + + + + + + + Warning + + + + + Cannot open vector %1 in mapset %2 on level 2 (topology not available, try to rebuild topology using v.build module). + + + + + Cannot open vector %1 in mapset %2 + + + + + Cannot open GRASS vector: + %1 + + + + + + GRASS Edit is already running. + + + + + + New vector name + + + + + Cannot create new vector: %1 + + + + + New vector created but cannot be opened by data provider. + + + + + Cannot start editing. + + + + + Cannot open vector for update. + + + + + GISDBASE, LOCATION_NAME or MAPSET is not set, cannot display current region. + + + + + Cannot read current region: %1 + + + + + Cannot open the mapset. %1 + + + + + Cannot close mapset. %1 + + + + + Cannot close current mapset. %1 + + + + + Cannot open GRASS mapset. %1 + + + + + QgsGrassProvider + + + GRASS vector map %1 does not have topology. Build topology? + + + + + QgsGrassRasterProvider + + + cellhd file %1 does not exist + + + + + Groups not yet supported + + + + + QgsGrassRegion + + + + + Warning + + + + + GISDBASE, LOCATION_NAME or MAPSET is not set, cannot display current region. + + + + + Cannot read current region: %1 + + + + + Cannot write region + + + + + QgsGrassRegionBase + + + GRASS Region Settings + + + + + Extent + + + + + North + + + + + West + + + + + East + + + + + South + + + + + Select the extent by dragging on canvas +or change the following values + + + + + Resolution + + + + + Cell width + + + + + Cell height + + + + + Columns + + + + + Rows + + + + + Border + + + + + Color + + + + + Width + + + + + QgsGrassSelect + + + Select GRASS Vector Layer + + + + + Select GRASS Raster Layer + + + + + Select GRASS mapcalc schema + + + + + Select GRASS Mapset + + + + + Choose existing GISDBASE + + + + + Wrong GISDBASE, no locations available. + + + + + Wrong GISDBASE + + + + + Select a map. + + + + + No map + + + + + No layer + + + + + No layers available in this map + + + + + QgsGrassSelectBase + + + Add GRASS Layer + + + + + Gisdbase + + + + + Location + + + + + Mapset + + + + + Map name + + + + + Select or type map name (wildcards '*' and '?' accepted for rasters) + + + + + Layer + + + + + Browse... + + + + + QgsGrassShell + + + Ctrl+Shift+V + + + + + Ctrl+Shift+C + + + + + + Warning + + + + + + Cannot rename the lock file %1 + + + + + QgsGrassTools + + + GRASS Tools + + + + + + GRASS Tools: %1/%2 + + + + + Browser + + + + + Cannot start command shell (%1) + + + + + + + + Warning + + + + + GRASS Shell is not compiled. + + + + + The config file (%1) not found. + + + + + Cannot open config file (%1). + + + + + Cannot read config file (%1): + + + + + +%1 +at line %2 column %3 + + + + + QgsGrassToolsBase + + + Grass Tools + + + + + Modules Tree + + + + + 1 + + + + + Modules List + + + + + Filter + + + + + QgsHandleBadLayers + + + Browse + + + + + Layer name + + + + + Type + + + + + Provider + + + + + New file + + + + + New datasource + + + + + none + + + + + Select file to replace '%1' + + + + + Please select exactly one file. + + + + + Select new directory of selected files + + + + + All files (*) + + + + + + Unhandled layer will be lost. + + + + + + There are still %n unhandled layer(s), that will be lost if you closed now. + unhandled layers + + + + + + + + QgsHandleBadLayersBase + + + Handle bad layers + + + + + Layer name + + + + + Type + + + + + Provider + + + + + Original filename + + + + + New filename + + + + + Original datasource + + + + + New datasource + + + + + QgsHelpViewer + + + <h3>Oops! QGIS can't find help for this form.</h3>The help file for %1 was not found for your language<br>If you would like to create it, contact the QGIS development team + + + + + Quantum GIS Help + + + + + Quantum GIS Help - %1 + + + + + + Error + + + + + Failed to get the help text from the database: + %1 + + + + + The QGIS help database is not installed + + + + + QgsHelpViewerBase + + + + QGIS Help + + + + + about:blank + + + + + &Home + + + + + Alt+H + + + + + &Forward + + + + + Alt+F + + + + + &Back + + + + + Alt+B + + + + + &Close + + + + + Alt+C + + + + + QgsHtmlAnnotationDialog + + + Delete + + + + + html + + + + + QgsHttpTransaction + + + WMS Server responded unexpectedly with HTTP Status Code %1 (%2) + + + + + Received %1 of %2 bytes + + + + + Received %1 bytes (total unknown) + + + + + HTTP response completed, however there was an error: %1 + + + + + HTTP transaction completed, however there was an error: %1 + + + + + Not connected + + + + + Looking up '%1' + + + + + Connecting to '%1' + + + + + Sending request '%1' + + + + + Receiving reply + + + + + Response is complete + + + + + Closing down connection + + + + + Network timed out after %n second(s) of inactivity. +This may be a problem in your network connection or at the WMS server. + inactivity timeout + + + + + + + + QgsIDWInterpolatorDialogBase + + + Dialog + + + + + Distance coefficient P + + + + + QgsIdentifyResults + + + Identify Results + + + + + Feature + + + + + Value + + + + + + (Derived) + + + + + (Actions) + + + + + + + Edit feature form + + + + + + + View feature form + + + + + Print + + + + + Zoom to feature + + + + + Copy attribute value + + + + + Copy feature attributes + + + + + Clear results + + + + + Clear highlights + + + + + Highlight all + + + + + Highlight layer + + + + + Layer properties... + + + + + Expand all + + + + + Collapse all + + + + + Attribute changes + + + + + Could not open url + + + + + Could not open URL '%1' + + + + + QgsIdentifyResultsBase + + + Identify Results + + + + + Expand tree. + + + + + + + + ... + + + + + Collapse tree. + + + + + New results will be expanded by default. + + + + + Print selected HTML response. + + + + + QgsImageWarper + + + Progress indication + + + + + QgsInterpolationDialog + + + + Triangular interpolation (TIN) + + + + + + Inverse Distance Weighting (IDW) + + + + + No input data for interpolation + + + + + Please add one or more input layers + + + + + Output file name invalid + + + + + Please enter a valid output file name + + + + + + Break lines + + + + + + Structure lines + + + + + Points + + + + + Save interpolated raster as... + + + + + QgsInterpolationDialogBase + + + Interpolation plugin + + + + + Input + + + + + Vector layers + + + + + Interpolation attribute + + + + + Use z-Coordinate for interpolation + + + + + Add + + + + + Remove + + + + + Vector layer + + + + + Attribute + + + + + Type + + + + + Output + + + + + Interpolation method + + + + + + ... + + + + + Number of columns + + + + + Number of rows + + + + + Cellsize X + + + + + Cellsize Y + + + + + X min + + + + + X max + + + + + Y min + + + + + Y max + + + + + Set to current extent + + + + + Output file + + + + + Add result to project + + + + + QgsInterpolationPlugin + + + + + &Interpolation + + + + + QgsItemPositionDialogBase + + + Set item position + + + + + Item reference point + + + + + Coordinates + + + + + x + + + + + y + + + + + Width + + + + + Height + + + + + Set Position + + + + + Close + + + + + QgsLUDialogBase + + + Enter class bounds + + + + + Lower value + + + + + Upper value + + + + + QgsLabelDialog + + + Auto + + + + + QgsLabelDialogBase + + + Form1 + + + + + Label Properties + + + + + + Placement + + + + + Below Right + + + + + Right + + + + + Below + + + + + Over + + + + + Above + + + + + Left + + + + + Below Left + + + + + Above Right + + + + + Above Left + + + + + Use scale dependent rendering + + + + + Maximum + + + + + Minimum + + + + + Buffer labels + + + + + Buffer size + + + + + + + In points + + + + + + + In map units + + + + + + Color + + + + + % + + + + + Transparency + + + + + Offset + + + + + X offset + + + + + Y offset + + + + + Basic label options + + + + + Field containing label + + + + + Default label + + + + + Font size + + + + + + Angle (deg) + + + + + ° + + + + + Font + + + + + Multiline labels? + + + + + Label only selected features + + + + + Advanced + + + + + Data defined placement + + + + + Data defined properties + + + + + &Font family + + + + + &Bold + + + + + &Italic + + + + + &Underline + + + + + &Size + + + + + Size units + + + + + &Color + + + + + Strikeout + + + + + Data defined buffer + + + + + Transparency: + + + + + Size: + + + + + Data defined position + + + + + X Coordinate + + + + + Y Coordinate + + + + + X Offset (pts) + + + + + Y Offset (pts) + + + + + Preview: + + + + + QGIS Rocks! + + + + + QgsLabelPropertyDialog + + + + Label font + + + + + Font color + + + + + Buffer color + + + + + QgsLabelPropertyDialogBase + + + Label properties + + + + + Text + + + + + + Font + + + + + + Size + + + + + Display + + + + + Scale-based + + + + + Min + + + + + Max + + + + + Show label + + + + + Ignores priority and permits collisions/overlaps + + + + + Always show (exceptions above) + + + + + Buffer + + + + + Position + + + + + Label distance + + + + + X Coordinate + + + + + Y Coordinate + + + + + Horizontal alignment + + + + + Vertical alignment + + + + + Rotation + + + + + QgsLabelingGui + + + (not found!) + + + + + Sample @ %1 pts (using map units) + + + + + Sample @ %1 pts (using map units, BUFFER IN MILLIMETERS) + + + + + Sample + + + + + Sample (BUFFER NOT SHOWN, in map units) + + + + + Expression based label + + + + + Mixed Case + + + + + All Uppercase + + + + + All Lowercase + + + + + Title Case + + + + + QgsLabelingGuiBase + + + Layer labeling settings + + + + + Label this layer with + + + + + Expression + + + + + + + + + + ... + + + + + Label settings + + + + + Sample + + + + + + Lorem Ipsum + + + + + Sample text + + + + + Reset sample text + + + + + Size for sample text in map units + + + + + Sample background color + + + + + Formatted numbers + + + + + Decimal places + + + + + Show plus sign + + + + + Multiple lines + + + + + Wrap on character + + + + + + Line height + + + + + Line height spacing for multi-line text + + + + + line + + + + + Alignment + + + + + Paragraph style alignment of multi-line text + + + + + + Left + + + + + Center + + + + + + Right + + + + + Text style + + + + + Available typeface styles + + + + + Underlined Text + + + + + U + + + + + Strikeout text + + + + + S + + + + + points + + + + + + + map units + + + + + Style + + + + + + + Transparency + + + + + + % + + + + + TextLabel + + + + + Capitalization style of text + + + + + + Word spacing + + + + + + Letter spacing + + + + + + Space in pixels or map units, relative to size unit choice + + + + + Type case + + + + + Font + + + + + + + Color + + + + + + + Size + + + + + Buffer + + + + + + mm + + + + + Pen Join style + + + + + Color area inside of pen stroke + + + + + Pixel size-based visibility + + + + + Labels will not show if larger than this on screen + + + + + + px + + + + + + Maximum + + + + + Labels will not show if smaller than this on screen + + + + + + Minimum + + + + + + + + < + + + + + Label in Map Units + + + + + Scale-based visibility + + + + + Label + + + + + Advanced + + + + + Priority + + + + + Low + + + + + High + + + + + Placement + + + + + Around point + + + + + Offset from point + + + + + Parallel + + + + + Curved + + + + + Horizontal + + + + + Offset from centroid + + + + + Around centroid + + + + + Horizontal (slow) + + + + + Free (slow) + + + + + Using perimeter + + + + + Centroid of + + + + + visible polygon + + + + + whole polygon + + + + + + In mm + + + + + + In map units + + + + + + degrees + + + + + + + Rotation + + + + + + + Label distance + + + + + Above line + + + + + On line + + + + + Below line + + + + + Line orientation dependent position + + + + + X + + + + + Y + + + + + Above Right + + + + + Above Left + + + + + Over + + + + + Above + + + + + Below Left + + + + + Below + + + + + Below Right + + + + + Options + + + + + Merge connected lines to avoid duplicate labels + + + + + Label every part of multi-part features + + + + + Add direction symbol + + + + + Suppress labeling of features smaller than + + + + + mm + + + + + Features don't act as obstacles for labels + + + + + Automated placement settings + + + + + Show all labels for this layer (including colliding labels) + + + + + Show upside-down labels + + + + + never + + + + + when rotation defined + + + + + always + + + + + Data defined settings + + + + + Buffer properties + + + + + Buffer size + + + + + Buffer color + + + + + Buffer transparency + + + + + Position + + + + + X Coordinate + + + + + Y Coordinate + + + + + Horizontal alignment + + + + + Vertical alignment + + + + + Uncheck to write labeling engine derived rotation on pin and NULL on unpin + + + + + Preserve existing rotation values during label pin/unpin operations + + + + + Display properties + + + + + Always show + + + + + Minimum scale + + + + + Show label + + + + + Maximum scale + + + + + Font properties + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Strikeout + + + + + Font family + + + + + Capitalization + + + + + Multi-line align + + + + + Add label columns to attribute table + + + + + About data defined values + + + + + QgsLayerPropertiesWidget + + + Outline: %1 + + + + + QgsLegend + + + + sub-group + + + + + + group + + + + + Legend context + + + + + &Make to Toplevel Item + + + + + Zoom to Group + + + + + &Remove + + + + + &Set Group CRS + + + + + Re&name + + + + + &Group Selected + + + + + Copy Style + + + + + Paste Style + + + + + &Add New Group + + + + + &Expand All + + + + + &Collapse All + + + + + &Update Drawing Order + + + + + QgsLegendLayer + + + &Zoom to Layer Extent + + + + + &Zoom to Best Scale (100%) + + + + + &Stretch Using Current Extent + + + + + &Show in Overview + + + + + &Remove + + + + + &Duplicate + + + + + &Set Layer CRS + + + + + Set &Project CRS from Layer + + + + + &Open Attribute Table + + + + + + Save As... + + + + + Save Selection As... + + + + + &Query... + + + + + Show Feature Count + + + + + &Properties + + + + + Updating feature count for layer %1 + + + + + Abort + + + + + QgsLegendModel + + + Group + + + + + QgsManageConnectionsDialog + + + Select all + + + + + Clear selection + + + + + Select connections to import + + + + + Import + + + + + Export + + + + + Export/import error + + + + + You should select at least one connection from list. + + + + + Save connections + + + + + XML files (*.xml *.XML) + + + + + Saving connections + + + + + Cannot write file %1: +%2. + + + + + + + + + + + + + + + + + + + + + Loading connections + + + + + + Cannot read file %1: +%2. + + + + + + Parse error at line %1, column %2: +%3 + + + + + The file is not an WMS connections exchange file. + + + + + + The file is not an WFS connections exchange file. + + + + + The file is not an WCS connections exchange file. + + + + + + + The file is not an PostGIS connections exchange file. + + + + + The file is not an MSSQL connections exchange file. + + + + + The file is not an %1 connections exchange file. + + + + + + + + Connection with name '%1' already exists. Overwrite? + + + + + QgsManageConnectionsDialogBase + + + Manage connections + + + + + Select connections to export + + + + + QgsMapCanvas + + + Could not draw %1 because: +%2 + COMMENTED OUT + + + + + Could not draw %1 because: +%2 + + + + + QgsMapCoordsDialog + + + From map canvas + + + + + QgsMapCoordsDialogBase + + + Enter map coordinates + + + + + Enter X and Y coordinates (DMS (dd mm ss.ss), DD (dd.dd) or projected coordinates (mmmm.mm)) which correspond with the selected point on the image. Alternatively, click the button with icon of a pencil and then click a corresponding point on map canvas of QGIS to fill in coordinates of that point. + + + + + X / East: + + + + + Y / North: + + + + + Snap to background layers + + + + + QgsMapLayer + + + + Specify CRS for layer %1 + + + + + + + %1 at line %2 column %3 + + + + + style not found in database + + + + + Error: qgis element could not be found in %1 + + + + + + Loading style file %1 failed because: +%2 + + + + + + + Could not save symbology because: +%1 + + + + + + The directory containing your dataset needs to be writable! + + + + + + Created default style file as %1 + + + + + ERROR: Failed to created default style file as %1. Check file permissions and retry. + + + + + User database could not be opened. + + + + + The style table could not be created. + + + + + The style %1 was saved to database + + + + + The style %1 was updated in the database. + + + + + The style %1 could not be updated in the database. + + + + + The style %1 could not be inserted into database. + + + + + ERROR: Failed to created SLD style file as %1. Check file permissions and retry. + + + + + Unable to open file %1 + + + + + QgsMapRenderer + + + + Transform error caught: %1 + + + + + + CRS + + + + + QgsMapToolAddFeature + + + add feature + + + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer cannot be added to + + + + + The data provider for this layer does not support the addition of features. + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + + + Wrong editing tool + + + + + Cannot apply the 'capture point' tool on this vector layer + + + + + + Coordinate transform error + + + + + + Cannot transform the point to the layers coordinate system + + + + + + Feature added + + + + + Cannot apply the 'capture line' tool on this vector layer + + + + + Cannot apply the 'capture polygon' tool on this vector layer + + + + + + + + Error + + + + + + Cannot add feature. Unknown WKB type + + + + + The feature could not be added because removing the polygon intersections would change the geometry type + + + + + An error was reported during intersection removal + + + + + QgsMapToolAddPart + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + + No feature selected. Please select a feature with the selection tool or in the attribute table + + + + + Several features are selected. Please select only one feature to which an part should be added. + + + + + Error. Could not add part. + + + + + + Part added + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Selected feature is not multi part. + + + + + New part's geometry is not valid. + + + + + New polygon ring not disjoint with existing polygons. + + + + + Several features are selected. Please select only one feature to which an island should be added. + + + + + Selected geometry could not be found + + + + + Error, could not add part + + + + + QgsMapToolAddRing + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Ring added + + + + + A problem with geometry type occured + + + + + The inserted Ring is not closed + + + + + The inserted Ring is not a valid geometry + + + + + The inserted Ring crosses existing rings + + + + + The inserted Ring is not contained in a feature + + + + + An unknown error occured + + + + + Error, could not add ring + + + + + QgsMapToolAddVertex + + + Added vertex + + + + + QgsMapToolCapture + + + Validation started. + + + + + Validation finished. + + + + + QgsMapToolChangeLabelProperties + + + Label properties changed + + + + + QgsMapToolDeletePart + + + + Delete part + + + + + This isn't a multipart geometry. + + + + + Part of multipart feature deleted + + + + + Couldn't remove the selected part. + + + + + QgsMapToolDeleteRing + + + Ring deleted + + + + + QgsMapToolDeleteVertex + + + Vertex deleted + + + + + QgsMapToolFeatureAction + + + No active vector layer + + + + + To run an action, you must choose a vector layer by clicking on its name in the legend + + + + + No actions available + + + + + The active vector layer has no defined actions + + + + + No features at this position found. + + + + + QgsMapToolIdentify + + + No active layer + + + + + To identify features, you must choose an active layer by clicking on its name in the legend + + + + + Identifying on %1... + + + + + Identifying done. + + + + + No features at this position found. + + + + + + (clicked coordinate) + + + + + Length + + + + + firstX + attributes get sorted; translation for lastX should be lexically larger than this one + + + + + firstY + + + + + lastX + attributes get sorted; translation for firstX should be lexically smaller than this one + + + + + lastY + + + + + Area + + + + + feature id + + + + + new feature + + + + + Raster + + + + + QgsMapToolMoveFeature + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Feature moved + + + + + QgsMapToolMoveLabel + + + Label moved + + + + + QgsMapToolMoveVertex + + + Vertex moved + + + + + QgsMapToolNodeTool + + + Inserted vertex + + + + + QgsMapToolOffsetCurve + + + Offset curve + + + + + Offset: + + + + + Geometry error + + + + + Creating offset geometry failed + + + + + QgsMapToolPinLabels + + + Label pinned + + + + + Label unpinned + + + + + QgsMapToolReshape + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Reshape + + + + + QgsMapToolRotateLabel + + + Label rotated + + + + + QgsMapToolRotatePointSymbols + + + No point feature + + + + + No point feature was detected at the clicked position. Please click closer to the feature or enhance the search tolerance under Settings->Options->Digitizing->Serch radius for vertex edits + + + + + No rotation Attributes + + + + + The active point layer does not have a rotation attribute + + + + + Rotate symbol + + + + + QgsMapToolShowHideLabels + + + Label hidden + + + + + Label shown + + + + + QgsMapToolSimplify + + + Geometry simplified + + + + + + Unsupported operation + + + + + Multipart features are not supported for simplification. + + + + + This feature cannot be simplified. Check if feature has enough vertices to be simplified. + + + + + QgsMapToolSplitFeatures + + + Not a vector layer + + + + + The current layer is not a vector layer + + + + + Layer not editable + + + + + Cannot edit the vector layer. Use 'Toggle Editing' to make it editable. + + + + + Coordinate transform error + + + + + Cannot transform the point to the layers coordinate system + + + + + Features split + + + + + + + No feature split done + + + + + If there are selected features, the split tool only applies to the selected ones. If you like to split all features under the split line, clear the selection + + + + + Cut edges detected. Make sure the line splits features into multiple parts. + + + + + The geometry is invalid. Please repair before trying to split it. + + + + + Split error + + + + + An error occured during feature splitting + + + + + QgsMapToolVertexEdit + + + Snap tolerance + + + + + Don't show this message again + + + + + Could not snap segment. + + + + + Have you set the tolerance in Settings > Project Properties > General? + + + + + QgsMapserverExportBase + + + MapServer Export: Save project to MapFile + + + + + Use current project + + + + + Full path to the QGIS project file to export to MapServer map format + + + + + + + + Browse... + + + + + + Map file + + + + + Name for the map file to be created from the QGIS project file + + + + + Save As... + + + + + If checked, only the layer information will be processed + + + + + LAYER information only + + + + + Map + + + + + Name + + + + + Prefix attached to map, scalebar and legend GIF filenames created using this MapFile + + + + + Image type + + + + + Rendering + + + + + Width + + + + + Height + + + + + Units + + + + + MapServer url + + + + + The URL to the mapserver executable. + +For example: +http://my.host.com/cgi-bin/mapserv.exe + + + + + Paths + + + + + Inline + + + + + Symbolset + + + + + Use templates + + + + + Path to the MapServer template file + + + + + The file name of the fonts file. + + + + + Fontset + + + + + The file name of the symbols file. + + + + + Template + + + + + Header + + + + + Footer + + + + + Layer/label options + + + + + Forces labels on, regardless of collisions. Available only for cached labels. + + + + + Force + + + + + Should text be antialiased? Note that this requires more available colors, decreases drawing performance, and results in slightly larger output images. + + + + + Anti-alias + + + + + Can text run off the edge of the map? + + + + + Partials + + + + + Check to allow MapServer to return data in GML format. Useful when used with WMS GetFeatureInfo operations. + + + + + Dump + + + + meters + + + + dd + + + + feet + + + + miles + + + + inches + + + + kilometers + + + + + QgsMeasureBase + + + Measure + + + + + Total + + + + + Segments + + + + + QgsMeasureDialog + + + &New + + + + + The calculations are based on: + + + + + Project CRS transformation is turned off. + + + + + Canvas units setting is taken from project properties setting (%1). + + + + + Ellipsoidal calculation is not possible, as project CRS is undefined. + + + + + Project CRS transformation is turned on and ellipsoidal calculation is selected. + + + + + The coordinates are transformed to the chosen ellipsoid (%1), and the result is in meters + + + + + Project CRS transformation is turned on but ellipsoidal calculation is not selected. + + + + + The canvas units setting is taken from the project CRS (%1). + + + + + Finally, the value is converted from %2 to %3. + + + + + Segments [%1] + + + + + QgsMeasureTool + + + Incorrect measure results + + + + + <p>This map is defined with a geographic coordinate system (latitude/longitude) but the map extents suggests that it is actually a projected coordinate system (e.g., Mercator). If so, the results from line or area measurements will be incorrect.</p><p>To fix this, explicitly set an appropriate map coordinate system using the <tt>Settings:Project Properties</tt> menu. + + + + + QgsMemoryProvider + + + Whole number (integer) + + + + + Decimal number (real) + + + + + Text (string) + + + + + QgsMergeAttributesDialog + + + Id + + + + + Merge + + + + + + + feature %1 + + + + + + Minimum + + + + + + Maximum + + + + + + Median + + + + + + Sum + + + + + + Concatenation + + + + + + Mean + + + + + + + Skip attribute + + + + + Skipped + + + + + QgsMergeAttributesDialogBase + + + Merge feature attributes + + + + + Take attributes from selected feature + + + + + Remove feature from selection + + + + + QgsMessageBar + + + Remaining messages + + + + + Close all + + + + + Close + + + + + more + + + + + QgsMessageLogViewer + + + QGIS Log + + + + + No messages. + + + + + + %1 message(s) logged. + + + + + General + + + + + Timestamp + + + + + Message + + + + + Level + + + + + QgsMessageViewer + + + QGIS Message + + + + + Don't show this message again + + + + + QgsMssqlConnectionItem + + + Edit... + + + + + Delete + + + + + %1: Not a vector layer! + + + + + + %1: OK! + + + + + + Import to MSSQL database + + + + + Failed to import some layers! + + + + + + + Import was successful. + + + + + QgsMssqlNewConnection + + + Saving passwords + + + + + WARNING: You have opted to save your password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. + + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + + + + Test connection + + + + + Connection failed - Host name hasn't been specified. + + + + + + + Connection failed - Database name hasn't been specified. + + + + + + + Connection to %1 was successful + + + + + QgsMssqlNewConnectionBase + + + Create a New MSSQL connection + + + + + Connection Information + + + + + Name + + + + + Provider/DSN + + + + + Host + + + + + Database + + + + + Username + + + + + Password + + + + + Name of the new connection + + + + + Trusted Connection + + + + + Save Username + + + + + &Test Connect + + + + + Save Password + + + + + Only look in the geometry_columns metadata table + + + + + Also list tables with no geometry + + + + + Use estimated table parameters + + + + + QgsMssqlProvider + + + 8 Bytes integer + + + + + 4 Bytes integer + + + + + 2 Bytes integer + + + + + 1 Bytes integer + + + + + Decimal number (numeric) + + + + + Decimal number (decimal) + + + + + Decimal number (real) + + + + + Decimal number (double) + + + + + Text, fixed length (char) + + + + + Text, limited variable length (varchar) + + + + + Text, fixed length unicode (nchar) + + + + + Text, limited variable length unicode (nvarchar) + + + + + Text, unlimited length (text) + + + + + Text, unlimited length unicode (ntext) + + + + + QgsMssqlRootItem + + + New Connection... + + + + + QgsMssqlSchemaItem + + + %1 as %2 in %3 + + + + + as geometryless table + + + + + QgsMssqlSourceSelect + + + Add MSSQL Table(s) + + + + + &Add + + + + + &Build query + + + + + Build query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Schema + + + + + + Table + + + + + + Type + + + + + + Geometry column + + + + + + Primary key column + + + + + + SRID + + + + + + Sql + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + Select Table + + + + + You must select a table in order to add a layer. + + + + + + + + MSSQL Provider + + + + + Stop + + + + + Connect + + + + + QgsMssqlSourceSelectDelegate + + + Select... + + + + + QgsMssqlTableModel + + + Schema + + + + + Table + + + + + Type + + + + + Geometry column + + + + + SRID + + + + + Primary key column + + + + + Select at id + + + + + Sql + + + + + Detecting... + + + + + + + + Select... + + + + + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). + + + + + Enter... + + + + + Point + + + + + Multipoint + + + + + Line + + + + + Multiline + + + + + Polygon + + + + + Multipolygon + + + + + No Geometry + + + + + Unknown Geometry + + + + + QgsMultiBandColorRendererWidget + + + + + Not set + + + + + No enhancement + + + + + Stretch to MinMax + + + + + Stretch and clip to MinMax + + + + + Clip to MinMax + + + + + Red + + + + + Green + + + + + Blue + + + + + QgsMultiBandColorRendererWidgetBase + + + Form + + + + + Red band + + + + + Green band + + + + + Blue band + + + + + Min + + + + + Max + + + + + Contrast enhancement + + + + + QgsNetworkAccessManager + + + Network request %1 timed out + + + + + Network + + + + + QgsNewHttpConnection + + + Create a new %1 connection + + + + + Ignore GetCoverage URI reported in capabilities + + + + + Ignore axis orientation + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + Saving passwords + + + + + WARNING: You have entered a password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. +Note: giving the password is optional. It will be requested interactivly, when needed. + + + + + QgsNewHttpConnectionBase + + + Create a new WMS connection + + + + + Connection details + + + + + URL + + + + + If the service requires basic authentication, enter a user name and optional password + + + + + Password + + + + + &User name + + + + + Name + + + + + Name of the new connection + + + + + HTTP address of the Web Map Server + + + + + Ignore GetFeatureInfo URI reported in capabilities + + + + + Ignore GetMap URI reported in capabilities + + + + + Ignore axis orientation (WMS 1.3/WMTS) + + + + + Invert axis orientation + + + + + QgsNewOgrConnection + + + + Test connection + + + + + Connection failed - Check settings and try again. + +Extended error information: +%1 + + + + + Connection to %1 was successful + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + QgsNewOgrConnectionBase + + + Create a New OGR Database connection + + + + + Connection Information + + + + + Type + + + + + Name + + + + + Name of the new connection + + + + + Host + + + + + Database + + + + + Port + + + + + Username + + + + + Password + + + + + Save Password + + + + + &Test Connect + + + + + QgsNewSpatialiteLayerDialog + + + Text data + + + + + Whole number + + + + + Decimal number + + + + + New SpatiaLite Database File + + + + + SpatiaLite + + + + + + + + SpatiaLite Database + + + + + Unable to open the database + + + + + Error + + + + + Failed to load SRIDS: %1 + + + + + @ + + + + + Registered new database! + + + + + Unable to open the database: %1 + + + + + Error Creating SpatiaLite Table + + + + + Failed to create the SpatiaLite table %1. The database returned: +%2 + + + + + Error Creating Geometry Column + + + + + Failed to create the geometry column. The database returned: +%1 + + + + + Error Creating Spatial Index + + + + + Failed to create the spatial index. The database returned: +%1 + + + + + Invalid Layer + + + + + %1 is an invalid layer and cannot be loaded. + + + + + QgsNewSpatialiteLayerDialogBase + + + New Spatialite Layer + + + + + Database + + + + + Create a new Spatialite database + + + + + ... + + + + + Layer name + + + + + + Name for the new layer + + + + + Geometry column + + + + + geometry + + + + + + + Type + + + + + Point + + + + + Line + + + + + Polygon + + + + + MultiPoint + + + + + Multiline + + + + + Multipolygon + + + + + Spatial Reference Id + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify CRS + + + + + Add an integer id field as the primary key for the new layer + + + + + Create an autoincrementing primary key + + + + + New attribute + + + + + + Name + + + + + An attribute name + + + + + Add attribute to list + + + + + Add to attributes list + + + + + Attributes list + + + + + Delete selected attribute + + + + + Remove attribute + + + + + QgsNewVectorLayerDialog + + + Text data + + + + + Whole number + + + + + Decimal number + + + + + ESRI Shapefile + + + + + Save As + + + + + QgsNewVectorLayerDialogBase + + + New Vector Layer + + + + + File format + + + + + + + Type + + + + + Point + + + + + Line + + + + + Polygon + + + + + New attribute + + + + + + Name + + + + + + Width + + + + + + Precision + + + + + Add attribute to list + + + + + Add to attributes list + + + + + Attributes list + + + + + Delete selected attribute + + + + + Remove attribute + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify CRS + + + + + QgsOGRSublayersDialog + + + Layer ID + + + + + Layer name + + + + + Nb of features + + + + + Geometry type + + + + + QgsOGRSublayersDialogBase + + + Select layers to load + + + + + 1 + + + + + QgsOSMDataProvider + + + Open Street Map format + + + + + QgsOWSConnection + + + WMS Password for %1 + + + + + QgsOWSConnectionItem + + + Edit... + + + + + Delete + + + + + QgsOWSSourceSelect + + + &Add + + + + + Add selected layers to map + + + + + Always cache + + + + + Prefer cache + + + + + Prefer network + + + + + Always network + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + Coordinate Reference System (%n available) + crs count + + + + + + + + Coordinate Reference System + + + + + Could not understand the response: +%1 + + + + + WMS proxies + + + + + Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. + + + + + parse error at row %1, column %2: %3 + + + + + network error: %1 + + + + + The %1 connection already exists. Do you want to overwrite it? + + + + + Confirm Overwrite + + + + + QgsOWSSourceSelectBase + + + Add Layer(s) from a Server + + + + + Ready + + + + + + Layers + + + + + C&onnect + + + + + &New + + + + + Edit + + + + + Delete + + + + + Load connections from file + + + + + Load + + + + + Save connections to file + + + + + Save + + + + + Adds a few example WMS servers + + + + + Add default servers + + + + + ID + + + + + Name + + + + + + Title + + + + + Abstract + + + + + Time + + + + + Coordinate Reference System: + + + + + Selected Coordinate Reference System + + + + + Change ... + + + + + + Format + + + + + Options + + + + + Layer name + + + + + Tile size + + + + + Feature limit for GetFeatureInfo + + + + + Cache + + + + + Cache preference + +Always cache: load from cache, even if it expired + +Prefer cache: load from cache if available, otherwise load from network. Note that this can return possibly stale (but not expired) items from cache + +Prefer network: default value; load from the network if the cached entry is older than the network entry + +Always network: always load from network and do not check if the cache has a valid entry (similar to the "Reload" feature in browsers) + + + + + + Layer Order + + + + + Move selected layer UP + + + + + Up + + + + + Move selected layer DOWN + + + + + Down + + + + + Layer + + + + + Style + + + + + Tilesets + + + + + Styles + + + + + Size + + + + + CRS + + + + + Server Search + + + + + Search + + + + + Description + + + + + URL + + + + + Add selected row to WMS list + + + + + QgsOfflineEditing + + + Could not open the spatialite database + + + + + Unable to initialize SpatialMetadata: + + + + + + Could not create a new database + + + + + + Unable to activate FOREIGN_KEY constraints + + + + + Unknown data type %1 + + + + + QGIS wkbType %1 not supported + + + + + %v / %m features copied + + + + + + %v / %m features processed + + + + + %v / %m fields added + + + + + %v / %m features added + + + + + %v / %m features removed + + + + + %v / %m feature updates + + + + + %v / %m feature geometry updates + + + + + Offline Editing Plugin + + + + + Could not open the spatialite logging database + + + + + QgsOfflineEditingPlugin + + + Convert to offline project + + + + + Create offline copies of selected layers and save as offline project + + + + + + + + &Offline Editing + + + + + Synchronize + + + + + Synchronize offline project with remote layers + + + + + QgsOfflineEditingPluginGui + + + Select target database for offline data + + + + + SpatiaLite DB + + + + + All files + + + + + Offline Editing Plugin + + + + + Converting to offline project. + + + + + Offline database file '%1' exists. Overwrite? + + + + + QgsOfflineEditingPluginGuiBase + + + Create offline project + + + + + Offline data + + + + + Browse... + + + + + Select remote layers + + + + + Show only editable layers + + + + + QgsOfflineEditingProgressDialog + + + Layer %1 of %2.. + + + + + QgsOfflineEditingProgressDialogBase + + + Dialog + + + + + TextLabel + + + + + QgsOgrLayerItem + + + Couldn't open file %1.prj + + + + + + OGR + + + + + Couldn't open file %1.qpj + + + + + QgsOgrProvider + + + Data source is invalid, no layer found (%1) + + + + + + + + + OGR + + + + + Data source is invalid (%1) + + + + + Whole number (integer) + + + + + Decimal number (real) + + + + + Text (string) + + + + + OGR[%1] error %2: %3 + + + + + Unknown + + + + + Read attempt on an invalid OGR data source + + + + + OGR error creating wkb for feature %1: %2 + + + + + type %1 for attribute %2 not found + + + + + OGR error creating feature %1: %2 + + + + + type %1 for field %2 not found + + + + + OGR error creating field %1: %2 + + + + + OGR error deleting field %1: %2 + + + + + Deleting fields is not supported prior to GDAL 1.9.0 + + + + + + + OGR error on feature %1: id too large + + + + + Feature %1 for attribute update not found. + + + + + Field %1 of feature %2 doesn't exist. + + + + + Type %1 of attribute %2 of feature %3 unknown. + + + + + + OGR error setting feature %1: %2 + + + + + OGR error changing geometry: feature %1 not found + + + + + OGR error creating geometry for feature %1: %2 + + + + + OGR error in feature %1: geometry is null + + + + + OGR error setting geometry of feature %1: %2 + + + + + OGR error deleting feature %1: %2 + + + + + Shapefiles without attribute are considered read-only. + + + + + QgsOpenRasterDialog + + + Open raster + + + + + Raster file: + + + + + + ... + + + + + Save raster as: + + + + + Choose a name of the raster + + + + + + Error + + + + + + The selected file is not a valid raster file. + + + + + Choose a name for the modified raster + + + + + -modified + Georeferencer:QgsOpenRasterDialog.cpp - used to modify a user given file name + + + + + QgsOpenVectorLayerDialog + + + Open an OGR Supported Vector Layer + + + + + Open Directory + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + + + + Add vector layer + + + + + No database selected. + + + + + Password for + + + + + Please enter your password: + + + + + No protocol URI entered. + + + + + No layers selected. + + + + + No directory selected. + + + + + QgsOpenVectorLayerDialogBase + + + Add vector layer + + + + + Source type + + + + + File + + + + + Directory + + + + + + Database + + + + + + Protocol + + + + + Encoding + + + + + + + Type + + + + + URI + + + + + Source + + + + + Dataset + + + + + Browse + + + + + Connections + + + + + New + + + + + Edit + + + + + Delete + + + + + QgsOptions + + + None / Planimetric + + + + + Current layer + + + + + Top down, stop at first + + + + + Top down + + + + + Show all features + + + + + Show selected features + + + + + Show features in current canvas + + + + + Always + + + + + If needed + + + + + Never + + + + + Load all + + + + + Check file contents + + + + + Check extension + + + + + No + + + + + Basic scan + + + + + Full scan + + + + + + Cumulative pixel count cut + + + + + Minimum / maximum + + + + + Mean +/- standard deviation + + + + + Detected active locale on your system: %1 + + + + + To vertex + + + + + To segment + + + + + To vertex and segment + + + + + + map units + + + + + + pixels + + + + + + + Semi transparent circle + + + + + + + Cross + + + + + + + None + + + + + Off + + + + + QGIS + + + + + GEOS + + + + + Round + + + + + Mitre + + + + + Bevel + + + + + Central point (fastest) + + + + + Chain (fast) + + + + + Popmusic tabu chain (slow) + + + + + Popmusic tabu (slow) + + + + + Popmusic chain (very slow) + + + + + + + Save default project + + + + + You must set a default project + + + + + Current project saved as default + + + + + Error saving current project as default + + + + + Choose a directory to store project template files + + + + + Selection color + + + + + Create Options - %1 Driver + + + + + Create Options - pyramids + + + + + Parameters : + + + + + + + Choose a directory + + + + + Enter scale + + + + + Scale denominator + + + + + Load scales + + + + + + XML files (*.xml *.XML) + + + + + Save scales + + + + + No Stretch + + + + + Stretch To MinMax + + + + + Stretch And Clip To MinMax + + + + + Clip To MinMax + + + + + + Parameters: + + + + + Can only use ellipsoidal calculations when CRS transformation is enabled + + + + + QgsOptionsBase + + + Options + + + + + General + + + + + Project files + + + + + Prompt to save project changes when required + + + + + Warn when opening a project file saved with an older version of QGIS + + + + + Create new project from default project + + + + + Set current project as default + + + + + Reset default + + + + + Template folder + + + + + Browse + + + + + Reset + + + + + Enable macros + + + + + Never + + + + + Ask + + + + + For this session only + + + + + Always (not recommended) + + + + + Default Map Appearance (overridden by project properties) + + + + + Selection color + + + + + Background color + + + + + Application + + + + + Style <i>(QGIS restart required)</i> + + + + + Icon theme + + + + + Icon size + + + + + 16 + + + + + 24 + + + + + 32 + + + + + Font + + + + + Qt default + + + + + + Size + + + + + Double click action in legend + + + + + Open layer properties + + + + + Open attribute table + + + + + Capitalise layer names in legend + + + + + Display classification attribute names in legend + + + + + Create raster icons in legend + + + + + Hide splash screen at startup + + + + + Show tips at start up + + + + + Open identify results in a dock window (QGIS restart required) + + + + + Open snapping options in a dock window (QGIS restart required) + + + + + Open attribute table in a dock window (QGIS restart required) + + + + + Add PostGIS layers with double click and select in extended mode + + + + + Add new layers to selected or current group + + + + + Copy geometry in WKT representation from attribute table + + + + + Ignore shapefile encoding + + + + + Attribute table behaviour + + + + + Attribute table row cache + + + + + Representation for NULL values + + + + + Prompt for raster sublayers + + + + + Scan for valid items in the browser dock + + + + + Scan for contents of compressed files (.zip) in browser dock + + + + + GDAL + + + + + GDAL Drivers + + + + + In some cases more than one GDAL driver can be used to load the same raster format. Use the list below to specify which to use. + + + + + Name + + + + + ext + + + + + Flags + + + + + Description + + + + + GDAL Driver Options + + + + + Edit Pyramids Options + + + + + Edit Create Options + + + + + Plugins + + + + + Plugin paths + + + + + Path(s) to search for additional C++ plugins libraries + + + + + + + Add + + + + + + + Remove + + + + + Rendering + + + + + Rendering behavior + + + + + By default new la&yers added to the map should be displayed + + + + + <b>Note:</b> Use zero to prevent display updates until all features have been rendered + + + + + Use render caching where possible to speed up redraws + + + + + Enable back buffer (Better graphics performance at the cost of loosing the possibility to cancel rendering and incremental feature drawing) + + + + + Number of features to draw before updating the display + + + + + Map display will be updated (drawn) after this many features have been read from the data source + + + + + Rendering quality + + + + + Make lines appear less jagged at the expense of some drawing performance + + + + + Fix problems with incorrectly filled polygons + + + + + Compatibility + + + + + Use new generation symbology for rendering + + + + + SVG paths + + + + + Path(s) to search for Scalable Vector Graphic (SVG) symbols + + + + + Rasters + + + + + RGB band selection + + + + + Red band + + + + + Green band + + + + + Blue band + + + + + Contrast enhancement + + + + + Single band gray + + + + + Multi band color (byte / band) + + + + + Multi band color (> byte / band) + + + + + Limits (minimum/maximum) + + + + + Cumulative pixel count cut limits + + + + + - + + + + + + % + + + + + Standard deviation multiplier + + + + + Map tools + + + + + Identify + + + + + <b>Note:</b> Specify the search radius as a percentage of the map width + + + + + Search radius for identifying features and displaying map tips + + + + + Mode + + + + + Open feature form, if a single feature is identified + + + + + Panning and zooming + + + + + Zoom factor + + + + + Mouse wheel action + + + + + Zoom + + + + + Zoom and recenter + + + + + Zoom to mouse cursor + + + + + Nothing + + + + + Predefined scales + + + + + + + + + + ... + + + + + Measure tool + + + + + Semi-minor + + + + + Rubberband color + + + + + Preferred measurements units + + + + + Meters + + + + + Feet + + + + + Preferred angle units + + + + + Degrees + + + + + Radians + + + + + Decimal places + + + + + Keep base unit + + + + + Semi-major + + + + + Gon + + + + + Ellipsoid for distance calculations + + + + + Overlays + + + + + Position + + + + + Placement algorithm + + + + + Digitizing + + + + + Rubberband + + + + + Line width + + + + + Line width in pixels + + + + + Line color + + + + + Snapping + + + + + Default snap mode + + + + + Default snapping tolerance + + + + + Search radius for vertex edits + + + + + + map units + + + + + + pixels + + + + + Vertex markers + + + + + Show markers only for selected features + + + + + Marker style + + + + + Marker size + + + + + Other settings + + + + + Suppress attributes pop-up windows after each created feature + + + + + Reuse last entered attribute values + + + + + Validate geometries + + + + + Join style for curve offset + + + + + Quadrantsegments for curve offset + + + + + Miter limit for curve offset + + + + + CRS + + + + + Default Coordinate Reference System for new projects + + + + + + Select... + + + + + Always start new projects with this CRS + + + + + Automatically enable 'on the fly' reprojection if CRS of a new added layer differ from CRS of layer(s) already present. CRS of present layer(s) will be used. + + + + + Automatically enable 'on the fly' reprojection if layers have different CRS + + + + + Enable 'on the &fly' reprojection by default + + + + + Coordinate Reference System for new layers + + + + + When a new layer is created, or when a layer is loaded that has no Coordinate Reference System (CRS) + + + + + Prompt for &CRS + + + + + Use &project CRS + + + + + Use default CRS displa&yed below + + + + + Locale + + + + + Override system locale + + + + + Locale to use instead + + + + + <b>Note:</b> Enabling / changing overide on local requires an application restart + + + + + Additional Info + + + + + Detected active locale on your system: + + + + + Network + + + + + Use proxy for web access + + + + + Host + + + + + Port + + + + + User + + + + + + Leave this blank if no proxy username / password are required + + + + + Password + + + + + Proxy type + + + + + Exclude URLs (starting with) + + + + + Cache settings + + + + + Directory + + + + + Clear + + + + + WMS search address + + + + + Timeout for network requests (ms) + + + + + Default expiration period for WMS-C/WMTS tiles (hours) + + + + + QgsOraclePlugin + + + Add Oracle GeoRaster Layer... + + + + + Add a Oracle Spatial GeoRaster... + + + + + QgsOracleSelectGeoraster + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Password for %1/<password>@%2 + + + + + Please enter your password: + + + + + Open failed + + + + + The connection to %1 failed. Please verify your connection parameters. Make sure you have the GDAL GeoRaster plugin installed. + + + + + QgsPGConnectionItem + + + Failed to retrieve layers + + + + + No layers found. + + + + + Edit... + + + + + Delete + + + + + %1: Not a vector layer! + + + + + + %1: OK! + + + + + + Import to PostGIS database + + + + + Failed to import some layers! + + + + + + + Import was successful. + + + + + QgsPGLayerItem + + + + + Delete layer + + + + + Layer deleted successfully. + + + + + QgsPGRootItem + + + New Connection... + + + + + QgsPGSchemaItem + + + %1 as %2 in %3 + + + + + as geometryless table + + + + + QgsPalettedRendererWidgetBase + + + Form + + + + + Band + + + + + Value + + + + + Color + + + + + QgsPasteTransformations + + + &Add New Transfer + + + + + QgsPasteTransformationsBase + + + Paste Transformations + + + + + <b>Note: This function is not useful yet!</b> + + + + + Source + + + + + Destination + + + + + QgsPenCapStyleComboBox + + + Square + + + + + Flat + + + + + Round + + + + + QgsPenJoinStyleComboBox + + + Bevel + + + + + Miter + + + + + Round + + + + + QgsPenStyleComboBox + + + Solid Line + + + + + No Pen + + + + + Dash Line + + + + + Dot Line + + + + + Dash Dot Line + + + + + Dash Dot Dot Line + + + + + QgsPgNewConnection + + + disable + + + + + allow + + + + + prefer + + + + + require + + + + + Saving passwords + + + + + WARNING: You have opted to save your password. It will be stored in plain text in your project files and in your home directory on Unix-like systems, or in your user profile on Windows. If you do not want this to happen, please press the Cancel button. + + + + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + + Test connection + + + + + Connection to %1 was successful + + + + + Connection failed - Check settings and try again. + + + + + + + QgsPgNewConnectionBase + + + Create a New PostGIS connection + + + + + Connection Information + + + + + Name + + + + + Service + + + + + Host + + + + + Port + + + + + Database + + + + + SSL mode + + + + + Username + + + + + Password + + + + + Name of the new connection + + + + + 5432 + + + + + Restrict the displayed tables to those that are in the layer registries. + + + + + Restricts the displayed tables to those that are found in the layer registries (geometry_columns, geography_columns, topology.layer). This can speed up the initial display of spatial tables. + + + + + Only look in the layer registries + + + + + Restrict the search to the public schema for spatial tables not in the geometry_columns table + + + + + When searching for spatial tables that are not in the geometry_columns tables, restrict the search to tables that are in the public schema (for some databases this can save lots of time) + + + + + Only look in the 'public' schema + + + + + Save Username + + + + + &Test Connect + + + + + Save Password + + + + + Use estimated table statistics for the layer metadata. + + + + + <html> +<body> +<p>When the layer is setup various metadata is required for the PostGIS table. This includes information such as the table row count, geometry type and spatial extents of the data in the geometry column. If the table contains a large number of rows determining this metadata is time consuming.</p> +<p>By activating this option the following fast table metadata operations are done:</p> +<p>1) Row count is determined from table statistics obtained from running the PostgreSQL table analyse function.</p> +<p>2) Table extents are always determined with the estimated_extent PostGIS function even if a layer filter is applied.</p> +<p>3) If the table geometry type is unknown and is not exclusively taken from the geometry_columns table, then it is determined from the first 100 non-null geometry rows in the table.</p> +</body> +</html> + + + + + Use estimated table metadata + + + + + Also list tables with no geometry + + + + + QgsPgSourceSelect + + + &Add + + + + + &Build query + + + + + Build query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Schema + + + + + + Table + + + + + + Type + + + + + + Geometry column + + + + + + Primary key column + + + + + + SRID + + + + + + Sql + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + Select Table + + + + + You must select a table in order to add a layer. + + + + + Stop + + + + + + Postgres/PostGIS Provider + + + + + Could not open the Postgres/PostGIS Provider + + + + + No accessible tables or views found. Check the message log for possible errors. + + + + + Connect + + + + + QgsPgSourceSelectDelegate + + + Select... + + + + + QgsPgTableModel + + + Schema + + + + + Table + + + + + Column + + + + + Data Type + + + + + Spatial Type + + + + + SRID + + + + + Primary Key + + + + + Select at id + + + + + Sql + + + + + Detecting... + + + + + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). + + + + + Select... + + + + + Enter... + + + + + QgsPluginInstaller + + Nothing to remove! Plugin directory doesn't exist: + + + + Failed to remove the directory: + + + + Check permissions or remove it manually + + + + Fetch Python Plugins... + + + + Install more plugins from remote repositories + + + + Looking for new plugins... + + + + QGIS Plugin Installer update + + + + The Plugin Installer has been updated. Please restart QGIS prior to using it + + + + QGIS Plugin Conflict: + + + + The Plugin Installer has detected an obsolete plugin which masks a newer version shipped with this QGIS version. This is likely due to files associated with a previous installation of QGIS. Please use the Plugin Installer to remove that older plugin in order to unmask the newer version shipped with this copy of QGIS. + + + + There is a new plugin available + + + + There is a plugin update available + + + + QGIS Python Plugin Installer + + + + Error reading repository: + + + + Couldn't open the local plugin directory + + + + + QgsPluginInstallerDialog + + QGIS Python Plugin Installer + + + + Error reading repository: + + + + all repositories + + + + connected + + + + This repository is connected + + + + unavailable + + + + This repository is enabled, but unavailable + + + + disabled + + + + This repository is disabled + + + + This repository is blocked due to incompatibility with your Quantum GIS version + + + + orphans + + + + any status + + + + not installed + + + + installed + + + + upgradeable and news + + + + This plugin is not installed + + + + This plugin is installed + + + + This plugin is installed, but there is an updated version available + + + + This plugin is installed, but I can't find it in any enabled repository + + + + This plugin is not installed and is seen for the first time + + + + This plugin is installed and is newer than its version available in a repository + + + + This plugin is incompatible with your Quantum GIS version and probably won't work. + + + + The required Python module is not installed. +For more information, please visit its homepage and Quantum GIS wiki. + + + + This plugin seems to be broken. +It has been installed but can't be loaded. +Here is the error message: + + + + upgradeable + + + + new! + + + + invalid + + + + Note that it's an uninstallable core plugin + + + + installed version + + + + available version + + + + That's the newest available version + + + + There is no version available for download + + + + This plugin is broken + + + + This plugin requires a newer version of Quantum GIS + + + + at least + + + + This plugin requires a missing module + + + + only locally available + + + + Experimental plugin. Use at own risk + + + + - %d plugins available + + + + Install plugin + + + + Reinstall plugin + + + + Upgrade plugin + + + + Install/upgrade plugin + + + + Downgrade plugin + + + + Are you sure you want to downgrade the plugin to the latest available version? The installed one is newer! + + + + Plugin installation failed + + + + Plugin has disappeared + + + + The plugin seems to have been installed but I don't know where. Probably the plugin package contained a wrong named directory. +Please search the list of installed plugins. I'm nearly sure you'll find the plugin there, but I just can't determine which of them it is. It also means that I won't be able to determine if this plugin is installed and inform you about available updates. However the plugin may work. Please contact the plugin author and submit this issue. + + + + Plugin installed successfully + + + + Python plugin installed. +Now you need to enable it in Plugin Manager. + + + + Plugin reinstalled successfully + + + + Python plugin reinstalled. +You need to restart Quantum GIS in order to reload it. + + + + The plugin is designed for a newer version of Quantum GIS. The minimum required version is: + + + + The plugin depends on some components missing on your system. You need to install the following Python module in order to enable it: + + + + The plugin is broken. Python said: + + + + Plugin uninstall failed + + + + Are you sure you want to uninstall the following plugin? + + + + Warning: this plugin isn't available in any accessible repository! + + + + Plugin Installer update uninstalled. Plugin Installer will now close and revert to its primary version. You can find it in the Plugins menu and continue operation. + + + + Plugin Installer update uninstalled. Please restart QGIS in order to load its primary version. + + + + Plugin uninstalled successfully + + + + Python plugin uninstalled. Note that you may need to restart Quantum GIS in order to remove it completely. + + + + Unable to add another repository with the same URL! + + + + Are you sure you want to remove the following repository? + + + + + QgsPluginInstallerDialogBase + + + + QGIS Python Plugin Installer + + + + + Help + + + + + The plugins will be installed to ~/.qgis/python/plugins + + + + + + Close the Installer window + + + + + Close + + + + + Plugins + + + + + List of available and installed plugins + + + + + Filter: + + + + + + Display only plugins containing this word in their metadata + + + + + + Display only plugins from given repository + + + + + all repositories + + + + + + Display only plugins with matching status + + + + + State + + + + + + Status + + + + + + Name + + + + + Version + + + + + Description + + + + + Author + + + + + Repository + + + + + Upgrade all + + + + + + Install, reinstall or upgrade the selected plugin + + + + + Install/upgrade plugin + + + + + + Uninstall the selected plugin + + + + + Uninstall plugin + + + + + Repositories + + + + + List of plugin repositories + + + + + URL + + + + + + Add a new plugin repository + + + + + Add... + + + + + + Edit the selected repository + + + + + Edit... + + + + + + Remove the selected repository + + + + + Delete + + + + + + Add the contributed repository to the list + + + + + Add the contributed repository + + + + + + Remove depreciated repositories from the list + + + + + Delete depreciated repositories + + + + + Options + + + + + Configuration of the plugin installer + + + + + Check for updates on startup + + + + + every time QGIS starts + + + + + once a day + + + + + every 3 days + + + + + every week + + + + + every 2 weeks + + + + + every month + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> If this function is enabled, Quantum GIS will inform you whenever a new plugin or plugin update is available. Otherwise, fetching repositories will be performed during opening of the Plugin Installer window.</p></body></html> + + + + + Allowed plugins + + + + + Only show plugins from the official repository + + + + + Show all plugins except those marked as experimental + + + + + Show all plugins, even those marked as experimental + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> Experimental plugins are generally unsuitable for production use. These plugins are in early stages of development, and should be considered 'incomplete' or 'proof of concept' tools. QGIS does not recommend installing these plugins unless you intend to use them for testing purposes.</p></body></html> + + + + + QgsPluginInstallerFetchingDialog + + Success + + + + Resolving host name... + + + + Connecting... + + + + Host connected. Sending request... + + + + Downloading data... + + + + Idle + + + + Closing connection... + + + + Error + + + + + QgsPluginInstallerFetchingDialogBase + + + Fetching repositories + + + + + Overall progress: + + + + + Abort fetching + + + + + Repository + + + + + State + + + + + QgsPluginInstallerInstallingDialog + + Installing... + + + + Resolving host name... + + + + Connecting... + + + + Host connected. Sending request... + + + + Downloading data... + + + + Idle + + + + Closing connection... + + + + Error + + + + Failed to unzip the plugin package. Probably it's broken or missing from the repository. You may also want to make sure that you have write permission to the plugin directory: + + + + Aborted by user + + + + + QgsPluginInstallerInstallingDialogBase + + + QGIS Python Plugin Installer + + + + + Installing plugin: + + + + + Connecting... + + + + + QgsPluginInstallerOldReposBase + + + Plugin Installer + + + + + The Plugin Installer has detected that your copy of QGIS is configured to use a number of plugin repositories around the world. It was a typical situation in older versions of the program, but from the version 1.5, external plugins are collected in one central Contributed Repository, and all the old repositories are not necessary any more. Do you want to drop them now? If you're unsure what to do, probably you don't need them. However, if you choose to keep them in use, you will be able to remove them manually later. + + + + + Remove + + + + + Disable + + + + + Keep + + + + + Ask me later + + + + + QgsPluginInstallerPluginErrorDialog + + no error message received + + + + + QgsPluginInstallerPluginErrorDialogBase + + + Error loading plugin + + + + + The plugin seems to be invalid or have unfulfilled dependencies. It has been installed, but can't be loaded. If you really need this plugin, you can contact its author or <a href="http://lists.osgeo.org/mailman/listinfo/qgis-user">QGIS users group</a> and try to solve the problem. If not, you can just uninstall it. Here is the error message below: + + + + + Do you want to uninstall this plugin now? If you're unsure, probably you would like to do this. + + + + + QgsPluginInstallerRepositoryDetailsDialogBase + + + Repository details + + + + + Name: + + + + + + Enter a name for the repository + + + + + URL: + + + + + + Enter the repository URL, beginning with "http://" + + + + + + Enable or disable the repository (disabled repositories will be omitted) + + + + + Enabled + + + + + QgsPluginManager + + + &Select All + + + + + &Clear All + + + + + + Plugins + + + + + [ incompatible ] + + + + + + Installed in %1 menu/toolbar + + + + + No Plugins + + + + + No QGIS plugins found in %1 + + + + + Error + + + + + Failed to open plugin installer! + + + + + QgsPluginManagerBase + + + QGIS Plugin Manager + + + + + To enable / disable a plugin, click its checkbox or description + + + + + &Filter + + + + + Plugin Directory: + + + + + Directory + + + + + Plugin Installer + + + + + QgsPointDisplacementRendererWidget + + + + + None + + + + + + Label Font + + + + + Circle color + + + + + Label color + + + + + The point displacement renderer only applies to (single) point layers. +'%1' is not a point layer and cannot be displayed by the point displacement renderer + + + + + QgsPointDisplacementRendererWidgetBase + + + Form + + + + + Center symbol: + + + + + Renderer: + + + + + Renderer settings... + + + + + Displacement circles + + + + + Circle pen width: + + + + + Circle color: + + + + + Circle radius modification: + + + + + Point distance tolerance: + + + + + Labels + + + + + Label attribute: + + + + + Label font... + + + + + Label color: + + + + + Use scale dependent labelling + + + + + max scale denominator: + + + + + QgsPostgresConn + + + Connection to database failed + + + + + + + + + + + + + + + + + + + + + + + + + + + + PostGIS + + + + + error in setting encoding + + + + + undefined return value from encoding setting + + + + + Your database has no working PostGIS support. + + + + + Your PostGIS installation has no GEOS support. Feature selection and identification will not work properly. Please install PostGIS with GEOS support (http://geos.refractions.net) + + + + + SQL:%1 +result:%2 +error:%3 + + + + + + Database connection was successful, but the accessible tables could not be determined. + + + + + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: +%1 + + + + + + Database connection was successful, but the accessible tables could not be determined. +The error message from the database was: +%1 + + + + + Database connection was successful, but no accessible tables were found. Please verify that you have SELECT privilege on a table carrying PostGIS geometry. + + + + + Unable to get list of spatially enabled tables from the database + + + + + Retrieval of postgis version failed + + + + + Could not parse postgis version string '%1' + + + + + Connection error: %1 returned %2 [%3] + + + + + Erroneous query: %1 returned %2 [%3] + + + + + Query failed: %1 +Error: no result buffer + + + + + Not logged query failed: %1 +Error: no result buffer + + + + + Query: %1 returned %2 [%3] + + + + + %1 cursor states lost. +SQL: %2 +Result: %3 (%4) + + + + + resetting bad connection. + + + + + retry after reset succeeded. + + + + + retry after reset failed again. + + + + + connection still bad after reset. + + + + + bad connection, not retrying. + + + + + Point + + + + + Multipoint + + + + + Line + + + + + Multiline + + + + + Polygon + + + + + Multipolygon + + + + + No Geometry + + + + + Unknown Geometry + + + + + None + + + + + Geometry + + + + + Geography + + + + + TopoGeometry + + + + + + Query could not be canceled [%1] + + + + + PQgetCancel failed + + + + + QgsPostgresProvider + + + invalid PostgreSQL layer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PostGIS + + + + + Whole number (smallint - 16bit) + + + + + Whole number (integer - 32bit) + + + + + Whole number (integer - 64bit) + + + + + Decimal number (numeric) + + + + + Decimal number (decimal) + + + + + Decimal number (real) + + + + + Decimal number (double) + + + + + Text, fixed length (char) + + + + + Text, limited variable length (varchar) + + + + + Text, unlimited length (text) + + + + + Couldn't get the feature geometry in binary form + + + + + Read attempt on an invalid postgresql data source + + + + + nextFeature() without select() + + + + + + Fetching from cursor %1 failed +Database error: %2 + + + + + feature %1 not found + + + + + found %1 features instead of just one. + + + + + FAILURE: Field %1 not found. + + + + + + unexpected formatted field type '%1' for field %2 + + + + + Field %1 ignored, because of unsupported type %2 + + + + + Field %1 ignored, because of unsupported type type %2 + + + + + Duplicate field %1 found + + + + + + Unable to access the %1 relation. +The error message from the database was: +%2. +SQL: %3 + + + + + PostgreSQL is still in recovery after a database crash +(or you are connected to a (read-only) slave). +Write accesses will be denied. + + + + + Unable to determine table access privileges for the %1 relation. +The error message from the database was: +%2. +SQL: %3 + + + + + The custom query is not a select query. + + + + + Unable to execute the query. +The error message from the database was: +%1. +SQL: %2 + + + + + The table has no column suitable for use as a key. Quantum GIS requires a primary key, a PostgreSQL oid column or a ctid for tables. + + + + + Primary key field '%1' for view not unique. + + + + + Type '%1' of primary key field '%2' for view invalid. + + + + + Key field '%1' for view not found. + + + + + No key field for view given. + + + + + Unexpected relation type '%1'. + + + + + No key field for query given. + + + + + PostGIS error while adding features: %1 + + + + + PostGIS error while deleting features: %1 + + + + + PostGIS error while adding attributes: %1 + + + + + PostGIS error while deleting attributes: %1 + + + + + PostGIS error while changing attributes: %1 + + + + + PostGIS error while changing geometry values: %1 + + + + + result of extents query invalid: %1 + + + + + Geometry type and srid for empty column %1 of %2 undefined. + + + + + Feature type or srid for %1 of %2 could not be determined or was not requested. + + + + + Editing and adding disabled for 2D+ layer (%1; %2) + + + + + QgsProject + + + Unable to open %1 + + + + + Project File Read Error + + + + + %1 at line %2 column %3 + + + + + Project file read error: %1 at line %2 column %3 + + + + + %1 for file %2 + + + + + Unable to save to file %1 + + + + + %1 is not writable. Please adjust permissions (if possible) and try again. + + + + + Unable to save to file %1. Your project may be corrupted on disk. Try clearing some space on the volume and check file permissions before pressing save again. + + + + + QgsProjectBadLayerGuiHandler + + + Ignore + + + + + QGIS Project Read Error + + + + + Unable to open one or more project layers. +Choose ignore to continue loading without the missing layers. Choose cancel to return to your pre-project load state. Choose OK to try to find the missing layers. + + + + + QgsProjectLayerGroupDialog + + + Select project file + + + + + QGis files + + + + + Recursive embedding not possible + + + + + It is not possible to embed layers / groups from the current project. + + + + + QgsProjectLayerGroupDialogBase + + + Select layers and groups to embed + + + + + Project file + + + + + ... + + + + + QgsProjectProperties + + + Layer + + + + + Type + + + + + Identifiable + + + + + Vector + + + + + WMS + + + + + Raster + + + + + + Coordinate System Restriction + + + + + No coordinate systems selected. Disabling restriction. + + + + + Selection color + + + + + CRS %1 was already selected + + + + + Coordinate System Restrictions + + + + + The current selection of coordinate systems will be lost. +Proceed? + + + + + Select print composer + + + + + Composer Title + + + + + Select restricted layers and groups + + + + + Enter scale + + + + + Scale denominator + + + + + Load scales + + + + + + XML files (*.xml *.XML) + + + + + Save scales + + + + + Transparency %1% + + + + + Select a valid symbol + + + + + Invalid symbol : + + + + + QgsProjectPropertiesBase + + + Project Properties + + + + + General + + + + + General settings + + + + + Project title + + + + + Descriptive project name + + + + + Default project title + + + + + Selection color + + + + + Background color + + + + + absolute + + + + + relative + + + + + Save paths + + + + + Used when CRS transformation is turned off + + + + + Canvas units + + + + + Meters + + + + + Feet + + + + + Degree + + + + + Degree display + + + + + Decimal degrees + + + + + Degrees, Minutes + + + + + Degrees, Minutes, Seconds + + + + + Precision + + + + + Automatically sets the number of decimal places in the mouse position display + + + + + The number of decimal places that are used when displaying the mouse position is automatically set to be enough so that moving the mouse by one pixel gives a change in the position display + + + + + Automatic + + + + + + Sets the number of decimal places to use for the mouse position display + + + + + Manual + + + + + + The number of decimal places for the manual option + + + + + decimal places + + + + + Project scales + + + + + + + + + + + + ... + + + + + Coordinate Reference System (CRS) + + + + + Enable 'on the fly' CRS transformation + + + + + Identifiable layers + + + + + + Layer + + + + + Type + + + + + Identifiable + + + + + Default Styles + + + + + Default Symbols + + + + + Marker + + + + + Line + + + + + Fill + + + + + Color Ramp + + + + + Style Manager + + + + + Options + + + + + Assign random colors to symbols + + + + + Opacity + + + + + OWS Server + + + + + Service Capabilitities + + + + + Person + + + + + Title + + + + + Organization + + + + + Online resource + + + + + E-Mail + + + + + Phone + + + + + Abstract + + + + + Fees + + + + + Access constraints + + + + + Keyword list + + + + + WMS Capabilitities + + + + + Advertised Extent + + + + + Min. X + + + + + Min. Y + + + + + Max. X + + + + + Max. Y + + + + + Use Current Canvas Extent + + + + + Coordinate Systems Restrictions + + + + + Add + + + + + Remove + + + + + Used + + + + + Exclude composers + + + + + Exclude layers + + + + + Add WKT geometry to feature info response + + + + + Advertised WMS url + + + + + Maximum width + + + + + Maximum height + + + + + WFS Capabilitities + + + + + Published + + + + + Update + + + + + Insert + + + + + Delete + + + + + Unselect all + + + + + Select all + + + + + Macros + + + + + Python macros + + + + + QgsProjectionSelector + + + User Defined Coordinate Systems + + + + + Geographic Coordinate Systems + + + + + Projected Coordinate Systems + + + + + Resource Location Error + + + + + Error reading database file from: + %1 +Because of this the projection selector will not work... + + + + + QgsProjectionSelectorBase + + + Coordinate Reference System Selector + + + + + Filter + + + + + Recently used coordinate reference systems + + + + + + Coordinate Reference System + + + + + + Authority ID + + + + + + ID + + + + + Coordinate reference systems of the world + + + + + Hide deprecated CRSs + + + + + QgsQueryBuilder + + + &Test + + + + + &Clear + + + + + Query Result + + + + + The where clause returned %n row(s). + returned test rows + + + + + + + + + + Query Failed + + + + + + + An error occurred when executing the query. + + + + + + +The data provider said: +%1 + + + + + Error in Query + + + + + The subset string could not be set + + + + + QgsQueryBuilderBase + + + Query Builder + + + + + Datasource + + + + + Fields + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of fields in this vector file</p></body></html> + + + + + Values + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">List of values for the current field.</p></body></html> + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Take a <span style=" font-weight:600;">sample</span> of records in the vector file</p></body></html> + + + + + Sample + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Retrieve <span style=" font-weight:600;">all</span> the record in the vector file (<span style=" font-style:italic;">if the table is big, the operation can consume some time</span>)</p></body></html> + + + + + All + + + + + Use unfiltered layer + + + + + Operators + + + + + = + + + + + < + + + + + NOT + + + + + OR + + + + + AND + + + + + % + + + + + IN + + + + + NOT IN + + + + + != + + + + + > + + + + + LIKE + + + + + ILIKE + + + + + >= + + + + + <= + + + + + SQL where clause + + + + + QgsQuickPrint + + + Please wait while your report is generated + COMMENTED OUT + + + + + km + + + + + mm + + + + + cm + + + + + m + + + + + miles + + + + + mile + + + + + inches + + + + + foot + + + + + feet + + + + + degree + + + + + degrees + + + + + unknown + + + + + QgsRasterCalcDialog + + + Enter result file + + + + + Expression valid + + + + + Expression invalid + + + + + QgsRasterCalcDialogBase + + + Raster calculator + + + + + Raster bands + + + + + Result layer + + + + + Output layer + + + + + ... + + + + + Current layer extent + + + + + X min + + + + + XMax + + + + + Y min + + + + + Y max + + + + + Columns + + + + + Rows + + + + + Output format + + + + + Add result to project + + + + + Operators + + + + + + + + + + + * + + + + + sqrt + + + + + sin + + + + + ^ + + + + + acos + + + + + ( + + + + + - + + + + + / + + + + + cos + + + + + asin + + + + + tan + + + + + atan + + + + + ) + + + + + < + + + + + > + + + + + = + + + + + OR + + + + + AND + + + + + <= + + + + + >= + + + + + Raster calculator expression + + + + + QgsRasterDataProvider + + + Identify + + + + + Build Pyramids + + + + + Create Datasources + + + + + Remove Datasources + + + + + no data + + + + + Feature info + + + + + Band + + + + + Average + + + + + Nearest Neighbour + + + + + Gauss + + + + + Cubic + + + + + Mode + + + + + None + + + + + QgsRasterFormatSaveOptionsWidget + + + Default + + + + + + No compression + + + + + + Low compression + + + + + + High compression + + + + + + Lossy compression + + + + + Cannot get create options for driver %1 + + + + + No help available + + + + + Create Options: + +%1 + + + + + Valid + + + + + Invalid creation option : + +%1 + +Click on help button to get valid creation options for this format + + + + + Cannot validate + + + + + Profile name: + + + + + Use simple interface + + + + + Use table interface + + + + + QgsRasterFormatSaveOptionsWidgetBase + + + Form + + + + + New + + + + + Remove + + + + + Reset + + + + + Profile + + + + + Name + + + + + Value + + + + + + + + + + + Validate + + + + + Help + + + + + - + + + + + Insert KEY=VALUE pairs separated by spaces + + + + + QgsRasterHistogramWidget + + + Visibility + + + + + Show min/max markers + + + + + Show all bands + + + + + Show RGB/Gray band(s) + + + + + Show selected band + + + + + Reset + + + + + Load min/max + + + + + Estimate (faster) + + + + + Actual (slower) + + + + + Current extent + + + + + Use stddev (1.0) + + + + + Use stddev (custom) + + + + + Load for each band + + + + + Recompute Histogram + + + + + Band %1 + + + + + Choose a file name to save the map image as + + + + + QgsRasterHistogramWidgetBase + + + Form + + + + + Band + + + + + Min + + + + + Pick Min value on graph + + + + + + ... + + + + + Max + + + + + Pick Max value on graph + + + + + Prefs/Actions + + + + + Save plot + + + + + Save as image... + + + + + Compute Histogram + + + + + QgsRasterLayer + + + + + + + Not Set + + + + + QgsRasterLayer created + + + + + Retrieving stats for %1 + + + + + Could not reproject view extent: %1 + + + + + + + + Raster + + + + + Could not reproject layer extent: %1 + + + + + Cannot read data + + + + + null (no data) + + + + + Driver: + + + + + No Data Value + + + + + NoDataValue not set + + + + + Data Type: + + + + + GDT_Byte - Eight bit unsigned integer + + + + + GDT_UInt16 - Sixteen bit unsigned integer + + + + + GDT_Int16 - Sixteen bit signed integer + + + + + GDT_UInt32 - Thirty two bit unsigned integer + + + + + GDT_Int32 - Thirty two bit signed integer + + + + + GDT_Float32 - Thirty two bit floating point + + + + + GDT_Float64 - Sixty four bit floating point + + + + + GDT_CInt16 - Complex Int16 + + + + + GDT_CInt32 - Complex Int32 + + + + + GDT_CFloat32 - Complex Float32 + + + + + GDT_CFloat64 - Complex Float64 + + + + + Could not determine raster data type. + + + + + Pyramid overviews: + + + + + Layer Spatial Reference System: + + + + + Layer Extent (layer original source projection): + + + + + Project Spatial Reference System: + + + + + + Band + + + + + Band No + + + + + No Stats + + + + + No stats collected yet + + + + + Min Val + + + + + Max Val + + + + + Range + + + + + Mean + + + + + Sum of squares + + + + + Standard Deviation + + + + + Sum of all cells + + + + + Cell Count + + + + + Cannot instantiate the '%1' data provider + + + + + Provider is not valid (provider: %1, URI: %2 + + + + + <maplayer> not found. + + + + + GDAL data type %1 is not supported + + + + + QgsRasterLayerProperties + + + Not Set + + + + + Description + + + + + Large resolution raster layers can slow navigation in QGIS. + + + + + By creating lower resolution copies of the data (pyramids) performance can be considerably improved as QGIS selects the most suitable resolution to use depending on the level of zoom. + + + + + You must have write access in the directory where the original data is stored to build pyramids. + + + + + Please note that building internal pyramids may alter the original data file and once created they cannot be removed! + + + + + Please note that building internal pyramids could corrupt your image - always make a backup of your data first! + + + + + Layer Properties - %1 + + + + + + Nearest neighbour + + + + + + Bilinear + + + + + + Cubic + + + + + + Average + + + + + None + + + + + + Red + + + + + + Green + + + + + + Blue + + + + + + + + + Percent Transparent + + + + + + Gray + + + + + + Indexed Value + + + + + From + + + + + To + + + + + not defined + + + + + Columns: %1 + + + + + Rows: %1 + + + + + Columns: + + + + + + + + n/a + + + + + Rows: + + + + + + No-Data Value: + + + + + No-Data Value: %1 + + + + + + Write access denied + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + + Building pyramids failed. + + + + + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. + + + + + + Building pyramid overviews is not supported on this type of raster. + + + + + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. + + + + + Save file + + + + + + Textfile + + + + + QGIS Generated Transparent Pixel Value Export File + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + Open file + + + + + Import Error + + + + + The following lines contained errors + +%1 + + + + + Read access denied + + + + + Read access denied. Adjust the file permissions and try again. + + + + + + + + Default Style + + + + + Load layer properties from style file + + + + + + QGIS Layer Style File + + + + + + Saved Style + + + + + Save layer properties as style file + + + + + Filter + + + + + Bands + + + + + QgsRasterLayerPropertiesBase + + + Raster Layer Properties + + + + + Save Style ... + + + + + Load Style ... + + + + + Save As Default + + + + + Restore Default Style + + + + + Style + mRendererTab + + + + + Render type + + + + + Resampling + + + + + Zoomed in + + + + + Zoomed out + + + + + Oversampling + + + + + Transparency + + + + + Global transparency + + + + + None + + + + + 00% + + + + + <p align="right">Full</p> + + + + + No data value + + + + + Use original source no data value. + + + + + No data value: + + + + + Original data source no data value, if exists. + + + + + <src no data value> + + + + + + Additional user defined no data value. + + + + + Additional no data value + + + + + Custom transparency options + + + + + Transparency band + + + + + Transparent pixel list + + + + + Add values manually + + + + + + + + + + ... + + + + + Add Values from display + + + + + Remove selected row + + + + + Default values + + + + + Import from file + + + + + Export to file + + + + + General + + + + + Display name + + + + + Layer source + + + + + Columns + + + + + Rows + + + + + No Data + + + + + Scale dependent visibility + + + + + MInimum scale denominator. + + + + + Maximum scale: + + + + + Minimum scale (maximum scale denominator). + + + + + Maximum scale (minimum scale denominator). + + + + + Maximum scale denominator + + + + + Minimum scale + + + + + + Current + + + + + Coordinate reference system + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify... + + + + + Thumbnail + + + + + Legend + + + + + Palette + + + + + Metadata + + + + + Title + + + + + Abstract + + + + + Pyramids + + + + + Average + + + + + Nearest Neighbour + + + + + Build pyramids + + + + + Notes + + + + + Pyramid resolutions + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Cantarell'; font-size:11pt;"><br /></span></p></body></html> + + + + + Resampling method + + + + + Overview format + + + + + External + + + + + Internal (if possible) + + + + + External (Erdas Imagine) + + + + + Histogram + + + + + Pipe + + + + + QgsRasterLayerSaveAsDialog + + + From + + + + + To + + + + + Select output directory + + + + + Select output file + + + + + + layer + + + + + + user defined + + + + + Resolution (current: %1) + + + + + map view + + + + + Extent (current: %1) + + + + + Layer (%1, %2) + + + + + Project (%1, %2) + + + + + Selected (%1, %2) + + + + + QgsRasterLayerSaveAsDialogBase + + + Save raster layer as... + + + + + Output mode + + + + + Write out raw raster layer data. Optionally user defined no data values may be applied. + + + + + Raw data + + + + + Write out 3 bands RGB image rendered using current layer style. + + + + + Rendered image + + + + + Format + + + + + Save as + + + + + Browse... + + + + + CRS + + + + + Change ... + + + + + Extent + + + + + West + + + + + East + + + + + North + + + + + South + + + + + Layer extent + + + + + Map view extent + + + + + Resolution + + + + + Horizontal + + + + + Columns + + + + + Rows + + + + + Layer resolution + + + + + Layer size + + + + + Vertical + + + + + Create Options + + + + + Tiles + + + + + + Maximum number of columns in one tile. + + + + + Max columns + + + + + + Maximum number of rows in one tile. + + + + + Max rows + + + + + Create VRT + + + + + Additional no data values. The specified values will be set to no data in output raster. + + + + + No data values + + + + + Add values manually + + + + + + + + ... + + + + + Load user defined fully transparent (100%) values + + + + + Remove selected row + + + + + Clear all + + + + + Pyramids + + + + + Resolutions + + + + + Pyramid resolutions corresponding to levels given + + + + + Use existing + + + + + QgsRasterMinMaxWidgetBase + + + Form + + + + + Load min/max values + + + + + Cumulative count cut + + + + + - + + + + + % + + + + + Min / max + + + + + Mean +/- standard deviation × + + + + + Extent + + + + + Full + + + + + Current + + + + + Accuracy + + + + + Actual (slower) + + + + + Estimate (faster) + + + + + Load + + + + + QgsRasterPyramidsOptionsWidgetBase + + + Form + + + + + Custom levels + + + + + External + + + + + Internal (if possible) + + + + + External (Erdas Imagine) + + + + + Insert positive integer values separated by spaces + + + + + Average + + + + + Nearest Neighbour + + + + + Overview format + + + + + Create Options + + + + + Levels + + + + + Resampling method + + + + + QgsRasterRenderer + + + Unknown + + + + + User defined + + + + + Estimated + + + + + Exact + + + + + min / max + + + + + of + + + + + QgsRasterTerrainAnalysisDialog + + + Export Frequency distribution as csv + + + + + Export Colors and elevations as xml + + + + + Import Colors and elevations from xml + + + + + Error opening file + + + + + The relief color file could not be opened + + + + + Error parsing xml + + + + + The xml file could not be loaded + + + + + Enter result file + + + + + Enter lower elevation class bound + + + + + + Elevation + + + + + Enter upper elevation class bound + + + + + Select color for relief class + + + + + QgsRasterTerrainAnalysisDialogBase + + + Dialog + + + + + Elevation layer + + + + + Output layer + + + + + ... + + + + + Output format + + + + + Z factor + + + + + Add result to project + + + + + Illumination + + + + + Azimuth (horizontal angle) + + + + + Vertical angle + + + + + Relief colors + + + + + Create automatically + + + + + Export distribution... + + + + + Up + + + + + Down + + + + + + + + + + + - + + + + + Lower bound + + + + + Upper bound + + + + + Color + + + + + Export colors... + + + + + Import colors... + + + + + QgsRasterTerrainAnalysisPlugin + + + Terrain analysis + + + + + + Slope + + + + + + Aspect + + + + + + Hillshade + + + + + + Relief + + + + + Ruggedness index + + + + + Calculating hillshade... + + + + + + + + + Abort + + + + + Calculating relief... + + + + + Calculating slope... + + + + + Calculating aspect... + + + + + Ruggedness + + + + + Calculating ruggedness... + + + + + QgsRendererRulePropsDialog + + + Rule properties + + + + + Label + + + + + + Filter + + + + + ... + + + + + Test + + + + + Description + + + + + Scale range + + + + + Min. scale + + + + + + 1 : + + + + + Max. scale + + + + + Symbol + + + + + Error + + + + + Filter expression parsing error: + + + + + + Evaluation error + + + + + Filter returned %n feature(s) + number of filtered features + + + + + + + + QgsRendererV2DataDefinedMenus + + + Rotation field + + + + + Size scale field + + + + + + Scale area + + + + + + Scale diameter + + + + + + + - no field - + + + + + QgsRendererV2PropertiesDialog + + + Symbology + + + + + Do you wish to use the original symbology implementation for this layer? + + + + + QgsRendererV2PropsDialogBase + + + Renderer settings + + + + + Old symbology + + + + + This renderer doesn't implement a graphical interface. + + + + + QgsRendererV2Widget + + + Change color + + + + + Change transparency + + + + + Change output unit + + + + + Change width + + + + + Change size + + + + + Transparency + + + + + Change symbol transparency [%] + + + + + Symbol unit + + + + + Select symbol unit + + + + + + Millimeter + + + + + Map unit + + + + + Width + + + + + Change symbol width + + + + + Size + + + + + Change symbol size + + + + + QgsRuleBasedRendererV2Model + + + (no filter) + + + + + <li><nobr>%1 features also in rule %2</nobr></li> + + + + + Label + + + + + Rule + + + + + Min. scale + + + + + Max.scale + + + + + Count + + + + + Duplicate count + + + + + Number of features in this rule. + + + + + Number of features in this rule which are also present in other rule(s). + + + + + QgsRuleBasedRendererV2Widget + + + Add + + + + + Edit + + + + + Remove + + + + + Refine current rules + + + + + Count features + + + + + Rendering order... + + + + + Add scales to rule + + + + + Add categories to rule + + + + + Add ranges to rule + + + + + Refine a rule to categories + + + + + Refine a rule to ranges + + + + + + Scale refinement + + + + + Parent rule %1 must have a symbol for this operation. + + + + + Please enter scale denominators at which will split the rule, separate them by commas (e.g. 1000,5000): + + + + + Error + + + + + "%1" is not valid scale denominator, ignoring it. + + + + + Calculating feature count. + + + + + Abort + + + + + QgsRunProcess + + + <b>Starting %1...</b> + + + + + Action + + + + + Unable to run command +%1 + + + + + Done + + + + + Unable to run command %1 + + + + + QgsSLConnectionItem + + + Database does not exist + + + + + Failed to open database + + + + + Failed to check metadata + + + + + Failed to get list of tables + + + + + Unknown error + + + + + Delete + + + + + %1: Not a vector layer! + + + + + + %1: OK! + + + + + + Import to SpatiaLite database + + + + + Failed to import some layers! + + + + + + + Import was successful. + + + + + QgsSLLayerItem + + + + + Delete layer + + + + + Layer deleted successfully. + + + + + QgsSLRootItem + + + New Connection... + + + + + Create database... + + + + + New SpatiaLite Database File + + + + + SpatiaLite + + + + + + Create SpatiaLite database + + + + + The database has been created + + + + + Failed to create the database: + + + + + + QgsSVGFillSymbolLayerWidget + + + Select svg texture file + + + + + QgsSearchQueryBuilder + + + Search query builder + + + + + &Test + + + + + &Clear + + + + + &Save... + + + + + Save query to an xml file + + + + + &Load... + + + + + Load query from xml file + + + + + Search results + + + + + Found %n matching feature(s). + test result + + + + + + + + + Search string parsing error + + + + + Evaluation error + + + + + Error during search + + + + + No Records + + + + + The query you specified results in zero records being returned. + + + + + Save query to file + + + + + + + + Error + + + + + Could not open file for writing + + + + + Load query from file + + + + + Query files + + + + + All files + + + + + Could not open file for reading + + + + + File is not a valid xml document + + + + + File is not a valid query document + + + + + Select attribute + + + + + There is no attribute '%1' in the current vector layer. Please select an existing attribute + + + + + QgsSelectedFeature + + + Validation started. + + + + + Validation finished (%n error(s) found). + number of geometry errors + + + + + + + + ring %1, vertex %2 + + + + + polygon %1, ring %2, vertex %3 + + + + + polyline %1, vertex %2 + + + + + vertex %1 + + + + + point %1 + + + + + single point + + + + + QgsShapeFile + + + Scanning + + + + + + + The database gave an error while executing this SQL: +%1 +The error was: +%2 + + + + + + The database gave an error while executing this SQL: + + + + + ... (rest of SQL trimmed) + is appended to a truncated SQL statement + + + + + The error was: +%1 + + + + + + QgsSingleBandGrayRendererWidget + + + Black to white + + + + + White to black + + + + + No enhancement + + + + + Stretch to MinMax + + + + + Stretch and clip to MinMax + + + + + Clip to MinMax + + + + + QgsSingleBandGrayRendererWidgetBase + + + Form + + + + + Contrast enhancement + + + + + Gray band + + + + + Min + + + + + Max + + + + + Color gradient + + + + + QgsSingleBandPseudoColorRendererWidget + + + + + + + Discrete + + + + + + + + + + Linear + + + + + + + Exact + + + + + + Equal interval + + + + + Custom color map entry + + + + + Load Color Map + + + + + The color map for band %1 failed to load + + + + + Open file + + + + + + Textfile (*.txt) + + + + + Import Error + + + + + The following lines contained errors + + + + + + + Read access denied + + + + + Read access denied. Adjust the file permissions and try again. + + + + + + + Save file + + + + + QGIS Generated Color Map Export File + + + + + Write access denied + + + + + Write access denied. Adjust the file permissions and try again. + + + + + + + QgsSingleBandPseudoColorRendererWidgetBase + + + Form + + + + + Band + + + + + Color interpolation + + + + + Add values manually + + + + + + + + + + ... + + + + + Remove selected row + + + + + Load color map from band + + + + + Load color map from file + + + + + Export color map to file + + + + + Value + + + + + Color + + + + + Label + + + + + Generate new color map + + + + + Classes + + + + + Colors + + + + + Classify + + + + + Min + + + + + Max + + + + + Mode + + + + + Min / max origin: + + + + + Min / Max origin + + + + + Invert colors order + + + + + QgsSingleSymbolDialog + + + Refresh markers + + + + + + None + + + + + Texture + + + + + Open File + + + + + Images + + + + + QgsSingleSymbolDialogBase + + + Single Symbol + + + + + Point Symbol + + + + + Size + + + + + In map units + + + + + Label + + + + + Fill options + + + + + ... + + + + + Outline options + + + + + Width + + + + + Drawing by field + + + + + Rotation + + + + + Area scale + + + + + Symbol + + + + + QgsSingleSymbolRendererV2Widget + + + Symbol levels... + + + + + QgsSmartGroupConditionWidget + + + Form + + + + + The Symbol + + + + + QgsSmartGroupEditorDialog + + + Invalid name + + + + + The smart group name field is empty. Kindly provide a name + + + + + QgsSmartGroupEditorDialogBase + + + Smart Group Editor + + + + + Smart Group Name + + + + + Condition matches + + + + + Add Condition + + + + + Conditions + + + + + QgsSnappingDialog + + + Snapping and Digitizing Options + + + + + + to vertex + + + + + + to segment + + + + + to vertex and segment + + + + + map units + + + + + pixels + + + + + QgsSnappingDialogBase + + + Snapping options + + + + + Layer + + + + + Mode + + + + + Tolerance + + + + + Units + + + + + Avoid Int. + + + + + Avoid intersections of new polygons + + + + + Enable topological editing + + + + + Enable snapping on intersection + + + + + QgsSpatiaLiteConnection + + + + + unknown error cause + + + + + QgsSpatiaLiteProvider + + + Binary object (BLOB) + + + + + Text + + + + + Decimal number (double) + + + + + Whole number (integer) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SQLite error: %2 +SQL: %1 + + + + + + + + + + + + + + + + + + + + + + + + + + SpatiaLite + + + + + + + + + + + + + unknown cause + + + + + SQLite error getting feature: %1 + + + + + FAILURE: Field %1 not found. + + + + + QgsSpatiaLiteSourceSelect + + + Add SpatiaLite Table(s) + + + + + Databases + + + + + &Add + + + + + &Build Query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Table + + + + + + Type + + + + + + Geometry column + + + + + + Sql + + + + + @ + + + + + Choose a SpatiaLite/SQLite DB to open + + + + + SpatiaLite DB + + + + + All files + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Select Table + + + + + You must select a table in order to add a Layer. + + + + + + SpatiaLite DB Open Error + + + + + Database does not exist: %1 + + + + + Failure while connecting to: %1 + +%2 + + + + + SpatiaLite getTableInfo Error + + + + + Failure exploring tables from: %1 + +%2 + + + + + SpatiaLite Error + + + + + Unexpected error when working with: %1 + +%2 + + + + + QgsSpatiaLiteTableModel + + + Table + + + + + Type + + + + + Geometry column + + + + + Sql + + + + + Point + + + + + Multipoint + + + + + Line + + + + + Multiline + + + + + Polygon + + + + + Multipolygon + + + + + QgsSpatialQueryDialog + + + The spatial query requires at least two vector layers + + + + + %n selected geometries + selected geometries + + + + + + + + Selected geometries + + + + + %1)Query + + + + + Begin at %L1 + + + + + < %1 > + + + + + Total of features = %1 + + + + + Total of invalid features: + + + + + Finish at %L1 (processing time %L2 minutes) + + + + + Using the field "%1" for subset + + + + + Sorry! Only this providers are enable: OGR, POSTGRES and SPATIALITE. + + + + + + %1 of %2 + + + + + all = %1 + + + + + %1 of %2(selected features) + + + + + Create new selection + + + + + Add to current selection + + + + + Remove from current selection + + + + + Result query + + + + + Invalid source + + + + + Invalid reference + + + + + %1 of %2 selected by "%3" + + + + + user + + + + + Map "%1" "on the fly" transformation. + + + + + enable + + + + + disable + + + + + Coordinate reference system(CRS) of +"%1" is invalid(see CRS of provider). + + + + + + +CRS of map is %1. +%2. + + + + + Zoom to feature + + + + + Missing reference layer + + + + + Select reference layer! + + + + + Missing target layer + + + + + Select target layer! + + + + + Create new layer from items + + + + + + The query from "%1" using "%2" in field not possible. + + + + + Create new layer from selected + + + + + %1 of %2 identified + + + + + DEBUG + + + + + QgsSpatialQueryDialogBase + + + Spatial Query + + + + + Layer on which the topological operation will select geometries + + + + + Select source features from + + + + + Select the target layer + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">When checked the operation will only consider selected geometries of the target layer</span></p></body></html> + + + + + + Selected feature(s) only + + + + + Where the feature + + + + + Select the topological operation + + + + + Layer whose geometries will be used as reference by the topological operation + + + + + Reference features of + + + + + Select the reference layer + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">When checked the operation will be only consider selected geometries of the reference layer</span></p></body></html> + + + + + And use the result to + + + + + Selected features + + + + + + Number of selected features in map + + + + + Create layer with selected + + + + + Result feature ID's + + + + + Select one FID to identify geometry of feature + + + + + Create layer with list of items + + + + + Zoom to item + + + + + Check to show log processing of query + + + + + Log messages + + + + + Run query or close the window + + + + + QgsSpatialQueryPlugin + + + + + &Spatial Query + + + + + Query not executed + + + + + DEBUG + + + + + QgsSpatialiteSridsDialogBase + + + Select a Spatialite Spatial Reference System + + + + + + SRID + + + + + Authority + + + + + Reference Name + + + + + Search + + + + + Filter + + + + + Name + + + + + QgsSpit + + + File Name + + + + + Feature Class + + + + + Features + + + + + DB Relation Name + + + + + Schema + + + + + Are you sure you want to remove the [%1] connection and all associated settings? + + + + + Confirm Delete + + + + + Add Shapefiles + + + + + Shapefiles + + + + + All files + + + + + The following Shapefile(s) could not be loaded: + + + + + + + REASON: File cannot be opened + + + + + REASON: One or both of the Shapefile files (*.dbf, *.shx) missing + + + + + General Interface Help: + + + + + PostgreSQL Connections: + + + + + [New ...] - create a new connection + + + + + [Edit ...] - edit the currently selected connection + + + + + [Remove] - remove the currently selected connection + + + + + -you need to select a connection that works (connects properly) in order to import files + + + + + -when changing connections Global Schema also changes accordingly + + + + + Shapefile List: + + + + + [Add ...] - open a File dialog and browse to the desired file(s) to import + + + + + [Remove] - remove the currently selected file(s) from the list + + + + + [Remove All] - remove all the files in the list + + + + + [SRID] - Reference ID for the shapefiles to be imported + + + + + [Use Default (SRID)] - set SRID to -1 + + + + + [Geometry Column Name] - name of the geometry column in the database + + + + + [Use Default (Geometry Column Name)] - set column name to 'the_geom' + + + + + [Global Schema] - set the schema for all files to be imported into + + + + + [Import] - import the current shapefiles in the list + + + + + [Quit] - quit the program + + + + + + [Help] - display this help dialog + + + + + + + + + + + + + + + + + + + + + + Import Shapefiles + + + + + + You need to specify a Connection first + + + + + Password for %1 + + + + + Please enter your password: + + + + + Connection failed - Check settings and try again + + + + + PostGIS not available + + + + + <p>The chosen database does not have PostGIS installed, but this is required for storage of spatial data.</p> + + + + + You need to add shapefiles to the list first + + + + + Importing files + + + + + Cancel + + + + + Progress + + + + + Problem inserting features from file: + + + + + %1 +Invalid table name. + + + + + %1 +No fields detected. + + + + + %1 +The following fields are duplicates: +%2 + + + + + Importing files +%1 + + + + + + + + + + + + + %1 +<p>Error while executing the SQL:</p><p>%2</p><p>The database said:%3</p> + + + + + Import Shapefiles - Relation Exists + + + + + The Shapefile: +%1 +will use [%2] relation for its data, +which already exists and possibly contains data. +To avoid data loss change the "DB Relation Name" +for this Shapefile in the main dialog file list. + +Do you want to overwrite the [%2] relation? + + + + + %1 of %2 shapefiles could not be imported. + + + + + QgsSpitBase + + + SPIT - Shapefile to PostGIS Import Tool + + + + + PostgreSQL connections + + + + + + Connect to PostGIS + + + + + Connect + + + + + + Create a new PostGIS connection + + + + + New + + + + + + Edit the current PostGIS connection + + + + + Edit + + + + + + Remove the current PostGIS connection + + + + + + Remove + + + + + Import options and shapefile list + + + + + Geometry column name + + + + + + Set the geometry column name to the default value + + + + + Use default geometry column name + + + + + SRID + + + + + + Set the SRID to the default value + + + + + Use default SRID + + + + + Primary key column name + + + + + Global schema + + + + + + Add a shapefile to the list of files to be imported + + + + + Add + + + + + + Remove the selected shapefile from the import list + + + + + + Remove all the shapefiles from the import list + + + + + Remove All + + + + + QgsSpitPlugin + + + &Import Shapefiles to PostgreSQL + + + + + Import shapefiles into a PostGIS-enabled PostgreSQL database. The schema and field names can be customized on import + + + + + + &Spit + + + + + QgsSponsorsBase + + + QGIS Sponsors + + + + + TextLabel + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">We work really hard to make this nice software for you. See all the cool features it has? Get a warm fuzzy feeling when you use it? Quantum GIS is a labour of love by a dedicated team of developers. We want you to copy &amp; share it and put it in the hands of as many people as possible. If QGIS is saving you money or you like our work and have the financial ability to help, please consider sponsoring the development of Quantum GIS. We use money from sponsors to pay for travel and costs related to our bi-annual hackfests, and to generally support the goals of our project. Please see the </span><a href="http://qgis.org/en/sponsorship.html"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">QGIS Sponsorship Web Page</span></a><span style=" font-size:10pt;"> for more details. In the list below you can see the fine people and companies that are helping us financially - a great big 'thank you' to you all!</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">2011 Sponsors</span></p> +<hr /> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">SILVER SPONSORS</span></p> +<p align="center" style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.vorarlberg.at"><span style=" font-family:'Courier New,courier'; font-size:10pt; text-decoration: underline; color:#0000ff;">State of Vorarlberg</span></a><span style=" font-family:'Courier New,courier'; font-size:10pt;"> </span><span style=" font-family:'Courier New,courier'; font-size:10pt; color:#333333;">, Austria (11.2011)</span></p> +<p align="center" style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.agi.so.ch"><span style=" font-family:'Courier New,courier'; font-size:10pt; text-decoration: underline; color:#0000ff;">Kanton Solothurn</span></a><span style=" font-family:'Courier New,courier'; font-size:10pt; color:#333333;">, Switzerland (4.2011)</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">BRONZE SPONSORS</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://gis.uster.ch/"><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; text-decoration: underline; color:#0000ff;">City of Uster</span></a><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; color:#0000ff;"> </span><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; color:#000000;">, Switzerland</span><span style=" font-family:'Helvetica,Arial,sans-serif'; color:#000000;"> (11.2011)</span></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.municipia.pt"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Municípia, SA</span></a></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">2010 Sponsors</span></p> +<hr /> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">BRONZE SPONSORS</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.gfosservices.com"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Studio Associato Gfosservices</span></a></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://nextgis.org"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">NEXTGIS</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:14pt; font-weight:600;"></p></body></html> + + + + + QgsSqlAnywhereProvider + + + Failed to load interface + + + + + Failed to connect to database + + + + + A connection to the SQL Anywhere database cannot be established. + + + + + No suitable key column + + + + + The source relation %1 has no column suitable for use as a unique key. + +Quantum GIS requires that the relation has an integer column no larger than 32 bits containing unique values. + + + + + Error loading attributes + + + + + Ambiguous field! + + + + + Duplicate field %1 found + + + + + + Error describing bind parameters + + + + + Error binding parameters + + + + + Error inserting features + + + + + Error deleting features + + + + + Error adding attributes + + + + + Error deleting attributes + + + + + Attribute not found + + + + + Error updating attributes + + + + + Error updating features + + + + + Error verifying geometry column %1 + + + + + Unknown geometry type + + + + + Column %1 has a geometry type of %2, which Quantum GIS does not currently support. + + + + + Mixed Spatial Reference Systems + + + + + Column %1 is not restricted to a single SRID, which Quantum GIS requires. + + + + + Error checking database ReadOnly property + + + + + Error loading SRS definition + + + + + Because Quantum GIS supports only planar data, the SQL Anywhere data provider will transform the data to the compatible planar projection (SRID=%1). + + + + + Because Quantum GIS supports only planar data and no compatible planar projection was found, the SQL Anywhere data provider will attempt to transform the data to planar WGS 84 (SRID=%1). + + + + + Limited Support of Round Earth SRS + + + + + Column %1 (%2) contains geometries belonging to a round earth spatial reference system (SRID=%3). %4 + +Updates to geometry values will be disabled, and query performance may be poor because spatial indexes will not be utilized. To improve performance, consider creating a spatial index on a new (possibly computed) column containing a planar projection of these geometries. For help, refer to the descriptions of the ST_SRID(INT) and ST_Transform(INT) methods in the SQL Anywhere documentation. + + + + + QgsStyleV2ExportImportDialog + + + Select all + + + + + Clear selection + + + + + Import style(s) + + + + + Select symbols to import + + + + + Import + + + + + Export style(s) + + + + + Export + + + + + + Export/import error + + + + + You should select at least one symbol/color ramp. + + + + + Save styles + + + + + XML files (*.xml *.XML) + + + + + Error when saving selected symbols to file: +%1 + + + + + Import error + + + + + An error occured during import: +%1 + + + + + Group Name + + + + + Please enter a name for new group: + + + + + imported + + + + + New Group + + + + + New group cannot be created without a name. Kindly enter a name. + + + + + New group + + + + + Cannot create a group without name. Enter a name. + + + + + + Duplicate names + + + + + Symbol with name '%1' already exists. +Overwrite? + + + + + Color ramp with name '%1' already exists. +Overwrite? + + + + + Load styles + + + + + XML files (*.xml *XML) + + + + + Downloading style ... + + + + + HTTP Error! + + + + + Download failed: %1. + + + + + QgsStyleV2ExportImportDialogBase + + + Styles import/export + + + + + Import from + + + + + Location + + + + + Save to group + + + + + Select symbols to export + + + + + QgsStyleV2ManagerDialog + + + + Type here to filter symbols ... + + + + + Marker symbol (%1) + + + + + Line symbol (%1) + + + + + Fill symbol (%1) + + + + + Color ramp (%1) + + + + + + + Gradient + + + + + + + Random + + + + + + + ColorBrewer + + + + + + + cpt-city + + + + + new symbol + + + + + new marker + + + + + new line + + + + + new fill symbol + + + + + Symbol Name + + + + + Please enter a name for new symbol: + + + + + + Save symbol + + + + + Cannot save symbol without name. Enter a name. + + + + + Symbol with name '%1' already exists. Overwrite? + + + + + Color ramp type + + + + + Please select color ramp type: + + + + + new ramp + + + + + new gradient ramp + + + + + new random ramp + + + + + Color Ramp Name + + + + + Please enter a name for new color ramp: + + + + + Save Color Ramp + + + + + Cannot save color ramp without name. Enter a name. + + + + + Save color ramp + + + + + Color ramp with name '%1' already exists. Overwrite? + + + + + + Invalid Selection + + + + + The parent group you have selected is not user editable. +Kindly select a user defined group. + + + + + Operation Not Allowed + + + + + Creation of nested smart groups are not allowed +Select the 'Smart Group' to create a new group. + + + + + Invalid selection + + + + + Cannot delete system defined categories. +Kindly select a group or smart group you might want to delete. + + + + + Error! + + + + + New group could not be created. +There was a problem with your symbol database. + + + + + Database Error + + + + + There was a problem with the Symbols database while regrouping. + + + + + You have not selected a Smart Group. Kindly select a Smart Group to edit. + + + + + Database Error! + + + + + There was some error while editing the smart group. + + + + + QgsStyleV2ManagerDialogBase + + + Style Manager + + + + + Marker + + + + + Line + + + + + Fill + + + + + Color ramp + + + + + Tags + + + + + Add item + + + + + Edit item + + + + + Edit + + + + + Remove item + + + + + Share + + + + + QgsSvgAnnotationDialog + + + Delete + + + + + html + + + + + QgsSvgMarkerSymbolLayerV2Widget + + + Select SVG file + + + + + SVG files + + + + + QgsSymbolLevelsV2Dialog + + + Layer %1 + + + + + QgsSymbolLevelsV2DialogBase + + + Symbol Levels + + + + + Enable symbol levels + + + + + Define the order in which the symbol layers are rendered. The numbers in the cells define in which rendering pass the layer will be drawn. + + + + + QgsSymbolV2SelectorDialog + + + Invalid Selection! + + + + + Kindly select a symbol to add layer. + + + + + QgsSymbolV2SelectorDialogBase + + + Symbol selector + + + + + Symbol layers + + + + + Add symbol layer + + + + + Remove symbol layer + + + + + Lock layer's color + + + + + Move up + + + + + Move down + + + + + QgsSymbolsListWidget + + + Symbol name + + + + + Please enter name for the symbol: + + + + + New symbol + + + + + Save symbol + + + + + Symbol with name '%1' already exists. Overwrite? + + + + + Transparency %1% + + + + + QgsTINInterpolatorDialog + + + Linear + + + + + + Clough-Toucher (cubic) + + + + + Save triangulation to file + + + + + QgsTINInterpolatorDialogBase + + + Triangle based interpolation + + + + + Interpolation method + + + + + Export triangulation to shapefile after interpolation + + + + + Output file + + + + + ... + + + + + QgsTextAnnotationDialog + + + Delete + + + + + Select font color + + + + + Select background color + + + + + QgsTextAnnotationDialogBase + + + Annotation text + + + + + B + + + + + I + + + + + Background color + + + + + QgsTileScaleWidget + + + Form + + + + + Tile scale + + + + + QgsTipFactory + + + Quantum GIS is open source + + + + + Quantum GIS is open source software. This means that the software source code can be freely viewed and modified. The GPL places a restriction that any modifications you make must be made available in source form to whoever you give modified versions to, and that you can not create a new version of Quantum GIS under a 'closed source' license. Visit <a href="http://qgis.org"> the QGIS home page (http://qgis.org)</a> for more information. + + + + + QGIS Publications + + + + + If you write a scientific paper or any other article that refers to QGIS we would love to include your work in the <a href="http://www.qgis.org/en/community/qgis-case-studies.html">case studies section</a> of the Quantum GIS home page (http://http://www.qgis.org/en/community/qgis-case-studies.html). + + + + + Become an QGIS translator + + + + + Would you like to see QGIS in your native language? We are looking for more translators and would appreciate your help! The translation process is fairly straight forward - instructions are available in the QGIS wiki <a href="http://www.qgis.org/wiki/GUI_Translation">translator's page (http://www.qgis.org/wiki/GUI_Translation).</a> + + + + + QGIS Mailing lists + + + + + If you need help using QGIS we have a 'users' mailing list where users help each other with issues related to using our sofware. We also have a 'developers' mailing list. for those wanting help and to discuss things relating to the QGIS code base. Details on how to subscribe are in the <a href="http://www.qgis.org/en/community/mailing-lists.html">community section</a> of the QGIS home page (http://www.qgis.org/en/community/mailing-lists.html). + + + + + Is it 'QGIS' or 'Quantum GIS'? + + + + + Both are correct. For articles we suggest you write 'Quantum GIS (QGIS) is ....' and then refer to it as QGIS thereafter. + + + + + How do I refer to Quantum GIS? + + + + + QGIS is spelled in all caps. We have various subprojects of the QGIS project and it will help to avoid confusion if you refer to each by its name:<ul><li>QGIS Library - this is the C++ library that contains the core logic that is used to build the QGIS user interface and other applications.</li><li>QGIS Application - this is the desktop application that you know and love so much :-).</li><li>QGIS Mapserver - this is a server-side application based on the QGIS Library that will serve up your .qgs projects using the WMS protocol.</li></ul> + + + + + Add the current date to a map layout + + + + + You can add a current date variable to your map layout. Create a regular text label and add the string $CURRENT_DATE(yyyy-MM-dd) to the text box. See the <a href="http://doc.qt.nokia.com/latest/qdate.html#toString">QDate::toString format documentation</a> for the possible date formats. + + + + + Moving Elements and Maps in the Print Composer + + + + + In the print composer tool bar you can find two buttons for moving elements. The left one (a selection cursor with the hand symbol) selects and moves elements in the layout. After selecting the element with this tool you can also move them around with the arrow keys. For accurate positioning use the <strong>Position and Size</strong> dialogue, which can be found in the tab <strong>Item &rarr; General Options &rarr; Position and Size</strong>. For easier positioning you can also set specific anchor points of the element within this dialogue. The other move tool (the globe icon combined with the hand icon) allows one to move the map content within a map frame. + + + + + Lock an element in the layout view + + + + + By left clicking an element in the layout view you can select it, by right clicking an element you can lock it. A lock symbol will appear in the upper left corner of the selected element. This prevents the element from accidentally being moved with the mouse. While in a locked state, you cannot move an element with the mouse but you can still move it with the arrow keys or by absolutely positioning it by setting its <strong>Position and Size</strong>. + + + + + Rotating a map and linking a north arrow + + + + + You can rotate a map by setting its rotation value in the <strong>Item tab &rarr; Map</strong> section. To place a north arrow in your layout you can use the <strong>Add Image</strong> tool, the button with the little camera icon. QGIS comes with a selection of north arrows. After the placement of the north arrow in the layout you can link it with a specific map frame by activating the <strong>Sync with map</strong> checkbox and selecting a map frame. Whenever you change the rotation value of a linked map, the north arrow will now automatically adjust its rotation. + + + + + Numeric scale value in map layout linked to map frame + + + + + If you want to place a text label as a placeholder for the current scale, linked to a map frame, you need to place a scalebar and set the style to 'Numeric'. You also need to select the map frame, if there is more than one. + + + + + Using the mouse scroll wheel + + + + + You can use the scroll wheel on your mouse to zoom in, out and pan the map. Scroll forwards to zoom in, scroll backwards to zoom out and press and hold the scroll wheel down to pan the map. You can configure options for scroll wheel behaviour in the Options panel. + + + + + Stopping rendering + + + + + Sometimes you have a very large dataset which takes ages to draw. You can press 'esc' (the escape key), or click the small red 'X' icon in the status bar to the bottom right of the window at any time to halt rendering. If you are going to be performing several actions (e.g. modifying symbology options) and wish to temporarily disable map rendering while you do so, you can uncheck the 'Render' checkbox in the bottom right of the status bar. Don't forget to check it on again when you are ready to have the map draw itself again! + + + + + Join intersected polylines when rendering + + + + + When applying layered styles to a polyline layer, you can join intersecting lines together simply by enabling symbol levels. The image below shows a before (left) and after (right) view of an intersection when symbol levels are enabled. + + + + + Auto-enable on the fly projection + + + + + In the options dialog, under the CRS tab, you can set QGIS so that whenever you create a new project, 'on the fly projection' is enabled automatically and a pre-selected Coordinate Reference System of your choice is used. + + + + + Sponsor QGIS + + + + + If QGIS is saving you money or you like our work and have the financial ability to help, please consider sponsoring the development of Quantum GIS. We use money from sponsors to pay for travel and costs related to our bi-annual hackfests, and to generally support the goals of our project. Please see the <a href="http://qgis.org/en/sponsorship.html">QGIS Sponsorship Web Page</a> for more details. + + + + + Quantum GIS has Plugins! + + + + + Quantum GIS has plugins that extend its functionality. QGIS ships with some core plugins you can explore from the Plugins->Manage Plugins menu. In addition there are over 150 Python plugins contributed by the user community that can be installed from the Plugins->Fetch Python Plugins menu. Don't miss out on all QGIS has to offer---check out the plugins and see what they can do for you. + + + + + QgsTipGui + + + &Previous + + + + + &Next + + + + + QgsTipGuiBase + + + QGIS Tips! + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:10pt;">A nice tip goes here...</span></p></body></html> + + + + + I've had enough tips, don't show this on start up any more! + + + + + QgsTransformOptionsDialog + + + Dialog + + + + + Select transformation type: + + + + + Linear + + + + + Polynomial 1 + + + + + Polynomial 2 + + + + + Polynomial 3 + + + + + Thin plate spline (TPS) + + + + + Generate ESRI world file (.tfw) + + + + + QgsTransformSettingsDialog + + + Transformation settings + + + + + Transformation type: + + + + + Resampling method: + + + + + Nearest neighbour + + + + + + + Linear + + + + + Cubic + + + + + Cubic Spline + + + + + Lanczos + + + + + Compression: + + + + + Output raster: + + + + + + + + ... + + + + + Target SRS: + + + + + Generate pdf report: + + + + + Set Target Resolution + + + + + Horizontal + + + + + Vertical + + + + + Create world file + + + + + Generate pdf map: + + + + + Use 0 for transparency when needed + + + + + Load in QGIS when done + + + + + Helmert + + + + + Polynomial 1 + + + + + Polynomial 2 + + + + + Polynomial 3 + + + + + Thin Plate Spline + + + + + Projective + + + + + + + Info + + + + + Please set output name + + + + + %1 requires at least %2 GCPs. Please define more + + + + + Invalid output file name + + + + + Save raster + + + + + + Select save PDF file + + + + + + PDF Format + + + + + _modified + Georeferencer:QgsOpenRasterDialog.cpp - used to modify a user given file name + + + + + QgsUniqueValueDialog + + + default + + + + + Confirm Delete + + + + + The classification field was changed from '%1' to '%2'. +Should the existing classes be deleted before classification? + + + + + QgsUniqueValueDialogBase + + + Form1 + + + + + Classification field + + + + + Classify + + + + + Add class + + + + + Delete classes + + + + + Randomize Colors + + + + + Reset Colors + + + + + Restrict changes to common properties + + + + + QgsVectorColorBrewerColorRampV2DialogBase + + + ColorBrewer ramp + + + + + Scheme name + + + + + Colors + + + + + Preview + + + + + QgsVectorDataProvider + + + Codec %1 not found. Falling back to system locale + + + + + Add Features + + + + + Delete Features + + + + + Change Attribute Values + + + + + Add Attributes + + + + + Delete Attributes + + + + + Create Spatial Index + + + + + Fast Access to Features at ID + + + + + Change Geometries + + + + + QgsVectorFieldSymbolLayerWidget + + + X attribute + + + + + Y attribute + + + + + Length attribute + + + + + Angle attribute + + + + + Height attribute + + + + + QgsVectorGradientColorRampV2Dialog + + + + + + Offset of the stop + + + + + + + + Please enter offset in percents (%) of the new stop + + + + + QgsVectorGradientColorRampV2DialogBase + + + Gradient color ramp + + + + + Color 1 + + + + + + Change + + + + + Color 2 + + + + + Multiple stops + + + + + Add stop + + + + + Remove stop + + + + + Color + + + + + Offset + + + + + Preview + + + + + QgsVectorLayer + + + Updating feature count for layer %1 + + + + + Abort + + + + + Unknown renderer + + + + + No renderer object + + + + + Classification field not found + + + + + renderer failed to save + + + + + no renderer + + + + + ERROR: no provider + + + + + ERROR: layer not editable + + + + + SUCCESS: %n attribute(s) deleted. + deleted attributes count + + + + + + + + ERROR: %n attribute(s) not deleted. + not deleted attributes count + + + + + + + + SUCCESS: %n attribute(s) added. + added attributes count + + + + + + + + ERROR: %n new attribute(s) not added + not added attributes count + + + + + + + + SUCCESS: attribute %1 was added. + + + + + ERROR: attribute %1 not added + + + + + SUCCESS: %n attribute value(s) changed. + changed attribute values count + + + + + + + + ERROR: %n attribute value change(s) not applied. + not changed attribute values count + + + + + + + + SUCCESS: %n feature(s) added. + added features count + + + + + + + + ERROR: %n feature(s) not added. + not added features count + + + + + + + + ERROR: %n feature(s) not added - provider doesn't support adding features. + not added features count + + + + + + + + SUCCESS: %n geometries were changed. + changed geometries count + + + + + + + + ERROR: %n geometries not changed. + not changed geometries count + + + + + + + + SUCCESS: %n feature(s) deleted. + deleted features count + + + + + + + + ERROR: %n feature(s) not deleted. + not deleted features count + + + + + + + + + Provider errors: + + + + + Commit errors: + %1 + + + + + General: + + + + + Layer comment: %1 + + + + + Storage type of this layer: %1 + + + + + Source for this layer: %1 + + + + + Geometry type of the features in this layer: %1 + + + + + The number of features in this layer: %1 + + + + + Editing capabilities of this layer: %1 + + + + + Extents: + + + + + In layer spatial reference system units : + + + + + + xMin,yMin %1,%2 : xMax,yMax %3,%4 + + + + + unknown extent + + + + + + In project spatial reference system units : + + + + + Layer Spatial Reference System: + + + + + Project (Output) Spatial Reference System: + + + + + (Invalid transformation of layer extents) + + + + + Attribute field info: + + + + + Field + + + + + Type + + + + + Length + + + + + Precision + + + + + Comment + + + + + QgsVectorLayerProperties + + + + + QGIS Layer Style File + + + + + + + SLD File + + + + + Layer Properties - %1 + + + + + + Stop editing mode to enable this. + + + + + Transparency: %1% + + + + + + Single Symbol + + + + + + Graduated Symbol + + + + + + Continuous Color + + + + + + Unique Value + + + + + Insert expression + + + + + This button opens the query builder and allows you to create a subset of features to display on the map canvas rather than displaying all features in the layer + + + + + The query used to limit the features in the layer is shown here. To enter or modify the query, click on the Query Builder button + + + + + + Spatial Index + + + + + Creation of spatial index successful + + + + + Creation of spatial index failed + + + + + + Default Style + + + + + Load layer properties from style file + + + + + Load Style + + + + + Save layer properties as style file + + + + + Saved Style + + + + + Symbology + + + + + Do you wish to use the new symbology implementation for this layer? + + + + + Save Style + + + + + Save Style... + + + + + QgsVectorLayerPropertiesBase + + + Layer Properties + + + + + Restore Default Style + + + + + Save As Default + + + + + Load Style ... + + + + + Save Style ... + + + + + Style + + + + + Legend type + + + + + Transparency + + + + + New symbology + + + + + Labels + + + + + Labels (deprecated) + + + + + Display labels + + + + + Fields + + + + + General + + + + + Options + + + + + CRS + + + + + Create Spatial Index + + + + + + Specify the coordinate reference system of the layer's geometry. + + + + + Specify CRS + + + + + Update Extents + + + + + Use scale dependent rendering + + + + + + Maximum scale (minimum scale denominator). + + + + + Minimum scale: + + + + + Minimum scale denominator. + + + + + Maximum scale: + + + + + Minimum scale (maximum scale denominator). + + + + + + Set current + + + + + Subset + + + + + Query Builder + + + + + Provider-specific options + + + + + Encoding + + + + + Display + + + + + Legend display text + + + + + Map Tip display text + + + + + Inserts an expression into the action + + + + + Insert expression... + + + + + The valid attribute names for this layer + + + + + Inserts the selected field into the action + + + + + Insert field + + + + + HTML + + + + + Field + + + + + Metadata + + + + + Title + + + + + Abstract + + + + + Actions + + + + + Joins + + + + + Join layer + + + + + Join field + + + + + Target field + + + + + Diagrams + + + + + QgsVectorLayerSaveAsDialog + + + Layer CRS + + + + + Project CRS + + + + + Selected CRS + + + + + Save layer as... + + + + + Select the coordinate reference system for the vector file. The data points will be transformed from the layer coordinate reference system. + + + + + QgsVectorLayerSaveAsDialogBase + + + Save vector layer as... + + + + + Save as + + + + + + Browse + + + + + Encoding + + + + + Format + + + + + OGR creation options + + + + + Data source + + + + + Layer + + + + + This allows one to surpress attribute creation as some OGR drivers (eg. DGN, DXF) don't support it. + + + + + Skip attribute creation + + + + + Add saved file to map + + + + + CRS + + + + + QgsVectorRandomColorRampV2DialogBase + + + Random color ramp + + + + + Hue + + + + + + + from + + + + + + + to + + + + + Saturation + + + + + Value + + + + + Classes + + + + + Preview + + + + + QgsWCSConnectionItem + + + Edit... + + + + + Delete + + + + + QgsWCSRootItem + + + New Connection... + + + + + QgsWCSSourceSelect + + + Select a layer + + + + + No CRS selected + + + + + QgsWFSConnectionItem + + + Edit... + + + + + Delete + + + + + Modify WFS connection + + + + + QgsWFSData + + + Loading WFS data +%1 + + + + + Abort + + + + + QgsWFSProvider + + + unknown + + + + + received %1 bytes from %2 + + + + + Error + + + + + QgsWFSRootItem + + + New Connection... + + + + + Create a new WFS connection + + + + + QgsWFSSourceSelect + + + Network Error + + + + + Capabilities document is not valid + + + + + Server Exception + + + + + Error + + + + + No Layers + + + + + capabilities document contained no layers. + + + + + Create a new WFS connection + + + + + Modify WFS connection + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + QgsWFSSourceSelectBase + + + Add WFS Layer from a Server + + + + + Server connections + + + + + C&onnect + + + + + &New + + + + + Edit + + + + + Delete + + + + + Load connections from file + + + + + Load + + + + + Save connections to file + + + + + Save + + + + + Title + + + + + Name + + + + + Abstract + + + + + Cache +Features + + + + + Filter + + + + + Coordinate reference system + + + + + Change ... + + + + + QgsWMSConnection + + + WMS Password for %1 + + + + + QgsWMSConnectionItem + + + Edit... + + + + + Delete + + + + + QgsWMSRootItem + + + New Connection... + + + + + QgsWMSSourceSelect + + + &Add + + + + + Add selected layers to map + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Load connections + + + + + XML files (*.xml *XML) + + + + + encoding %1 not supported. + + + + + WMS Provider + + + + + Could not open the WMS Provider + + + + + Options (%n coordinate reference systems available) + crs count + + + + + + + + Select layer(s) + + + + + Select layer(s) or a tileset + + + + + Select either layer(s) or a tileset + + + + + Coordinate Reference System (%n available) + crs count + + + + + + + + No common CRS for selected layers. + + + + + No CRS selected + + + + + No image encoding selected + + + + + %n Layer(s) selected + selected layer count + + + + + + + + Tileset selected + + + + + Could not understand the response. The %1 provider said: +%2 + + + + + WMS proxies + + + + + Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. + + + + + parse error at row %1, column %2: %3 + + + + + network error: %1 + + + + + The %1 connection already exists. Do you want to overwrite it? + + + + + Confirm Overwrite + + + + + QgsWMSSourceSelectBase + + + Add Layer(s) from a Server + + + + + Ready + + + + + Layers + + + + + C&onnect + + + + + &New + + + + + Edit + + + + + Delete + + + + + Adds a few example WMS servers + + + + + Add default servers + + + + + ID + + + + + Name + + + + + + + Title + + + + + Abstract + + + + + Image encoding + + + + + Save connections to file + + + + + Save + + + + + Load connections from file + + + + + Load + + + + + Options + + + + + Layer name + + + + + Coordinate Reference System + + + + + Change ... + + + + + Tile size + + + + + Feature limit for GetFeatureInfo + + + + + 10 + + + + + Layer Order + + + + + Move selected layer UP + + + + + Up + + + + + Move selected layer DOWN + + + + + Down + + + + + + Layer + + + + + + Style + + + + + Tilesets + + + + + Format + + + + + Tileset + + + + + CRS + + + + + Server Search + + + + + Search + + + + + Description + + + + + URL + + + + + Add selected row to WMS list + + + + + QgsWcsCapabilities + + + empty capabilities document + + + + + + +Tried URL: %1 + + + + + Capabilities request redirected. + + + + + empty of capabilities: %1 + + + + + Download of capabilities failed: %1 + + + + + WCS + + + + + %1 of %2 bytes of capabilities downloaded. + + + + + Exception + + + + + Could not get WCS capabilities: %1 + + + + + + + + Dom Exception + + + + + + + Could not get WCS capabilities in the expected format (DTD): no %1 found. +This might be due to an incorrect WCS Server URL. +Tag:%3 +Response was: +%4 + + + + + Version not supported + + + + + WCS server version %1 is not supported by Quantum GIS (supported versions: 1.0.0, 1.1.0, 1.1.2) + + + + + Could not get WCS capabilities: %1 at line %2 column %3 +This is probably due to an incorrect WCS Server URL. +Response was: + +%4 + + + + + QgsWcsProvider + + + Cannot describe coverage + + + + + Coverage not found + + + + + Cannot calculate extent + + + + + Cannot get test dataset. + + + + + Received coverage has wrong extent %1 (expected %2) + + + + + + + + + + + + + + + + + + + + WCS + + + + + Rotating raster + + + + + Block read OK + + + + + Received coverage has wrong size %1 x %2 (expected %3 x %4) + + + + + Getting map via WCS. + + + + + Map request error (Status: %1; Reason phrase: %2; URL:%3) + + + + + Map request error:<br>Title: %1<br>Error: %2<br>URL: <a href='%3'>%3</a>) + + + + + Map request error (Status: %1; Response: %2; URL:%3) + + + + + Cannot find boundary in multipart content type + + + + + Expected 2 parts, %1 received + + + + + More than 2 parts (%1) received + + + + + Map request error (Title:%1; Error:%2; URL: %3) + + + + + Map request error (Response: %1; URL:%2) + + + + + Content-Transfer-Encoding %1 not supported + + + + + No data received + + + + + Cannot create memory file + + + + + Map request failed [error:%1 url:%2] + + + + + Not logging more than 100 request errors. + + + + + %1 of %2 bytes of map downloaded. + + + + + Dom Exception + + + + + Could not get WCS Service Exception at %1: %2 at line %3 column %4 + +Response was: + +%5 + + + + + Request contains a format not offered by the server. + + + + + Request is for a Coverage not offered by the service instance. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. + + + + + Request does not include a parameter value, and the server instance did not declare a default value for that dimension. + + + + + Request contains an invalid parameter value. + + + + + No other exceptionCode specified by this service and server applies to this exception. + + + + + Operation request contains an output CRS that can not be used within the output format. + + + + + Operation request specifies to "store" the result, but not enough storage is available to do this. + + + + + (No error code was reported) + + + + + (Unknown error code) + + + + + The WCS vendor also reported: + + + + + composed error message '%1'. + + + + + + Property + + + + + + Value + + + + + Name (identifier) + + + + + + Title + + + + + + Abstract + + + + + Fixed Width + + + + + Fixed Height + + + + + Native CRS + + + + + Native Bounding Box + + + + + WGS 84 Bounding Box + + + + + + Available in CRS + + + + + + (and %n more) + crs + + + + + + + + + Available in format + + + + + + Coverages + + + + + Cache Stats + + + + + Server Properties + + + + + Keywords + + + + + Online Resource + + + + + Contact Person + + + + + Fees + + + + + Access Constraints + + + + + Image Formats + + + + + GetCapabilitiesUrl + + + + + Get Coverage Url + + + + + &nbsp;<font color="red">(advertised but ignored)</font> + + + + + And %1 more coverages + + + + + QgsWmsProvider + + + Cannot parse URI + + + + + Cannot calculate extent + + + + + Cannot set CRS + + + + + Number of layers and styles don't match + + + + + + + + + + + + + + + + + + + + + WMS + + + + + Number of tile layers must be one + + + + + Tile layer not found + + + + + Tile layer or tile matrix set not found + + + + + Getting map via WMS. + + + + + Getting tiles. + + + + + + %n tile requests in background + tile request count + + + + + + + + + , %n cache hits + tile cache hits + + + + + + + + + , %n cache misses. + tile cache missed + + + + + + + + + , %n errors. + errors + + + + + + + + image is NULL + + + + + unexpected image size + + + + + Tile request error + + + + + Status: %1 +Reason phrase: %2 + + + + + Tile request error (Title:%1; Error:%2; URL: %3) + + + + + Tile request error (Status:%1; Content-Type:%2; Length:%3; URL: %4) + + + + + + Returned image is flawed [%1] + + + + + Tile request failed [error:%1 url:%2] + + + + + + Not logging more than 100 request errors. + + + + + Map request error (Status: %1; Reason phrase: %2; URL:%3) + + + + + Map request error (Title:%1; Error:%2; URL: %3) + + + + + Map request error (Status: %1; Response: %2; URL:%3) + + + + + Map request failed [error:%1 url:%2] + + + + + empty capabilities document + + + + + +Tried URL: %1 + + + + + Capabilities request redirected. + + + + + empty of capabilities: %1 + + + + + Download of capabilities failed: %1 + + + + + %1 of %2 bytes of capabilities downloaded. + + + + + %1 of %2 bytes of map downloaded. + + + + + + + Dom Exception + + + + + Could not get WMS capabilities: %1 at line %2 column %3 +This is probably due to an incorrect WMS Server URL. +Response was: + +%4 + + + + + Could not get WMS capabilities in the expected format (DTD): no %1 or %2 found. +This might be due to an incorrect WMS Server URL. +Tag:%3 +Response was: +%4 + + + + + Could not get WMS Service Exception at %1: %2 at line %3 column %4 + +Response was: + +%5 + + + + + Request contains a format not offered by the server. + + + + + Request contains a CRS not offered by the server for one or more of the Layers in the request. + + + + + Request contains a SRS not offered by the server for one or more of the Layers in the request. + + + + + GetMap request is for a Layer not offered by the server, or GetFeatureInfo request is for a Layer not shown on the map. + + + + + Request is for a Layer in a Style not offered by the server. + + + + + GetFeatureInfo request is applied to a Layer which is not declared queryable. + + + + + GetFeatureInfo request contains invalid X or Y value. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. + + + + + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. + + + + + Request does not include a sample dimension value, and the server did not declare a default value for that dimension. + + + + + Request contains an invalid sample dimension value. + + + + + Request is for an optional operation that is not supported by the server. + + + + + (No error code was reported) + + + + + (Unknown error code) + + + + + The WMS vendor also reported: + + + + + composed error message '%1'. + + + + + Extent for layer %1 not found in capabilities + + + + + + + + Property + + + + + + + + Value + + + + + + Name + + + + + Visibility + + + + + Visible + + + + + Hidden + + + + + + + Title + + + + + + + Abstract + + + + + Can Identify + + + + + + + + Yes + + + + + + + + No + + + + + Can be Transparent + + + + + Can Zoom In + + + + + Cascade Count + + + + + Fixed Width + + + + + Fixed Height + + + + + WGS 84 Bounding Box + + + + + + Available in CRS + + + + + (and %n more) + crs + + + + + + + + Available in style + + + + + + Server Properties + + + + + + Selected Layers + + + + + + Other Layers + + + + + Tile Layer Properties + + + + + Cache Stats + + + + + WMS Version + + + + + Keywords + + + + + Online Resource + + + + + Contact Person + + + + + Fees + + + + + Access Constraints + + + + + Image Formats + + + + + Identify Formats + + + + + Layer Count + + + + + Tile Layer Count + + + + + GetCapabilitiesUrl + + + + + GetMapUrl + + + + + + &nbsp;<font color="red">(advertised but ignored)</font> + + + + + GetFeatureInfoUrl + + + + + GetTileUrl + + + + + Tile templates + + + + + FeatureInfo templates + + + + + Tileset Properties + + + + + WMTS + + + + + WMS-C + + + + + Selected + + + + + Available Styles + + + + + CRS + + + + + Bounding Box + + + + + Available Tilesets + + + + + Cache stats + + + + + Hits + + + + + Misses + + + + + Errors + + + + + identify request redirected. + + + + + Map getfeatureinfo error %1: %2 + + + + + ERROR: GetFeatureInfo failed + + + + + Map getfeatureinfo error: %1 [%2] + + + + + QgsWmtsDimensionsBase + + + Dialog + + + + + Dimension + + + + + + Value + + + + + Abstract + + + + + Default + + + + + QgsZonalStatisticsDialogBase + + + Dialog + + + + + Raster layer: + + + + + Polygon layer containing the zones: + + + + + Output column prefix: + + + + + QgsZonalStatisticsPlugin + + + + + &Zonal statistics + + + + + Calculating zonal statistics... + + + + + Abort... + + + + + RgExportDlg + + + Export feature + + + + + Select destination layer + + + + + New temporary layer + + + + + RgLineVectorLayerSettingsWidget + + + Transportation layer + + + + + Layer + + + + + Direction field + + + + + Value for forward direction + + + + + Value for reverse direction + + + + + Value two-way direction + + + + + Speed field + + + + + km/h + + + + + m/s + + + + + Default settings + + + + + Direction + + + + + Two-way direction + + + + + Forward direction + + + + + Reverse direction + + + + + Cost + + + + + Line lengths + + + + + Speed + + + + + + Always use default + + + + + RgSettingsDlg + + + Road graph plugin settings + + + + + Time unit + + + + + Distance unit + + + + + Topology tolerance + + + + + second + + + + + hour + + + + + meter + + + + + kilometer + + + + + RgShortestPathWidget + + + Shortest path + + + + + Start + + + + + Stop + + + + + Criterion + + + + + + Length + + + + + + Time + + + + + Calculate + + + + + Export + + + + + Clear + + + + + Help + + + + + Point not selected + + + + + First, select start and stop points. + + + + + Plugin isn't configured + + + + + Plugin isn't configured! + + + + + + Tie point failed + + + + + Start point doesn't tie to the road! + + + + + Stop point doesn't tie to the road! + + + + + Path not found + + + + + RoadGraphPlugin + + + Settings + + + + + Road graph plugin settings + + + + + + Road graph + + + + + SEXTANTE + + Analysis + + + + &SEXTANTE toolbox + + + + &SEXTANTE modeler + + + + &SEXTANTE history and log + + + + &SEXTANTE options and configuration + + + + &SEXTANTE results viewer + + + + &SEXTANTE help + + + + + SaDbTableModel + + + Schema + + + + + Table + + + + + Type + + + + + SRID + + + + + Line Interpretation + + + + + Geometry column + + + + + Sql + + + + + SaNewConnection + + + Save connection + + + + + Should the existing connection %1 be overwritten? + + + + + Failed to load interface + + + + + + Test connection + + + + + Connection to %1 was successful + + + + + Connection failed. Check settings and try again. + +SQL Anywhere error code: %1 +Description: %2 + + + + + SaNewConnectionBase + + + Create a new SQL Anywhere connection + + + + + Connection Information + + + + + Name + + + + + Host + + + + + Port + + + + + Server + + + + + Database + + + + + Connection Parameters + + + + + Username + + + + + Password + + + + + Name of the new connection + + + + + Name or IP address of computer hosting the database server (leave blank for local connections) + + + + + Port number used by the database server (leave blank for default 2638) + + + + + Name of the database server (leave blank for default server on host) + + + + + Name of the database (leave blank for default database on server) + + + + + Additional connection parameters + + + + + Database username + + + + + Database password + + + + + Save the connection username in the registry + + + + + Save Username + + + + + &Test Connect + + + + + Save the connection password in the registry (WARNING: NOT SECURE) + + + + + Save Password + + + + + Encrypt packets using simple encryption + + + + + Simple Encryption + + + + + Use estimates for certain layer properties such as cardinality, extent, etc. (improves performance) + + + + + Estimate table metadata + + + + + Search for geometry columns in tables owned by other users + + + + + Search other users' tables + + + + + SaSourceSelect + + + &Add + + + + + &Build Query + + + + + + Wildcard + + + + + + RegExp + + + + + + All + + + + + + Schema + + + + + + Table + + + + + + Type + + + + + + SRID + + + + + + Line Interpretation + + + + + + Geometry column + + + + + + Sql + + + + + Are you sure you want to remove the %1 connection and all associated settings? + + + + + Confirm Delete + + + + + Select Table + + + + + You must select a table in order to add a layer. + + + + + Failed to load interface + + + + + Connection failed + + + + + Connection to database %1 failed. Check settings and try again. + +SQL Anywhere error code: %2 +Description: %3 + + + + + No accessible tables found + + + + + Database connection was successful, but no tables containing geometry columns were %1. + + + + + found + + + + + found in your schema + + + + + SaSourceSelectBase + + + Add SQL Anywhere layer + + + + + SQL Anywhere Connections + + + + + Delete + + + + + Edit + + + + + New + + + + + Connect + + + + + Search options + + + + + Search + + + + + Search mode + + + + + Search in columns + + + + + SelectGeoRasterBase + + + Select Oracle Spatial GeoRaster + + + + + Server Connections + + + + + Edit + + + + + Delete + + + + + &New + + + + + C&onnect + + + + + Subdatasets + + + + + Selection + + + + + Update + + + + + Ready + + + + + SettingsDialog + + + Font + + + + + Size + + + + + API file + + + + + Browse + + + + + Use preloaded API file + + + + + SextanteToolbox + + SEXTANTE Toolbox + + + + Click here to configure +additional algorithm providers + + + + Execute + + + + Execute as batch process + + + + Edit rendering styles for outputs + + + + Warning + + + + Recently used algorithms + + + + + SimplifyLineDialog + + + Simplify line tolerance + + + + + Set tolerance + + + + + OK + + + + + SqlAnywhere + + + Add SQL Anywhere Layer... + + + + + Store vector layers within a SQL Anywhere database + + + + + Invalid Layer + + + + + %1 is an invalid layer and cannot be loaded. + + + + + SymbolsListWidget + + + Form + + + + + Unit + + + + + Millimeter + + + + + Map unit + + + + + Opacity + + + + + Color + + + + + Change + + + + + Size + + + + + Rotation + + + + + ° + + + + + Width + + + + + Saved styles + + + + + Symbol Name + + + + + Style + + + + + Advanced + + + + + UndoWidget + + + Undo/Redo + + + + + Undo + + + + + Redo + + + + + ValidateDialog + + Check geometry validity + + + + Geometry errors + + + + Total encountered errors + + + + Error! + + + + Please specify input vector layer + + + + Please specify input field + + + + Cancel + + + + Feature + + + + Error(s) + + + + + VisualDialog + + Error! + + + + Please specify input vector layer + + + + Please specify input field + + + + List unique values + + + + Unique values + + + + Total unique values + + + + Basics statistics + + + + Statistics output + + + + Nearest neighbour analysis + + + + Nearest neighbour statistics + + + + Cancel + + + + Parameter + + + + Value + + + + + WidgetCentroidFill + + + Form + + + + + WidgetEllipseBase + + + Form + + + + + Settings + + + + + Border color + + + + + + Change + + + + + + Fill color + + + + + + Symbol width + + + + + + Outline width + + + + + + Symbol height + + + + + + Rotation + + + + + Data defined settings + + + + + Outline color + + + + + Shape + + + + + WidgetFontMarker + + + Form + + + + + Size + + + + + Change + + + + + Font family + + + + + ° + + + + + Offset X,Y + + + + + Color + + + + + Rotation + + + + + WidgetLineDecoration + + + Form + + + + + Change + + + + + Pen width + + + + + Color + + + + + WidgetLinePatternFill + + + Form + + + + + Line width + + + + + Color + + + + + Angle + + + + + Change + + + + + Distance + + + + + Offset + + + + + WidgetMarkerLine + + + Form + + + + + Marker placement + + + + + with interval + + + + + on every vertex + + + + + on last vertex only + + + + + on first vertex only + + + + + Rotate marker + + + + + Line offset + + + + + on central point + + + + + WidgetPointPatternFill + + + Form + + + + + Horizontal distance + + + + + Vertical distance + + + + + Horizontal displacement + + + + + Vertical displacement + + + + + WidgetSVGFill + + + Form + + + + + Border color + + + + + Color + + + + + + Change + + + + + Texture width + + + + + Rotation + + + + + Border width + + + + + SVG Groups + + + + + SVG Symbols + + + + + ... + + + + + WidgetSimpleFill + + + Form + + + + + Border color + + + + + Fill style + + + + + Color + + + + + Offset X,Y + + + + + + Change + + + + + Border style + + + + + Border width + + + + + WidgetSimpleLine + + + Form + + + + + Color + + + + + + Change + + + + + Pen width + + + + + Offset + + + + + Pen style + + + + + Use custom dash pattern + + + + + Join style + + + + + Cap style + + + + + WidgetSimpleMarker + + + Form + + + + + Angle + + + + + + Change + + + + + Border color + + + + + Size + + + + + Fill color + + + + + Offset X,Y + + + + + WidgetSvgMarker + + + Form + + + + + Size + + + + + + Change + + + + + Offset X,Y + + + + + Angle + + + + + Border color + + + + + Border width + + + + + Color + + + + + SVG Groups + + + + + SVG Image + + + + + ... + + + + + WidgetVectorFieldBase + + + Form + + + + + X attribute + + + + + Y attribute + + + + + Scale + + + + + Vector field type + + + + + Height only + + + + + Polar + + + + + Cartesian + + + + + Angle units + + + + + Degrees + + + + + Radians + + + + + Angle orientation + + + + + Counterclockwise from east + + + + + Clockwise from north + + + + + [pluginname]GuiBase + + + QGIS Plugin Template + + + + + Plugin Template + + + + + dxf2shpConverter + + + Converts DXF files in Shapefile format + + + + + + &Dxf2Shp + + + + + dxf2shpConverterGui + + + Dxf Importer + + + + + Input and output + + + + + Input DXF file + + + + + + ... + + + + + Output file + + + + + Export text labels + + + + + Output file type + + + + + Polyline + + + + + Polygon + + + + + Point + + + + + + Warning + + + + + Please specify a file to convert. + + + + + Please specify an output file + + + + + Fields description: +* Input DXF file: path to the DXF file to be converted +* Output Shp file: desired name of the shape file to be created +* Shp output file type: specifies the type of the output shape file +* Export text labels checkbox: if checked, an additional shp points layer will be created, and the associated dbf table will contain information about the "TEXT" fields found in the dxf file, and the text strings themselves + +--- +Developed by Paolo L. Scala, Barbara Rita Barricelli, Marco Padula +CNR, Milan Unit (Information Technology), Construction Technologies Institute. +For support send a mail to scala@itc.cnr.it + + + + + + Choose a DXF file to open + + + + + DXF files + + + + + Choose a file name to save to + + + + + Shapefile + + + + + eVis + + + eVis Database Connection + + + + + eVis Event Id Tool + + + + + eVis Event Browser + + + + + Create layer from a database query + + + + + Open an Event Browers and display the selected feature + + + + + Open an Event Browser to explore the current layer's features + + + + + eVisDatabaseConnectionGui + + + + Undefined + + + + + No predefined queries loaded + + + + + + + + + Open File + + + + + New Database connection requested... + + + + + Error: You must select a database type + + + + + Error: No host name entered + + + + + Error: No database name entered + + + + + Connection to [%1.%2] established + + + + + connected + + + + + Tables + + + + + Connection to [%1.%2] failed: %3 + + + + + Error: Parse error at line %1, column %2: %3 + + + + + Error: Unabled to open file [%1] + + + + + Error: Query failed: %1 + + + + + Error: Could not create temporary file, process halted + + + + + Error: A database connection is not currently established + + + + + eVisDatabaseConnectionGuiBase + + + + Database Connection + + + + + Predefined Queries + + + + + Load predefined queries + + + + + Loads an XML file with predefined queries. Use the Open File window to locate the XML file that contains one or more predefined queries using the format described in the user guide. + + + + + The description of the selected query. + + + + + Select the predefined query you want to use from the drop-down list containing queries identified from the file loaded using the Open File icon above. To run the query you need to click on the SQL Query tab. The query will be automatically entered in the query window. + + + + + not connected + + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Connection Status: </span></p></body></html> + + + + + Database Host + + + + + Enter the database host. If the database resides on your desktop you should enter ¨localhost¨. If you selected ¨MSAccess¨ as the database type this option will not be available. + + + + + Password to access the database. + + + + + Enter the name of the database. + + + + + Username + + + + + Enter the port through which the database must be accessed if a MYSQL database is used. + + + + + Connect to the database using the parameters selected above. If the connection was successful a message will be displayed in the Output Console below saying the connection was established. + + + + + Connect + + + + + User name to access the database. + + + + + Select the type of database from the list of supported databases in the drop-down menu. + + + + + Database Name + + + + + Password + + + + + Database Type + + + + + Port + + + + + SQL Query + + + + + Run the query entered above. The status of the query will be displayed in the Output Console below. + + + + + Run Query + + + + + Enter the query you want to run in this window. + + + + + A window for status messages to be displayed. + + + + + Output Console + + + + + eVisDatabaseLayerFieldSelectionGuiBase + + + Database File Selection + + + + + The name of the field that contains the Y coordinate of the points. + + + + + The name of the field that contains the X coordinate of the points. + + + + + Enter the name for the new layer that will be created and displayed in QGIS. + + + + + Y Coordinate + + + + + X Coordinate + + + + + Name of New Layer + + + + + eVisGenericEventBrowserGui + + + Generic Event Browser + + + + + Field + + + + + Value + + + + + + + + Warning + + + + + + This tool only supports vector data + + + + + + No active layers found + + + + + + Error + + + + + Unable to connect to either the map canvas or application interface + + + + + An invalid feature was received during initialization + + + + + Event Browser - Displaying records 01 of %1 + + + + + Attribute Contents + + + + + + Event Browser - Displaying records %1 of %2 + + + + + Select Application + + + + + All ( * ) + + + + + eVisGenericEventBrowserGuiBase + + + Display + + + + + Use the Previous button to display the previous photo when more than one photo is available for display. + + + + + Previous + + + + + Use the Next button to display the next photo when more than one photo is available for display. + + + + + Next + + + + + All of the attribute information for the point associated with the photo being viewed is displayed here. If the file type being referenced in the displayed record is not an image but is of a file type defined in the “Configure External Applications” tab then when you double-click on the value of the field containing the path to the file the application to open the file will be launched to view or hear the contents of the file. If the file extension is recognized the attribute data will be displayed in green. + + + + + 1 + + + + + Image display area + + + + + Display area for the image. + + + + + Options + + + + + File path + + + + + Attribute containing path to file + + + + + Use the drop-down list to select the field containing a directory path to the image. This can be an absolute or relative path. + + + + + If checked the path to the image will be defined appending the attribute in the field selected from the “Attribute Containing Path to Image” drop-down list to the “Base Path” defined below. + + + + + Path is relative + + + + + If checked, the relative path values will be saved for the next session. + + + + + + + + + + Remember this + + + + + + + + + + Reset to default + + + + + + Resets the values on this line to the default setting. + + + + + + + + + + Reset + + + + + Compass bearing + + + + + Attribute containing compass bearing + + + + + Use the drop-down list to select the field containing the compass bearing for the image. This bearing usually references the direction the camera was pointing when the image was acquired. + + + + + If checked an arrow pointing in the direction defined by the attribute in the field selected from the drop-down list to the right will be displayed in the QGIS window on top of the point for this image. + + + + + Display compass bearing + + + + + If checked, the Display Compass Bearing values will be saved for the next session. + + + + + Compass offset + + + + + Define the compass offset manually. + + + + + Manual + + + + + A value to be added to the compass bearing. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values. + + + + + Define the compass offset using a field from the vector layer attribute table. + + + + + From Attribute + + + + + Use the drop-down list to select the field containing the compass bearing offset. This allows you to compensate for declination (adjust bearings collected using magnetic bearings to true north bearings). East declinations should be entered using positive values and west declinations should use negative values. + + + + + If checked, the compass offset values will be saved for the next session. + + + + + Resets the compass offset values to the default settings. + + + + + Relative paths + + + + + The base path or url from which images and documents can be “relative” + + + + + + Base Path + + + + + The Base Path onto which the relative path defined above will be appended. + + + + + If checked, the Base Path will be saved for the next session. + + + + + Enters the default “Base Path” which is the path to the directory of the vector layer containing the image information. + + + + + If checked, the Base Path will append only the file name instead of the entire relative path (defined above) to create the full directory path to the file. + + + + + Replace entire path/url stored in image path attribute with user defined +Base Path (i.e. keep only filename from attribute) + + + + + + If checked, the current check-box setting will be saved for the next session. + + + + + + Clears the check-box on this line. + + + + + If checked, the same path rules that are defined for images will be used for non-image documents such as movies, text documents, and sound files. If not checked the path rules will only apply to images and other documents will ignore the Base Path parameter. + + + + + Apply Path to Image rules when loading docs in external applications + + + + + Clicking on Save will save the settings without closing the Options pane. Clicking on Restore Defaults will reset all of the fields to their default settings. It has the same effect as clicking all of the “Reset to default” buttons. + + + + + Configure External Applications + + + + + File extension and external application in which to load a document of that type + + + + + A table containing file types that can be opened using eVis. Each file type needs a file extension and the path to an application that can open that type of file. This provides the capability of opening a broad range of files such as movies, sound recording, and text documents instead of only images. + + + + + Extension + + + + + Application + + + + + Add new file type + + + + + Add a new file type with a unique extension and the path for the application that can open the file. + + + + + Delete current row + + + + + Delete the file type highlighted in the table and defined by a file extension and a path to an associated application. + + + + + eVisImageDisplayWidget + + + Zoom in + + + + + Zoom in to see more detail. + + + + + Zoom out + + + + + Zoom out to see more area. + + + + + Zoom to full extent + + + + + Zoom to display the entire image. + + + + + fTools + + Quantum GIS version detected: + + + + This version of fTools requires at least QGIS version 1.0.0 +Plugin will not be enabled. + + + + &Analysis Tools + + + + Distance matrix + + + + Sum line lengths + + + + Points in polygon + + + + Basic statistics + + + + List unique values + + + + Nearest neighbour analysis + + + + Mean coordinate(s) + + + + Line intersections + + + + &Research Tools + + + + Random selection + + + + Random selection within subsets + + + + Random points + + + + Regular points + + + + Vector grid + + + + Select by location + + + + Polygon from layer extent + + + + &Geoprocessing Tools + + + + Convex hull(s) + + + + Buffer(s) + + + + Intersect + + + + Union + + + + Symetrical difference + + + + Clip + + + + Dissolve + + + + Difference + + + + Eliminate sliver polygons + + + + G&eometry Tools + + + + Export/Add geometry columns + + + + Check geometry validity + + + + Polygon centroids + + + + Delaunay triangulation + + + + Voronoi Polygons + + + + Extract nodes + + + + Simplify geometries + + + + Densify geometries + + + + Multipart to singleparts + + + + Singleparts to multipart + + + + Polygons to lines + + + + Lines to polygons + + + + &Data Management Tools + + + + Define current projection + + + + Join attributes by location + + + + Split vector layer + + + + Merge shapefiles to one + + + + Create spatial index + + + + + geometryThread + + Merge all + + + + Polygon area + + + + Polygon perimeter + + + + Line length + + + + Point x coordinate + + + + Point y coordinate + + + + + grasslabel + + + (1-256) + + + + + (Optional) column to read labels + + + + + 3D-Viewer (NVIZ) + + + + + 3d Visualization + + + + + Add a value to the current category values + + + + + Add elements to layer (ALL elements of the selected layer type!) + + + + + Add missing centroids to closed boundaries + + + + + Add one or more columns to attribute table + + + + + Allocate network + + + + + Assign constant value to column + + + + + Assign new constant value to column only if the result of query is TRUE + + + + + Assign new value as result of operation on columns to column in attribute table + + + + + Assign new value to column as result of operation on columns only if the result of query is TRUE + + + + + Attribute field + + + + + Attribute field (interpolated values) + + + + + Attribute field to (over)write + + + + + Attribute field to join + + + + + Auto-balancing of colors for LANDSAT-TM raster + + + + + Bicubic or bilinear spline interpolation with Tykhonov regularization + + + + + Bilinear interpolation utility for raster maps + + + + + Blend color components for two rasters by given ratio + + + + + Blend red, green, raster layers to obtain one color raster + + + + + Break (topologically clean) polygons (imported from non topological format, like ShapeFile). Boundaries are broken on each point shared between 2 and more polygons where angles of segments are different + + + + + Break lines at each intersection of vector + + + + + Brovey transform to merge multispectral and high-res panchromatic channels + + + + + Buffer + + + + + Build polylines from lines + + + + + Calculate average of raster within areas with the same category in a user-defined base map + + + + + Calculate covariance/correlation matrix for user-defined rasters + + + + + Calculate error matrix and kappa parameter for accuracy assessment of classification result + + + + + Calculate geometry statistics for vectors + + + + + Calculate linear regression from two rasters: y = a + b*x + + + + + Calculate median of raster within areas with the same category in a user-defined base map + + + + + Calculate mode of raster within areas with the same category in a user-defined base map + + + + + Calculate optimal index factor table for LANDSAT-TM raster + + + + + Calculate raster surface area + + + + + Calculate shadow maps from exact sun position + + + + + Calculate shadow maps from sun position determinated by date/time + + + + + Calculate statistics for raster + + + + + Calculate univariate statistics for numeric attributes in a data table + + + + + Calculate univariate statistics from raster based on vector objects + + + + + Calculate univariate statistics from the non-null cells of raster + + + + + Calculate univariate statistics of vector map features + + + + + Calculate volume of data clumps, and create vector with centroids of clumps + + + + + Category or object oriented statistics + + + + + Cats + + + + + Cats (select from the map or using their id) + + + + + Change category values and labels + + + + + Change field + + + + + Change layer number + + + + + Change resolution + + + + + Change the type of boundary dangle to line + + + + + Change the type of bridges connecting area and island or 2 islands from boundary to line + + + + + Change the type of geometry elements + + + + + Choose appropriate format + + + + + Columns management + + + + + Compares bit patterns with raster + + + + + Compress and decompress raster + + + + + Compress raster + + + + + Computes a coordinate transformation based on the control points + + + + + Concentric circles + + + + + Connect nodes by shortest route (traveling salesman) + + + + + Connect selected nodes by shortest tree (Steiner tree) + + + + + Connect vector to database + + + + + Convert 2D vector to 3D by sampling raster + + + + + Convert 2D vector to 3D vector by sampling of elevation raster. Default sampling by nearest neighbour + + + + + Convert GRASS binary vector to GRASS ASCII vector + + + + + Convert a raster to vector within GRASS + + + + + Convert a vector to raster within GRASS + + + + + Convert bearing and distance measurements to coordinates and vice versa + + + + + Convert boundaries to lines + + + + + Convert centroids to points + + + + + Convert coordinates + + + + + Convert coordinates from one projection to another (cs2cs frontend) + + + + + Convert lines to boundaries + + + + + Convert points to centroids + + + + + Convert raster to vector areas + + + + + Convert raster to vector lines + + + + + Convert raster to vector points + + + + + Convert vector to raster using attribute values + + + + + Convert vector to raster using constant + + + + + Convex hull + + + + + Copy a table + + + + + Copy also attribute table (only the table of layer 1 is currently supported) + + + + + Count of neighbouring points + + + + + Create 3D volume map based on 2D elevation and value rasters + + + + + Create a MASK for limiting raster operation + + + + + Create a map containing concentric rings + + + + + Create a raster plane + + + + + Create and add new table to vector + + + + + Create and/or modify raster support files + + + + + Create aspect raster from DEM (digital elevation model) + + + + + Create cross product of category values from multiple rasters + + + + + Create fractal surface of given fractal dimension + + + + + Create grid in current region + + + + + Create new GRASS location and transfer data into it + + + + + Create new GRASS location from metadata file + + + + + Create new GRASS location from raster data + + + + + Create new GRASS location from vector data + + + + + Create new layer with category values based upon user's reclassification of categories in existing raster + + + + + Create new location from .prj (WKT) file + + + + + Create new raster by combining other rasters + + + + + Create new vector by combining other vectors + + + + + Create new vector with current region extent + + + + + Create nodes on network + + + + + Create parallel line to input lines + + + + + Create points + + + + + Create points along input lines + + + + + Create points/segments from input vector lines and positions + + + + + Create quantization file for floating-point raster + + + + + Create random 2D/3D vector points + + + + + Create random cell values with spatial dependence + + + + + Create random points + + + + + Create random vector point contained in raster + + + + + Create raster images with textural features from raster (first serie of indices) + + + + + Create raster of distance to features in input layer + + + + + Create raster of gaussian deviates with user-defined mean and standard deviation + + + + + Create raster of uniform random deviates with user-defined range + + + + + Create raster with contiguous areas grown by one cell + + + + + Create raster with textural features from raster (second serie of indices) + + + + + Create red, green and blue rasters combining hue, intensity, and saturation (his) values from rasters + + + + + Create shaded map + + + + + Create slope raster from DEM (digital elevation model) + + + + + Create standard vectors + + + + + Create surface from rasterized contours + + + + + Create vector contour from raster at specified levels + + + + + Create vector contour from raster at specified steps + + + + + Create watershed basin + + + + + Create watershed subbasins raster + + + + + Cut network by cost isolines + + + + + DXF vector layer + + + + + Database + + + + + Database connection + + + + + Database file + + + + + Database management + + + + + Delaunay triangulation (areas) + + + + + Delaunay triangulation (lines) + + + + + Delaunay triangulation, Voronoi diagram and convex hull + + + + + Delete category values + + + + + Develop images and group + + + + + Develop map + + + + + Directory of rasters to be linked + + + + + Disconnect vector from database + + + + + Display general DB connection + + + + + Display list of category values found in raster + + + + + Display projection information from PROJ.4 projection description file + + + + + Display projection information from PROJ.4 projection description file and create a new location based on it + + + + + Display projection information from a georeferenced file (raster, vector or image) and create a new location based on it + + + + + Display projection information from georeferenced ASCII file containing WKT projection description + + + + + Display projection information from georeferenced ASCII file containing WKT projection description and create a new location based on it + + + + + Display projection information from georeferenced file (raster, vector or image) + + + + + Display projection information of the current location + + + + + Display raster category values and labels + + + + + Display results of SQL selection from database + + + + + Display the HTML manual pages of GRASS + + + + + Display vector attributes + + + + + Display vector map attributes with SQL + + + + + Dissolves boundaries between adjacent areas sharing a common category number or attribute + + + + + Download and import data from WMS server + + + + + Drop column from attribute table + + + + + E00 vector layer + + + + + Elevation raster for height extraction (optional) + + + + + Execute any SQL statement + + + + + Export 3 GRASS rasters (R,G,B) to PPM image at the resolution of the current region + + + + + Export from GRASS + + + + + Export raster as non-georeferenced PNG image format + + + + + Export raster from GRASS + + + + + Export raster series to MPEG movie + + + + + Export raster to 8/24bit TIFF image at the resolution of the current region + + + + + Export raster to ASCII text file + + + + + Export raster to ESRI ARCGRID + + + + + Export raster to GRIDATB.FOR map file (TOPMODEL) + + + + + Export raster to Geo TIFF + + + + + Export raster to POVRAY height-field file + + + + + Export raster to PPM image at the resolution of the current region + + + + + Export raster to VTK-ASCII + + + + + Export raster to Virtual Reality Modeling Language (VRML) + + + + + Export raster to binary MAT-File + + + + + Export raster to binary array + + + + + Export raster to text file as x,y,z values based on cell centers + + + + + Export raster to various formats (GDAL library) + + + + + Export vector from GRASS + + + + + Export vector table from GRASS to database format + + + + + Export vector to DXF + + + + + Export vector to GML + + + + + Export vector to Mapinfo + + + + + Export vector to POV-Ray + + + + + Export vector to PostGIS (PostgreSQL) database table + + + + + Export vector to SVG + + + + + Export vector to Shapefile + + + + + Export vector to VTK-ASCII + + + + + Export vector to various formats (OGR library) + + + + + Exports attribute tables into various format + + + + + Extract features from vector + + + + + Extract selected features + + + + + Extracts terrain parameters from DEM + + + + + Extrudes flat vector object to 3D with fixed height + + + + + Extrudes flat vector object to 3D with height based on attribute + + + + + Fast fourier transform for image processing + + + + + Feature type (for polygons, choose Boundary) + + + + + File management + + + + + Fill lake from seed at given level + + + + + Fill lake from seed point at given level + + + + + Fill no-data areas in raster using v.surf.rst splines interpolation + + + + + Filter and create depressionless elevation map and flow direction map from elevation raster + + + + + Filter image + + + + + Find nearest element in vector 'to' for elements in vector 'from'. Various information about this relation may be uploaded to attribute table of input vector 'from' + + + + + Find shortest path on vector network + + + + + GRASS MODULES + + + + + GRASS shell + + + + + Gaussian kernel density + + + + + Generalization + + + + + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) coordinates + + + + + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) raster + + + + + Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) vector + + + + + Generate raster of cumulative cost of moving between locations, based on elevation and friction input rasters and starting point(s) coordinates + + + + + Generate raster of cumulative cost of moving between locations, based on elevation and friction input rasters and starting point(s) vector + + + + + Generate surface + + + + + Generate vector contour lines + + + + + Generates area statistics for rasters + + + + + Georeferencing, rectification, and import Terra-ASTER imagery and DEM using gdalwarp + + + + + Graphical raster map calculator + + + + + Help + + + + + Hue Intensity Saturation (HIS) to Red Green Blue (RGB) raster color transform function + + + + + Hydrologic modelling + + + + + Imagery + + + + + Import ASCII raster + + + + + Import DXF vector + + + + + Import ESRI ARC/INFO ASCII GRID + + + + + Import ESRI E00 vector + + + + + Import GDAL supported raster + + + + + Import GDAL supported raster and create a fitted location + + + + + Import GRIDATB.FOR (TOPMODEL) + + + + + Import MapGen or MatLab vector + + + + + Import OGR vector + + + + + Import OGR vector and create a fitted location + + + + + Import OGR vectors in a given data source combining them in a GRASS vector + + + + + Import SPOT VGT NDVI + + + + + Import SRTM HGT + + + + + Import US-NGA GEOnet Names Server (GNS) country file + + + + + Import all OGR/PostGIS vectors in a given data source and create a fitted location + + + + + Import attribute tables in various formats + + + + + Import binary MAT-File(v4) + + + + + Import binary raster + + + + + Import from database into GRASS + + + + + Import geonames.org country files + + + + + Import into GRASS + + + + + Import loaded raster + + + + + Import loaded raster and create a fitted location + + + + + Import loaded vector + + + + + Import loaded vector and create a fitted location + + + + + Import only some layers of a DXF vector + + + + + Import raster from ASCII polygon/line + + + + + Import raster from coordinates using univariate statistics + + + + + Import raster into GRASS + + + + + Import raster into GRASS from QGIS view + + + + + Import raster into GRASS from external data sources in GRASS + + + + + Import text file + + + + + Import vector from gps using gpsbabel + + + + + Import vector from gps using gpstrans + + + + + Import vector into GRASS + + + + + Import vector points from database table containing coordinates + + + + + Input nodes + + + + + Input table + + + + + Interpolate surface + + + + + Inverse distance squared weighting raster interpolation + + + + + Inverse distance squared weighting raster interpolation based on vector points + + + + + Inverse fast fourier transform for image processing + + + + + Join table to existing vector table + + + + + Layers categories management + + + + + Line-of-sight raster analysis + + + + + Link GDAL supported raster as GRASS raster + + + + + Link GDAL supported raster loaded in QGIS as GRASS raster + + + + + Link all GDAL supported rasters in a directory as GRASS rasters + + + + + Loaded layer + + + + + Locate the closest points between objects in two raster maps + + + + + Make each output cell function of the values assigned to the corresponding cells in the input rasters + + + + + Manage features + + + + + Manage image colors + + + + + Manage map colors + + + + + Manage raster cells value + + + + + Manage training dataset + + + + + Map algebra + + + + + Map type conversion + + + + + MapGen or MatLab vector layer + + + + + Mask + + + + + Maximal tolerance value (higher value=more simplification) + + + + + Metadata support + + + + + Minimum size for each basin (number of cells) + + + + + Mosaic up to 4 images + + + + + Name for new raster file (specify file extension) + + + + + Name for new vector file (specify file extension) + + + + + Name for output vector map (optional) + + + + + Name for the output raster map (optional) + + + + + Neighborhood analysis + + + + + Network analysis + + + + + Network maintenance + + + + + Number of rows to be skipped + + + + + Others + + + + + Output GML file + + + + + Output Shapefile + + + + + Output layer name (used in GML file) + + + + + Output raster values along user-defined transect line(s) + + + + + Overlay + + + + + Overlay maps + + + + + Path to GRASS database of input location (optional) + + + + + Path to the OGR data source + + + + + Percentage of first layer (0-99) + + + + + Perform affine transformation (shift, scale and rotate, or GPCs) on vector + + + + + Print projection information from a georeferenced file + + + + + Print projection information from a georeferenced file and create a new location based on it + + + + + Print projection information of the current location + + + + + Projection conversion of vector + + + + + Projection management + + + + + Put geometry variables in database + + + + + Query rasters on their category values and labels + + + + + Random location perturbations of vector points + + + + + Randomly partition points into test/train sets + + + + + Raster + + + + + Raster buffer + + + + + Raster file matrix filter + + + + + Raster neighbours analysis + + + + + Raster support + + + + + Re-project raster from a location to the current location + + + + + Rebuild topology of a vector in mapset + + + + + Rebuild topology of all vectors in mapset + + + + + Recategorize contiguous cells to unique categories + + + + + Reclass category values + + + + + Reclass category values using a column attribute (integer positive) + + + + + Reclass category values using a rules file + + + + + Reclass raster using reclassification rules + + + + + Reclass raster with patches larger than user-defined area size (in hectares) + + + + + Reclass raster with patches smaller than user-defined area size (in hectares) + + + + + Reclassify raster greater or less than user-defined area size (in hectares) + + + + + Recode categorical raster using reclassification rules + + + + + Recode raster + + + + + Reconnect vector to a new database + + + + + Red Green Blue (RGB) to Hue Intensity Saturation (HIS) raster color transformation function + + + + + Region settings + + + + + Register external data sources in GRASS + + + + + Regularized spline with tension raster interpolation based on vector points + + + + + Reinterpolate and compute topographic analysis using regularized spline with tension and smoothing + + + + + Remove all lines or boundaries of zero length + + + + + Remove bridges connecting area and island or 2 islands + + + + + Remove dangles + + + + + Remove duplicate area centroids + + + + + Remove duplicate lines (pay attention to categories!) + + + + + Remove existing attribute table of vector + + + + + Remove outliers from vector point data + + + + + Remove small angles between lines at nodes + + + + + Remove small areas, the longest boundary with adjacent area is removed + + + + + Remove vertices in threshold from lines and boundaries, boundary is pruned only if topology is not damaged (new intersection, changed attachement of centroid), first and last segment of the boundary is never changed + + + + + Rename column in attribute table + + + + + Reports + + + + + Reports and statistics + + + + + Reproject raster from another Location + + + + + Reproject vector from another Location + + + + + Resample raster using aggregation + + + + + Resample raster using interpolation + + + + + Resample raster. Set new resolution first + + + + + Rescale the range of category values in raster + + + + + Sample raster at site locations + + + + + Save the current region as a named region + + + + + Select features by attributes + + + + + Select features overlapped by features in another map + + + + + Separator (| , etc.) + + + + + Set PostgreSQL DB connection + + + + + Set boundary definitions by edge (n-s-e-w) + + + + + Set boundary definitions for raster + + + + + Set boundary definitions from raster + + + + + Set boundary definitions from vector + + + + + Set boundary definitions to current or default region + + + + + Set color rules based on stddev from a map's mean value + + + + + Set general DB connection + + + + + Set general DB connection with a schema (PostgreSQL only) + + + + + Set raster color table + + + + + Set raster color table from existing raster + + + + + Set raster color table from setted tables + + + + + Set raster color table from user-defined rules + + + + + Set region to align to raster + + + + + Set the region to match multiple rasters + + + + + Set the region to match multiple vectors + + + + + Set user/password for driver/database + + + + + Sets the boundary definitions for a raster map + + + + + Show database connection for vector + + + + + Shrink current region until it meets non-NULL data from raster + + + + + Simple map algebra + + + + + Simplify vector + + + + + Snap lines to vertex in threshold + + + + + Solar and irradiation model + + + + + Spatial analysis + + + + + Spatial models + + + + + Split lines to shorter segments + + + + + Statistics + + + + + Sum raster cell values + + + + + Surface management + + + + + Tables management + + + + + Tabulate mutual occurrence (coincidence) of categories for two rasters + + + + + Take vector stream data, transform it to raster, and subtract depth from the output DEM + + + + + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 4 raster + + + + + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 5 raster + + + + + Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM 7 raster + + + + + Tassled cap vegetation index + + + + + Terrain analysis + + + + + Tests of normality on vector points + + + + + Text file + + + + + Thin no-zero cells that denote line features + + + + + Toolset for cleaning topology of vector map + + + + + Topology management + + + + + Trace a flow through an elevation model + + + + + Transform cells with value in null cells + + + + + Transform features + + + + + Transform image + + + + + Transform null cells in value cells + + + + + Transform value cells in null cells + + + + + Type in map names separated by a comma + + + + + Update raster statistics + + + + + Update vector map metadata + + + + + Upload raster values at positions of vector points to the table + + + + + Upload vector values at positions of vector points + + + + + Vector + + + + + Vector buffer + + + + + Vector geometry analysis + + + + + Vector intersection + + + + + Vector non-intersection + + + + + Vector subtraction + + + + + Vector union + + + + + Vector update by other maps + + + + + Visibility graph construction + + + + + Voronoi diagram (area) + + + + + Voronoi diagram (lines) + + + + + Watershed Analysis + + + + + Which column for the X coordinate? The first is 1 + + + + + Which column for the Y coordinate? + + + + + Which column for the Z coordinate? If 0, z coordinate is not used + + + + + Work with vector points + + + + + Write only features link to a record + + + + + Zero-crossing edge detection raster function for image processing + + + + + visualThread + + Max. len: + + + + Min. len: + + + + Mean. len: + + + + Filled: + + + + Empty: + + + + N: + + + + Mean: + + + + StdDev: + + + + Sum: + + + + Min: + + + + Max: + + + + CV: + + + + Number of unique values: + + + + Range: + + + + Median: + + + + Observed mean distance: + + + + Expected mean distance: + + + + Nearest neighbour index: + + + + Z-Score: + + + + diff --git a/i18n/qgis_uk.ts b/i18n/qgis_uk.ts index 9c0d71042473..1b4d2125cb16 100644 --- a/i18n/qgis_uk.ts +++ b/i18n/qgis_uk.ts @@ -1,39 +1,16 @@ - - AboutDialog - - - <img src="qrc:/sextante/images/sextante_logo.png" /> - <h2>SEXTANTE for QGIS</h2> - <p>SEXTANTE, a geoprocessing platform for QGIS</p> - <p>A development by Victor Olaya (volayaf@gmail.com).</p> - <p>Portions of this software contributed by: - <ul> - <li>Alexander Bruy</li> - <li>Carson Farmer (fTools algorithms)</li> - <li>Julien Malik (Orfeo Toolbox connectors)</li> - <li>Evgeniy Nikulin (Original Field Pyculator code)</li> - <li>Michael Nimm (mmqgis algorithms)</li> - <li>Camilo Polymeris (Threading). Developed as part of Google - Summer of Code 2012</li> - </ul> - </p> - <p>You are currently using SEXTANTE v%1</p> - <p>This software is distributed under the terms of the GNU GPL License v2. - <p>For more information, please visit our website at - <a href="http://sextantegis.com">http://sextantegis.com</a></p> - - - - CharacterWidget - <p>Character: <span style="font-size: 24pt; font-family: %1%2</span><p>Value: 0x%3"> - <p>Символ: <span style="font-size: 24pt; font-family: %1%2</span><p>Значення: 0x%3"> + <p>Символ: <span style="font-size: 24pt; font-family: %1%2</span><p>Значення: 0x%3"> + + + + <p>Character: <span style="font-size: 24pt; font-family: %1">%2</span><p>Value: 0x%3 + <p>Символ: <span style="font-size: 24pt; font-family: %1">%2</span><p>Значення: 0x%3 @@ -179,6 +156,7 @@ p, li { white-space: pre-wrap; } Вихідний точковий шейп-файл + @@ -204,6 +182,7 @@ p, li { white-space: pre-wrap; } Обробка даних + @@ -427,6 +406,49 @@ were reduced to %2 vertices after simplification Please specify input polygon vector layer Будь ласка, вкажіть вхідний полігональний шар + + Selected features: %1 + + + + Eliminate + + + + No selection in input layer + + + + Error creating output file + + + + Could not replace geometry of feature with id + + + + Could not delete feature with id + + + + Commit error + + + + Commit Error + + + + Created output shapefile: +%1 + Створений новий шейпфайл: +%1 + + + Could not eliminate features with these ids: +%1 + + Please specify input line vector layer Будь ласка, вкажіть вхідний лінійний шар @@ -1431,11 +1453,38 @@ Are you sure you want to proceed? + + Eliminate sliver polygons + + + + + area + площа + + + + Selected features: + + + + + common boundary + + + + + Merge selection with the neighbouring polygon with the largest + + + + Save to new file + Add result to canvas @@ -1477,16 +1526,6 @@ Are you sure you want to proceed? Dialog Діалог - - - About SEXTANTE - - - - - about:blank - - DlgAddGeometryColumn @@ -1566,22 +1605,22 @@ Are you sure you want to proceed? Add constraint - + Додати обмеження Column - Поле + Поле Primary key - + Первинний ключ Unique - + Унікальне @@ -1589,17 +1628,17 @@ Are you sure you want to proceed? Create index - + Створити індекс Column - Поле + Поле Name - Ім'я + Ім'я @@ -1716,22 +1755,22 @@ Are you sure you want to proceed? Database Error - Помилка БД + Помилка бази даних An error occured: - + Виявлено помилку: An error occured when executing a query: - + Виявлена помилка при виконанні запита: Query: - + Запит: @@ -2576,7 +2615,7 @@ Do you want terminate it anyway? Processing completed. - + Обробку завершено. %1 not created. @@ -2904,7 +2943,7 @@ Disable the "Use intersected extent" option to have a nonempty output. Select... - Вибрати... + Вибрати... @@ -4631,28 +4670,39 @@ Input CRS error: One or more input layers missing coordinate reference informati GlobePlugin - + Launch Globe - + Globe Settings - + + Unload Globe + + + + Overlay data on a 3D globe - + Settings for 3D globe - + Unload globe + + + + + + &Globe @@ -4849,22 +4899,35 @@ Input CRS error: One or more input layers missing coordinate reference informati + + Help + + + Dialog + + + + + about:blank + + + LayerPropertiesWidget Form - + Symbol layer type - Тип шару + Тип шару This layer doesn't have any editable properties - + Цей шар не має жодних налаштуваннь, які можна змінити @@ -4919,12 +4982,12 @@ Input CRS error: One or more input layers missing coordinate reference informati - + &Settings &Установки - + &Plugins П&лагіни @@ -4934,12 +4997,12 @@ Input CRS error: One or more input layers missing coordinate reference informati &Оформлення - + &Raster &Растр - + &Help &Довідка @@ -4949,274 +5012,274 @@ Input CRS error: One or more input layers missing coordinate reference informati - + File Файл - + Manage Layers Управління шарами - + Digitizing Оцифровка - + Advanced Digitizing Розширена оцифровка - + Map Navigation Навігація по карті - + Attributes Атрибути - + Plugins Плагіни - + Help Довідка - + Raster Растр - + Label Підпис - + Vector Вектор - + Database База даних - + Web Веб-сайт - + &New Project &Новий проект - + Ctrl+N Ctrl+N - + &Open Project... &Відкрити проект... - + Ctrl+O Ctrl+O - + &Save Project &Зберегти проект - + Ctrl+S Ctrl+S - + Save Project &As... Зберегти проект &як... - + Ctrl+Shift+S - + Save as Image... Зберегти як зображення... - + &New Print Composer &Нова компоновка карти - + Ctrl+P Ctrl+P - + Composer Manager... - + Add Feature - + Merge Selected Features - + Merge Attributes of Selected Features - + Select Single Feature - + Select Features by Rectangle - + Select Features by Polygon - + Select Features by Freehand - + Select Features by Radius - + Deselect Features from All Layers - + Form Annotation - + Layer Labeling Options - + Add PostGIS Layers... - + Toggle Editing - + Save Edits - + Save As... Зберегти як... - + Save Selection as Vector File... - + Set Project CRS from Layer - + Rotate Label Ctl (Cmd) increments by 15 deg. - + Embed Layers and Groups... - + Run Feature Action - - + + Touch zoom and pan - + Offset Curve - + Copy style - + Paste style - + Add WCS Layer... - + &Grid - + Grid - + Pin/Unpin Labels - + Pin/Unpin Labels Click or marquee on label to pin Shift unpins, Ctl (Cmd) toggles state @@ -5224,44 +5287,44 @@ Acts on all editable layers - - + + Highlight Pinned Labels - - + + New Blank Project - + Local Cumulative Cut Stretch - + Local cumulative cut stretch using current extent, default limits and estimated values. - + Full Dataset Cumulative Cut Stretch - + Cumulative cut stretch using full dataset extent, default limits and estimated values. - + Show/Hide Labels - + Show/Hide Labels Click or marquee on feature to show label Shift+click or marquee on label to hide it @@ -5269,72 +5332,83 @@ Acts on currently active editable layer - - + + Html Annotation + + + + Duplicate Layer(s) + + + + + SVG annotation + + Composer manager... Менеджер компоновок... - + Exit Вихід - + Ctrl+Q Ctrl+Q - + &Undo В&ідмінити - + Ctrl+Z Ctrl+Z - + &Redo &Повторити - + Ctrl+Shift+Z Ctrl+Shift+Z - + Cut Features Вирізати об'єкти - + Ctrl+X Ctrl+X - + Copy Features Копіювати об'єкти - + Ctrl+C Ctrl+C - + Paste Features Вставити об'єкти - + Ctrl+V Ctrl+V @@ -5343,7 +5417,7 @@ Acts on currently active editable layer Створити точку - + Ctrl+. Ctrl+. @@ -5368,47 +5442,47 @@ Acts on currently active editable layer Додати об'єкт - + Move Feature(s) Перемістити об'єкт(и) - + Reshape Features Відкоректувати об'єкти - + Split Features Розділити об'єкти - + Delete Selected Видалити виділені - + Add Ring Додати кільце - + Add Part Додати частину - + Simplify Feature Спростити об'єкт - + Delete Ring Видалити кільце - + Delete Part Видалити частину @@ -5417,42 +5491,42 @@ Acts on currently active editable layer Об'єднати виділені об'єкти - + Node Tool Інструмент редагування вузлів - + Rotate Point Symbols Повернути точкові символи - + Snapping Options... - + Pan Map Прокрутка карти - + Zoom In Збільшити - + Ctrl++ Ctrl++ - + Zoom Out Зменшити - + Ctrl+- Ctrl+- @@ -5477,128 +5551,128 @@ Acts on currently active editable layer Зняти виділення в усіх шарах - + Identify Features Визначити об'єкти - + Ctrl+Shift+I Ctrl+Shift+I - + Measure Line - - + + Ctrl+Shift+M Ctrl+Shift+M - + Measure Area Виміряти площу - + Ctrl+Shift+J Ctrl+Shift+J - + Measure Angle Виміряти кут - + Zoom Full Повне охоплення - + Ctrl+Shift+F Ctrl+Shift+F - + Zoom to Layer Збільшити до шару - + Zoom to Selection Збільшити до виділеного - + Ctrl+J Ctrl+J - + Zoom Last Попереднє охоплення - + Zoom Next Наступне охоплення - + Zoom Actual Size Фактичний розмір - + Zoom to Native Pixel Resolution - + Map Tips Інтерактивна довідка - + Show information about a feature when the mouse is hovered over it Показати інформацію про об'єкт, коли курсор миші знаходиться над ним - + New Bookmark... Нова закладка... - + Ctrl+B Ctrl+B - + Show Bookmarks Показати закладки - + Ctrl+Shift+B Ctrl+Shift+B - + Refresh Оновити - + Ctrl+R Ctrl+R - + Text Annotation Текстова анотація @@ -5607,57 +5681,57 @@ Acts on currently active editable layer Діалогова анотація - + Move Annotation Перемістити анотацію - + Labeling Підписи - + New Shapefile Layer... Новий шар Shapefile... - + Ctrl+Shift+N Ctrl+Shift+N - + New SpatiaLite Layer ... Новий шар SpatiaLite... - + Ctrl+Shift+A - + Raster calculator ... - + Add Vector Layer... Додати векторний шар... - + Ctrl+Shift+V Ctrl+Shift+V - + Add Raster Layer... Додати растровий шар... - + Ctrl+Shift+R Ctrl+Shift+R @@ -5666,37 +5740,37 @@ Acts on currently active editable layer Додати шар PostGIS... - + Ctrl+Shift+D Ctrl+Shift+D - + Add SpatiaLite Layer... Додати шар SpatiaLite... - + Ctrl+Shift+L Ctrl+Shift+L - + Add MSSQL Spatial Layer... - + Add WMS Layer... Додати шар WMS... - + Ctrl+Shift+W Ctrl+Shift+W - + Open Attribute Table Відкрити таблицю атрибутів @@ -5705,7 +5779,7 @@ Acts on currently active editable layer Режим редагування - + Toggles the editing state of the current layer Переключити поточний шар в режим редагування @@ -5714,7 +5788,7 @@ Acts on currently active editable layer Зберегти зміни - + Save edits to current layer, but continue editing Зберегти зміни в поточному шарі і продовжити редагування @@ -5727,22 +5801,22 @@ Acts on currently active editable layer Зберегти виділене як... - + Remove Layer(s) - + Ctrl+D Ctrl+D - + Set CRS of Layer(s) - + Ctrl+Shift+C @@ -5751,94 +5825,94 @@ Acts on currently active editable layer Рівень деталізації - + Remove All from Overview - + Style Manager... - + Stretch Histogram to Full Dataset - + Customization... - + mActionCatchForCustomization - + This is here just to avoid shortcut conflicts, the shortcut is caught in QgsCustomization - + Ctrl+M Ctrl+M - + Embed layers and groups from other project files - + &Copyright Label &Знак авторського права - + Creates a copyright label that is displayed on the map canvas. Створює знак авторського права, що відображається на полотні карти. - + &North Arrow &Стрілка Півночі - + "Creates a north arrow that is displayed on the map canvas" - + &Scale Bar &Масштабна лінійка - - + + Creates a scale bar that is displayed on the map canvas Створює масштабну лінійку в області відображення карти - + Add WFS Layer... - + Add WFS Layer - + Feature Action - - + + Pan Map to Selection @@ -5847,27 +5921,27 @@ Acts on currently active editable layer GPS-стеження реального часу - + Properties... Властивості... - + Query... Запит... - + Add to Overview Додати до огляду - + Ctrl+Shift+O Ctrl+Shift+O - + Add All to Overview Додати все до огляду @@ -5876,133 +5950,133 @@ Acts on currently active editable layer Видалити все з огляду - + Show All Layers Показати всі шари - + Ctrl+Shift+U Ctrl+Shift+U - + Hide All Layers Зховати всі шари - + Ctrl+Shift+H Ctrl+Shift+H - + Manage Plugins... Керування плагінами... - + Toggle Full Screen Mode Ввімкнути повноекранний режим - + Ctrl+F - + Project Properties... Властивості проекта... - + Ctrl+Shift+P Ctrl+Shift+P - + Options... Параметри... - + Custom CRS... Користувальницька система координат... - + Configure shortcuts... Налаштувати комбінації клавіш... - + Local Histogram Stretch - + Stretch histogram of active raster to view extents - + Help Contents Зміст довідки - + F1 F1 - + API documentation - + QGIS Home Page Веб-сайт QGIS - + Ctrl+H Ctrl+H - + Check QGIS Version - + Check if your QGIS version is up to date (requires internet access) Перевірити, чи є твоя версія QGIS останньою (потрібен доступ в Інтернет) - + About Про програму - + QGIS Sponsors - - + + Move Label - + Rotate Label - + Change Label @@ -6011,12 +6085,12 @@ Acts on currently active editable layer Менеджер стилів... - + Python Console Python-консоль - + Full histogram stretch @@ -7069,7 +7143,7 @@ Please change this situation first, because OSM Plugin doesn't know what la PointsInPolygonThread point count field - Поле кількості точок + Поле кількості точок @@ -7121,6 +7195,10 @@ Please change this situation first, because OSM Plugin doesn't know what la Clear console + + Settings + Установки + Import Class @@ -7130,11 +7208,19 @@ Please change this situation first, because OSM Plugin doesn't know what la - Import sextante class + Import Sextante class + + + + Import QgisInterface class + + + + Import PyQt.QtCore class - Import iface class + Import PyQt.QtGui class @@ -7186,27 +7272,27 @@ use qgis.utils.iface object (instance of QgisInterface class). QGis::UnitType - + meters - + метри - + feet - + фути - - - + + + degrees - градусів + градусів - + <unknown> - + <невідомо> @@ -7243,117 +7329,117 @@ use qgis.utils.iface object (instance of QgisInterface class). Видалені вузли - + Moved vertices Перенесені вузли - + Python is not enabled in QGIS. - - - - - - - + + + + + + + - - + + Plugins Плагіни - + Loaded %1 (package: %2) - + Library name is %1 - - + + Failed to load %1 (Reason: %2) - + Attempting to resolve the classFactory function - + Loaded %1 (Path: %2) - + Error Loading Plugin Помилка завантаження модуля - + There was an error loading a plugin.The following diagnostic information may help the QGIS developers resolve the issue: %1. Під час завантаження модуля виникла помилка. Можливо, наступна інформація допоможе розробника вирішити проблему: %1. - + Unable to find the class factory for %1. - + Plugin %1 did not return a valid type and cannot be loaded - + Python error Помилка Python - + Error when reading metadata of plugin %1 Помилка читання метаданих модуля %1 - + Could not open CRS database %1 Error(%2): %3 - - + + CRS - + Generated CRS A CRS automatically generated from layer info get this prefix for description СК, автоматично згенерована з інформації шару, має цей префікс для опису Згенерована СК - + Saved user CRS [%1] - + Imported from GDAL @@ -7566,7 +7652,7 @@ Error(%2): %3 - + @@ -7643,7 +7729,6 @@ Error(%2): %3 - @@ -7655,12 +7740,11 @@ Error(%2): %3 - - - - - - + + + + + Warning Попередження @@ -8349,19 +8433,27 @@ Would you like to specify path (GISBASE) to your GRASS installation? Пд - Diagram Overlay - Накладення діаграм + Накладення діаграм + + + + Diagram Overlay (Legacy) + - + A plugin for placing diagrams on vector layers Плагін для розміщення діаграм на векторних шарах - + + Version 0.0.1 (Legacy) + + + Version 0.0.1 - Версія 0.0.1 + Версія 0.0.1 @@ -8493,232 +8585,245 @@ Would you like to specify path (GISBASE) to your GRASS installation? - + OGR driver for '%1' not found (OGR error: %2) Не знайдено драйвер OGR для «%1» (помилка OGR:%2) - + trimming attribute name '%1' to ten significant characters produces duplicate column name. скорочення імені атрибута «%1» до десяти значущих символів породжує дублюючися імена полів. - + creation of data source failed (OGR error:%1) не вдалося створити джерело даних (помилка OGR: %1) - + creation of layer failed (OGR error:%1) не вдалося створити шар (помилка OGR: %1) - + unsupported type for field %1 тип поля %1 не підтримується - + creation of field %1 failed (OGR error: %2) не вдалося створити поле %1 (помилка OGR: %2) - + created field %1 not found (OGR error: %2) створене поле %1 не знайдене (помилка OGR: %2) - + Invalid variant type for field %1[%2]: received %3 with type %4 - - + + Feature geometry not imported (OGR error: %1) - + Feature creation error (OGR error: %1) - + Failed to transform a point while drawing a feature of type '%1'. Writing stopped. (Exception: %2) Не вдалося трансформувати точку при виведенні об'єкта типу «%1». Запис зупинений (виняток: %2) - + Feature write errors: - + Stopping after %1 errors - + Only %1 of %2 features written. - + Arc/Info ASCII Coverage - + Atlas BNA - + Comma Separated Value - + ESRI Shapefile ESRI Shapefile - + FMEObjects Gateway - + GeoJSON - + GeoRSS - + Geography Markup Language [GML] - + Generic Mapping Tools [GMT] - + GPS eXchange Format [GPX] - + Keyhole Markup Language [KML] - + + Mapinfo TAB + + + + + Mapinfo MIF + + + + Spatial Data Transfer Standard [SDTS] - + + SpatiaLite + + + + ESRI FileGDB - + INTERLIS 1 - + INTERLIS 2 - Mapinfo File - + Microstation DGN - + S-57 Base file - + SQLite - + AutoCAD DXF - + Geoconcept - Groups not yet supported - Групи растрів не підтримуються в даний момент + Групи растрів не підтримуються в даний момент - - - + + + Cannot draw raster Не вдалося показати растр - + CRS undefined - defaulting to project CRS Не визначена система координат. Відкіт на значення за замовчуванням для проекта - + CRS undefined - defaulting to default CRS: %1 - + Reading raster @@ -8968,11 +9073,11 @@ You are seeing this message most likely because you have no DISPLAY environment - - - + - + + + @@ -9121,8 +9226,7 @@ You are seeing this message most likely because you have no DISPLAY environment - - + Cannot get GDAL raster band: %1 @@ -9147,18 +9251,18 @@ You are seeing this message most likely because you have no DISPLAY environment - + [GDAL] All files (*) [GDAL] Всі файли (*) - + GDAL/OGR VSIFileHandler - + This raster file has no bands and is invalid as a raster layer. Цей растровий файл не має каналів і не є дійсним растровим шаром @@ -9292,115 +9396,122 @@ You are seeing this message most likely because you have no DISPLAY environment - - - - - - - - - - - - - + + + + + + + + + + + + + Math - - - - - - - + + + + + + + Conversions - + Conditionals - - - - - - - - - + + + + + + + + + Date and Time - - - - - - - - - - - - - - + + + + + + + + + + + + + + + String - - - - - - - + + + + + + + Geometry Геометрія - - - + + + + Record - - + + Special + + + + + No root node! Parsing failed? - + (no root) - + Unary minus only for numeric values. - + Can't preform /, *, or % on DateTime and Interval - + [unsupported type;%1; value:%2] - + Column '%1' not found @@ -9436,12 +9547,12 @@ You are seeing this message most likely because you have no DISPLAY environment - + Globe - + Overlay data on a 3D globe @@ -9461,27 +9572,27 @@ You are seeing this message most likely because you have no DISPLAY environment - - + + - + Connection to database failed - + Creation of data source %1 failed: %2 - + Loading of the layer %1 failed - - + + Unable to delete layer %1: %2 @@ -9493,13 +9604,13 @@ You are seeing this message most likely because you have no DISPLAY environment - + Unsupported type for field %1 - + Creation of fields failed @@ -9519,24 +9630,24 @@ You are seeing this message most likely because you have no DISPLAY environment - + Unable to initialize SpatialMetadata: - + Could not create a new database - + Unable to activate FOREIGN_KEY constraints [%1] - + Unable to delete table %1: @@ -9567,60 +9678,60 @@ You are seeing this message most likely because you have no DISPLAY environment - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + Exception: %1 - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + GEOS - + GEOS prior to 3.2 doesn't support GEOSInterpolate @@ -9632,42 +9743,42 @@ You are seeing this message most likely because you have no DISPLAY environment - - + + Reading raster part %1 of %2 - + Building pyramids failed - write access denied - + Write access denied. Adjust the file permissions and try again. Закритий доступ на запис. Виправте права доступа до файлу і спробуйте ще раз. - - - - + + + + Building pyramids failed. Не вдалося побудувати піраміди. - + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. Запис у файл неможлива. Деякі формати не підтримують оглядові піраміди. Зверніться до документації GDAL за додатковою інформацією. - - + + Building pyramid overviews is not supported on this type of raster. Побудова пірамід не підтримується для даного типу растра. - + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. Побудова вбудованих оглядових пірамід для растрових шарів з JPEG-стисненням не підтримується поточною версією бібліотеки libtiff. @@ -9783,75 +9894,75 @@ You are seeing this message most likely because you have no DISPLAY environment QgisApp - + Multiple Instances of QgisApp Кілька екземплярів QgisApp - + Multiple instances of Quantum GIS application object detected. Please contact the developers. Кілька екземплярів Quantum GIS виявлено. Будь ласка, зв'яжіться з розробниками. - + Checking database Перевірка бази даних - + Reading settings Зчитування настройок - + Setting up the GUI Настройка користувальницького інтерфейсу - + Log Messages - + Quantum GIS - %1 ('%2') Quantum GIS - %1 ('%2') - + QGIS starting... - + Checking provider plugins Перевірка постачальника плагінів - + Starting Python Запуск Python - + Restoring loaded plugins Відновлення завантажених плагінів - + Initializing file filters Ініціалізація файлових фільтрів - + Restoring window state Відновлення стану вікна - - + + QGIS Ready! QGIS Готовий! @@ -9916,7 +10027,7 @@ Please contact the developers. Зберегти карту як зображення - + Quantum GIS Quantum GIS @@ -10332,7 +10443,7 @@ Please contact the developers. Оновити карту - + Labeling Підписи @@ -10571,38 +10682,38 @@ Please contact the developers. Налаштувати комбінації клавіш - + Minimize Мінімізувати - + Ctrl+M Minimize Window Ctrl+M - + Minimizes the active window to the dock Мінімізувати активне вікно в док - + Zoom Збільшити - + Toggles between a predefined size and the window size set by the user Переключення між попередньо встановленим та заданим користувачем розміром вікна - + Bring All to Front Все на передній план - + Bring forward all open windows Показати всі відкриті вікна @@ -10658,7 +10769,7 @@ Please contact the developers. Показати менеджер стилів - + Failed to open Python console: Не вдалося відкрити консоль Python: @@ -10679,12 +10790,12 @@ Please contact the developers. &Правка - + Panels Панелі - + Toolbars Панелі інструментів @@ -10757,24 +10868,24 @@ Please contact the developers. Довідка - + Progress bar that displays the status of rendering layers and other time-intensive operations Індикатор ходу процесу відтворення шарів та інших довготривалих операцій Индикатор ходу процесу - + Toggle extents and mouse position display Переключити вивід меж або позиції курсору - - + + Coordinate: Координати: - + Current map coordinate Поточні координати на карті @@ -10787,42 +10898,42 @@ Please contact the developers. Поточні координати на карті (у форматі x, y) - + Scale Масштаб - + Current map scale Поточний масштаб карти - + Displays the current map scale Показати поточний масштаб карти - + Current map scale (formatted as x:y) Поточний масштаб карти (у форматі x:y) - + Stop map rendering Зупинити рендерінг карти - + Render Render - + When checked, the map layers are rendered in response to map navigation commands and other events. When not checked, no rendering is done. This allows you to add a large number of layers and symbolize them before rendering. Якщо включено, рендерінг шарів карти виконується відразу у відповідь на команди навігації та інші події. Якщо вимкнено, рендерінг не виконується. Наприклад, це дозволяє додати велику кількість шарів і призначити їм умовні позначення до їх відображення. - + Toggle map rendering Переключити рендерінг карти @@ -10839,17 +10950,17 @@ Please contact the developers. Вихід... - + This icon shows whether on the fly coordinate reference system transformation is enabled or not. Click the icon to bring up the project properties dialog to alter this behaviour. Ця іконка показує, чи було ввімкнене перетворення координат на льоту. Натисніть на іконку, щоб відкрити діалогове вікно властивостей проекту для зміни цього режиму. - + CRS status - Click to open coordinate reference system dialog Статус СК - Клацніть для відкриття діалогу властивостей системи координат - + Ready Готовий @@ -11096,39 +11207,39 @@ This copy of QGIS has been built with GDAL/OGR %1. Підтримує більше операторів GEOS - + Select raster layers to add... Виберіть растровий шар для додавання... - + Raster Растр - + Select vector layers to add... Виберіть векторний шар для додавання... - + Please select a vector layer first. Будь ласка, спочатку виберіть векторний шар. - - - + + + Not enough features selected Недостатньо об'єктів вибрано - + Union operation canceled Операція об'єднання скасована - + SSL errors occured accessing URL %1: Виникла помилка SSL при доступі до URL %1: @@ -11145,17 +11256,17 @@ Ignore errors? Виникла помилка SSL - + Map canvas. This is where raster and vector layers are displayed when added to the map Робоча область. Це область, в якій відображаються растрові та векторні шари, коли додані до карти - + Vect&or - + &Web @@ -11190,23 +11301,23 @@ This copy of QGIS has been built without PostgreSQL support. Дана версія QGIS зібрана без підтримки PostgreSQL. - + Warning Попередження - + This layer doesn't have a properties dialog. Цей шар не має діалога властивостей. - + Authentication required встановлення автентичності Потрібна аутентифікація - + Proxy authentication required Необхідна аутентифікація проксі-сервера @@ -11245,14 +11356,14 @@ This binary was compiled against Qt %1,and is currently running against Qt %2Версія - + %1 is not a valid or recognized data source %1 не є дійсним чи розпізнаним джерелом даних - - - + + + Invalid Data Source Недійсне джерело даних @@ -11262,7 +11373,7 @@ This binary was compiled against Qt %1,and is currently running against Qt %2Ctrl+D - + &Database @@ -11271,12 +11382,15 @@ This binary was compiled against Qt %1,and is currently running against Qt %2Підпис - + + + + Invalid Layer Недійсний шар - + %1 is an invalid layer and cannot be loaded. Шар %1 не дійсний і не може бути завантаженим. @@ -11285,18 +11399,18 @@ This binary was compiled against Qt %1,and is currently running against Qt %2Зберегти як - + Calculating... - - + + Abort... Відмінити... - + Choose a QGIS project file to open Виберіть файл проекта QGIS для відкриття @@ -11309,124 +11423,134 @@ This binary was compiled against Qt %1,and is currently running against Qt %2Помилка зчитування проекта QGIS - + Unable to open project Не вдається відкрити проект - + + project macros have been disabled. + + + + + Enable macros + + + + Choose a QGIS project file Виберіть файл проекта QGIS - - + + Saved project to: %1 Проект збережений до: %1 - - + + Unable to save project %1 Не вдається зберегти проект %1 - + Choose a file name to save the QGIS project file as Виберіть ім'я файлу для збереження файлу проекту QGIS як - + Unable to load %1 - + Choose a file name to save the map image as Виберіть ім'я файлу для збереження зображення карти як - + Saved map image to %1 Зображення карти збережено в %1 - + Layer labeling settings Установки підписів шару - + Saving done Збереження виконано - + Export to vector file has been completed Експорт у векторний файл закінчено - + Save error Помилка збереження - + Export to vector file failed. Error: %1 Не вдалося експортувати у векторний файл. Помилка: %1 - - + + No Layer Selected Шар не вибраний - + To delete features, you must select a vector layer in the legend Для видалення об'єктів необхідно вибрати векторний шар в легенді - + No Vector Layer Selected Векторний шар не вибраний - + Deleting features only works on vector layers Видалення об'єктів працює тільки на векторном шарі - + Provider does not support deletion Джерело не підтримує видалення - + Data provider does not support deleting features Джерело даних не підтримує видалення об'єктів - - - + + + Layer not editable Шар не підтримує редагування - + The current layer is not editable. Choose 'Start editing' in the digitizing toolbar. Для поточного шару не вибраний режим редагування. Виберіть 'Розпочати редагування' на панелі інструментів оцифровки. - + Delete features Видалити об'єкти - + Delete %n feature(s)? number of features to delete @@ -11436,207 +11560,236 @@ Error: %1 - + Features deleted Об'єкти видалено - + Problem deleting features Помилка видалення об'єктів - + A problem occured during deletion of features Виникла проблема під час видалення об'єктів - + Merging features... Об'єднання об'єктів... - + Abort Скасувати - - + + Composer %1 Компоновка %1 - - + + No active layer Не має активного шару - - + + No active layer found. Please select a layer in the layer list Не знайдений активний шар. Будь ласка, виберіть шар в списку шарів - - + + Active layer is not vector Активний шар не є векторним - - + + The merge features tool only works on vector layers. Please select a vector layer from the layer list Інструмент об'єднання об'єктів працює тільки на векторних шарах. Будь ласка, виберіть векторний шар з списку шарів - - + + Merging features can only be done for layers in editing mode. To use the merge tool, go to Layer->Toggle editing Об'єднання об'єктів можливе лише в режимі редагування шарів. Для виконання об'єднання, виберіть Шар -> Режим редагування - - - + + + The merge tool requires at least two selected features Для об'єднання об'єктів необхідно вибрати хоча б два об'єкта - + Merged feature attributes - - + + Merge failed Помилка об'єднання - - + + An error occured during the merge operation Виникла помилка під час об'днання об'єктів - - + + The union operation would result in a geometry type that is not compatible with the current layer and therefore is canceled Операція об'єднання призведе до зміни геометричного типу, який не сумістний з поточним шаром, і тому відмінена - + Merged features Об'єднані об'єкти - + Features cut Вирізка об'єктів - + Features pasted Об'єкти вставлені - + Cannot copy style: %1 - + Cannot parse style: %1:%2:%3 - + Cannot read style: %1 - + Start editing failed Не вдалося почати редагування - + Provider cannot be opened for editing Джерело не може бути відкрите для редагування - + Stop editing Зупинити редагування - + Do you want to save the changes to layer %1? Ви хочете зберегти зміни в шарі %1? - + + copy + + + + + Plugin layer + + + + + Memory layer + + + + + + Duplicate layer: + + + + + %1 (duplication resulted in invalid layer) + + + + + %1 (%2type unsupported) + + + + Couldn't load Python support library: %1 - + Couldn't resolve python support library's instance() symbol. - + Python support ENABLED :-) - + QGIS - Changes since last release - + Unknown network socket error: %1 - - + + To perform a full histogram stretch, you need to have a raster layer selected. - + This project file was saved by an older version of QGIS - + Always ignore these errors? - + %n SSL errors occured number of errors - - - - - - - - - + + + + + + + Error Помилка @@ -11733,13 +11886,13 @@ This copy of QGIS has been built with SpatiaLite support (%1). Використання QNetworkAccessManager замість QgsHttpTransaction (включаючи кешування і динамічну авторизацію для сайта і проксі-серверів) - + %1 doesn't have any layers %1 не має шарів - - + + Could not commit changes to layer %1 Errors: %2 @@ -11749,7 +11902,7 @@ Errors: %2 Помилки: %2 - + Problems during roll back Проблеми під час відкату @@ -11758,7 +11911,7 @@ Errors: %2 Неправильний масштаб - + GPS Information Інформація GPS @@ -11771,30 +11924,30 @@ Errors: %2 Python-консоль - + There is a new version of QGIS available Доступна нова версія QGIS - + You are running a development version of QGIS Ви працюєте в розроблюваній версії QGIS - + You are running the current version of QGIS Ви працюєте в поточній версії QGIS - + Would you like more information? Хочете більше інформації? - - - - + + + + QGIS Version Information Інформація про версію QGIS @@ -11803,17 +11956,17 @@ Errors: %2 QGIS - Зміни в SVN з останнього випуску - + Unable to get current version information from server Не вдається отримати інформацію про поточну версію з сервера - + Connection refused - server may be down У підключенні відмовлено - можливо, сервер недоступний - + QGIS server was not found Сервер QGIS не знайдено @@ -11826,14 +11979,14 @@ Errors: %2 Невідома помилка мережного з'єднання - + Unable to communicate with QGIS Version server %1 Не вдається зв'язатися з сервером версій QGIS %1 - + No Raster Layer Selected @@ -11848,70 +12001,68 @@ Errors: %2 - + Cannot get MSSQL select dialog from provider. - - - + + Layer is not valid Невірний шар - + The layer %1 is not a valid layer and can not be added to the map Шар %1 не дійсний і не може бути доданий на карту - - + The layer is not a valid layer and can not be added to the map Шар не дійсний і не може бути доданий на карту - + Save? Зберегти? - + Do you want to save the current project? Ви хочете зберегти поточний проект? - + Current CRS: %1 (OTFR enabled) - + Current CRS: %1 (OTFR disabled) - + Map coordinates for the current view extents Межі поточного огляду в координатах карти - + Map coordinates at mouse cursor position Координати карти в позиції курсору миші - + Extents: Межі: - + Maptips require an active layer Для показу інтерактивної довідки необхідний активний шар - + %n feature(s) selected on layer %1. number of selected features @@ -11921,22 +12072,22 @@ Errors: %2 - + Open a GDAL Supported Raster Data Source Відкрити GDAL-сумістне джерело растрових даних - + %1 is not a valid or recognized raster data source %1 не є дійсним чи розпізнаним джерелом растрових даних - + %1 is not a supported raster data source %1 не є підтримуваним джерелом растрових даних - + Unsupported Data Source Непідтримуване джерело даних @@ -11949,42 +12100,32 @@ Errors: %2 Не вдається створити закладку. Користувальницька база даних відсутня чи пошкоджена - + Project file is older Застарілий файл проекту - + <p>This project file was saved by an older version of QGIS. When saving this project file, QGIS will update it to the latest version, possibly rendering it useless for older versions of QGIS.<p>Even though QGIS developers try to maintain backwards compatibility, some of the information from the old project file might be lost. To improve the quality of QGIS, we appreciate if you file a bug report at %3. Be sure to include the old project file, and state the version of QGIS you used to discover the error.<p>To remove this warning when opening an older project file, uncheck the box '%5' in the %4 menu.<p>Version of the project file: %1<br>Current version of QGIS: %2 <p>Цей файл проекту був збережений в старій версії QGIS. При збереженні цього файлу проекту, QGIS обновить його до останньої версії, можливо, зробить його нечитаємим для більш старих версій QGIS.<p>Хоча розробники QGIS намагаються зберегти зворотну сумісність, деяка інформація зі старого файлу проекту може бути втрачена. Щоб поліпшити якість QGIS, ми вдячні, якщо ви відправите звіт про помилку (bug) на %3. Не забудьте включити старий файл проекту і заявити версію QGIS, яку Ви використовували, щоб знайти помилку.<p>Щоб усунути це попередження при відкриванні файлу проекту старої версії, зніміть прапорець '%5' в %4 меню.<p>Версія файла проекта: %1<br>Поточна версія QGIS: %2 - + Security warning: - - macros have been disabled. - - - - - Enable - - - - + Window - + Shows the map coordinates at the current cursor position. The display is continuously updated as the mouse is moved. It also allows editing to set the canvas center to a given position. The format is lat,lon or east,north - + Current map coordinate (lat,lon or east,north) @@ -12016,7 +12157,7 @@ Errors: %2 - + < Blank > @@ -12072,95 +12213,100 @@ Errors: %2 - + + QScintilla2 Version + + + + This copy of QGIS writes debugging output. - + Select zip layers to add... - + Vector Вектор - + PostgreSQL - + Cannot get PostgreSQL select dialog from provider. - + %1 is an invalid layer - not loaded - + SpatiaLite - + Cannot get SpatiaLite select dialog from provider. - + MSSQL - + WMS WMS - + Cannot get WMS select dialog from provider. - + WCS - + Cannot get WCS select dialog from provider. - + WFS - + Cannot get WFS select dialog from provider. - - - + + + QGis files - + <tt>Settings:Options:General</tt> Menu path to setting options <tt>Установки:Параметри:Загальні</tt> - + Warn me when opening a project file saved with an older version of QGIS Попереджати при відкритті файла проекта старої версій QGIS @@ -12177,9 +12323,9 @@ Errors: %2 Виконати дію - + Attributes changed - + Атрибути змінено @@ -12290,7 +12436,12 @@ p, li { white-space: pre-wrap; } Розробники - + + Essen (Germany), Developer meeting 2012 + + + + about:blank @@ -12300,7 +12451,7 @@ p, li { white-space: pre-wrap; } Джерела - + Contributors Помічники Ассистенти @@ -12310,12 +12461,12 @@ p, li { white-space: pre-wrap; } Спонсори - + Donors Донори - + Translators Перекладачі @@ -12325,12 +12476,12 @@ p, li { white-space: pre-wrap; } Warning - Попередження + Увага Invalid field name. This field name is reserved and cannot be used. - + Недійсне ім'я поля. Це ім'я є зарезервованим і не може використовуватися. @@ -12404,6 +12555,42 @@ p, li { white-space: pre-wrap; } + + QgsAddTabOrGroup + + + Add tab or group for %1 + Додати вкладку чи групу для %1 + + + + QgsAddTabOrGroupBase + + + Dialog + + + + + Create category + Створити категорію + + + + as + як + + + + a tab + вкладку + + + + a group in container + групу в контейнері + + QgsAnnotationWidget @@ -12426,7 +12613,7 @@ p, li { white-space: pre-wrap; } Fixed map position - + Прив'язати анотацію до карти @@ -12447,19 +12634,19 @@ p, li { white-space: pre-wrap; } QgsApplication - - - + + + Exception Виняток - + unknown exception Невідоме виключення - + Application state: QGIS_PREFIX_PATH env var: %1 Prefix: %2 @@ -12471,13 +12658,95 @@ Default Theme Path: %7 SVG Search Paths: %8 User DB Path: %9 - + - + match indentation of application state + + + + + QgsAtlasCompositionWidget + + + + Map %1 + Карта %1 + + + + Expression based filename + Ім'я файла на основі виразу + + + + QgsAtlasCompositionWidgetBase + + + Atlas generation + + + + + Atlas options + + + + + Hide the coverage layer when generating the output + + + + + Hidden coverage layer + + + + + Margin around coverage + + + + + Output filename expression + + + + + % + + + + + ... + ... + + + + Coverage layer + + + + + Fixed scale + + + + + Single file export when possible + + + + + Composer map to use + + + + + Generate an atlas @@ -12797,17 +13066,17 @@ User DB Path: %9 (текст) - + Error - Помилка + Помилка - + Error: %1 - + Помилка: %1 - + Attributes - %1 Атрибути - %1 @@ -12815,22 +13084,22 @@ User DB Path: %9 QgsAttributeEditor - + Select a file Виберіть файл - + Select a date Виберіть дату - + (no selection) - + (не вибрано) - + ... ... @@ -12893,13 +13162,13 @@ User DB Path: %9 Ascending - + За зростанням Descending - + За спаданням @@ -12950,7 +13219,7 @@ User DB Path: %9 Attributes changed - + Атрибути змінено @@ -12958,7 +13227,7 @@ User DB Path: %9 Attribute changed - Атрибут змінено + Атрибут змінено @@ -12991,13 +13260,11 @@ User DB Path: %9 - + Attribute table - %1 :: %n / %2 feature(s) selected feature count - - @@ -13334,9 +13601,9 @@ User DB Path: %9 Атрибут змінено - + feature id - ID об'єкта + ID об'єкта @@ -13399,157 +13666,157 @@ Error was:%2 Діалог редагування атрибутів - + Line edit Лінійне редагування - + Classification Класифікація - + Range Діапазон - + Unique values Унікальні значення - + File name Ім'я файла - + Value map Карта значень - + Enumeration Перелік - + Immutable Незмінний - + Hidden Прихований - + Checkbox Перемикач - + Text edit Текстове поле - + Calendar Календар - + Value relation - + UUID generator - + Simple edit box. This is the default editation widget. Просте поле введення. Це віджет редагування за умовчанням. - + Displays combo box containing values of attribute used for classification. Відображає випадаючий список, що містить значення атрибута, які використовуються для класифікації. - + Allows one to set numeric values from a specified range. The edit widget can be either a slider or a spin box. Дозволяє встановити числові значення з зазначеного діапазону. Віджет редагування може бути повзунком чи полем вводу. - + Minimum Мінімум - + Maximum Максимум - + Step Крок - + A calendar widget to enter a date. Віджет "Календар" для введення дати. - + Layer Шар - + Key column Ключове поле - + Allow multiple selections - + Value column - + Select layer, key column and value column - + Allow null value - + Order by value - + Filter column - + Filter value - + Read-only field that generates a UUID if empty. @@ -13560,84 +13827,84 @@ Error was:%2 Повзунок - + Editable Підтримує редагування - + Local minimum/maximum = 0/0 Локальний мінімум/максимум = 0/0 - + The user can select one of the values already used in the attribute. If editable, a line edit is shown with autocompletion support, otherwise a combo box is used. Користувач може вибрати одне зі значень, вже використовуємих в атрибуті. Якщо підтримує редагування, лінійне редагування показується з підтримкою автодоповнення, інакше використовується випадаючий список. - + Simplifies file selection by adding a file chooser dialog. Спрощує вибір файлів, додаючи діалог вибору файлів. - + Combo box with predefined items. Value is stored in the attribute, description is shown in the combo box. Випадаючий список з наперед визначеними елементами. Значення зберігається в атрибуті, опис виводиться в списку. - + Load Data from layer Завантажити дані з шару - + Value Значення - + Description Опис - + Remove Selected Видалити вибране - + Load Data from CSV file Завантажити дані з файлу CSV - + Combo box with values that can be used within the column's type. Must be supported by the provider. Випадаючий список значень допустимих для поля даного типу . Елемент повинен підтримуватися джерелом даних. - + An immutable attribute is read-only - the user is not able to modify the contents. Не змінні атрибути доступні тільки для читання - користувач не зможе змінити їх. - + A hidden attribute will be invisible - the user is not able to see it's contents. Приховані атрибути не будуть відображатися - користувач не зможе побачити їх. - + Representation for checked state Представлення для вибраного стану - + Representation for unchecked state Представлення для невибраного стану - + A text edit field that accepts multiple lines will be used. Текстове поле, що дозволяє введення багаторядкового тексту. @@ -13733,8 +14000,6 @@ Database:%2 number of rows - - @@ -13796,22 +14061,22 @@ Database:%2 WMS - WMS + Cannot get WMS select dialog from provider. - + Не вдалося відкрити діалог вибору WMS. CRS - + Система координат Cannot set layer CRS - + Не вдалося задати систему координат @@ -13893,102 +14158,173 @@ Database:%2 Ctrl+Shift+W + + QgsBrowserDirectoryPropertiesBase + + + Dialog + + + + + Path + Шлях + + QgsBrowserDockWidget - + Browser - - Refresh - Оновити + Оновити - - Add Selection + + Add Selected Layers - - - Add Selected Layers + + Add as a favourite - - Collapse All + + Remove favourite - - Add as a favourite + + Add Layer - - Remove favourite + + + Properties - - Add Layer + + Filter Pattern Syntax - - Properties + + Wildcard(s) - + + Regular Expression + + + + Add a directory - + Add directory to favourites - + Error Помилка - + Layer Properties + + + Directory Properties + + + + + QgsBrowserDockWidgetBase + + + Browser + + + + + + Refresh + Оновити + + + + Add Selected Layers + + + + + Add + Додати + + + + Filter Files + + + + + + ... + ... + + + + Collapse All + + + + + Options + Параметри + + + + Filter files + + QgsBrowserLayerPropertiesBase Dialog - Діалог + Display Name - + Ім'я в легенді Layer Source - + Шар Provider - + Джерело Metadata - Метадані + Метадані @@ -13996,12 +14332,12 @@ Database:%2 Home - + Домашній каталог Favourites - + Вибране @@ -14083,47 +14419,61 @@ Database:%2 - QgsCategorizedSymbolRendererV2Widget + QgsCategorizedSymbolRendererV2Model + + + Symbol + Символ + - - + Value Значення - - + Label Підпис + + + QgsCategorizedSymbolRendererV2Widget + + Value + Значення + + + Label + Підпис + - + Symbol levels... - - + + Error Помилка - + There are no available color ramps. You can add them in Style Manager. Немає доступних кольорових шкал. Ви можете додати їх в Менеджері стилів. - + The selected color ramp is not available. Вибрана колірна шкала не доступна. - + Confirm Delete Підтвердіть видалення - + The classification field was changed from '%1' to '%2'. Should the existing classes be deleted before classification? Поле класифікації було змінено з '%1' на '%2'. @@ -14141,8 +14491,6 @@ Should the existing classes be deleted before classification? - - Symbol Символ @@ -14152,42 +14500,60 @@ Should the existing classes be deleted before classification? Колірна шкала - + Classify Класифікувати - + Add Додати - + Delete Видалити - + Delete all Видалити все - + Join Об'єднати - + Advanced Розширений + + QgsCharacterSelectorBase + + + Character Selector + Вибір символа + + + + Font: + Шрифт: + + + + Current font family and style + Поточне сімейство шрифтів та стиль + + QgsColorRampComboBox New color ramp... - + Нова колірна шкала... @@ -14195,12 +14561,12 @@ Should the existing classes be deleted before classification? Show compass - + Показати компас &About - &Про програму + &Про програму @@ -14208,7 +14574,7 @@ Should the existing classes be deleted before classification? Pixmap not found - Зображення не знайдено + Зображення не знайдено @@ -14216,48 +14582,120 @@ Should the existing classes be deleted before classification? Internal Compass - + Вбудований компас Azimut - + Азимут QgsComposer - + QGIS QGIS - + File Файл - + View Вид - + Panels Панелі - + Toolbars Панелі інструментів - + Layout Макет - + + Atlas generation + + + + + + + Empty filename pattern + + + + + + + The filename pattern is empty. A default one will be used. + + + + + Directory where to save PDF files + + + + + + + Unable to write into the directory + + + + + + + The given output directory is not writeable. Cancelling. + + + + + + + + Rendering maps... + + + + + + + + Abort + + + + + + + + Atlas processing error + + + + + Directory where to save image files + + + + + Image format: + + + + <p>The SVG export function in QGIS has several problems due to bugs and deficiencies in the @@ -14266,18 +14704,18 @@ Should the existing classes be deleted before classification? Карта 1 - + Command history - - + + Choose a file name to save the map as Виберіть ім'я файла для збереження карти як - + PDF Format Формат PDF @@ -14290,7 +14728,7 @@ Should the existing classes be deleted before classification? Створення зображення розміром %1x%2 пікселів не вдалося. Повторити без 'Друк як Растр'? - + Big image Велике зображення @@ -14299,7 +14737,7 @@ Should the existing classes be deleted before classification? Для створення зображень %1 x %2 потрібно близько %3 МБ пам'яті - + To create image %1x%2 requires about %3 MB of memory. Proceed? Для створення зображення %1x%2 потрібно близько %3 MB пам'яті. Продовжити? @@ -14308,17 +14746,17 @@ Should the existing classes be deleted before classification? Формат %1 (*.%2 *.%3) - + Composition Композиція - + Item Properties - + Choose a file name to save the map image as Виберіть ім'я файла для збереження зображення карти як @@ -14331,13 +14769,13 @@ Should the existing classes be deleted before classification? Створення зображення розміром %1x%2 пікселів не вдалося. Експорт перерваний. - + SVG warning Попередження SVG - - + + Don't show this message again Не показувати це повідомлення знову @@ -14346,27 +14784,32 @@ Should the existing classes be deleted before classification? <p>Функція SVG експорта в QGIS має кілька проблем пов'язаних з помилками і недоліками у - + Qt4 svg code. In particular, there are problems with layers not being clipped to the map bounding box.</p> Qt4 svg код. Зокрема, існують проблеми з шарами, які не відсікаються рамкою карти.</p> - + If you require a vector-based output file from Qgis it is suggested that you try printing to PostScript if the SVG output is not satisfactory.</p> Якщо вам необхідно отримати векторний вихідний файл з QGIS, то передбачається, що ви намагаєтеся роздрукувати в PostScript, якщо вивід в SVG не є задовільним.</P> - + SVG Format Формат SVG - + + Directory where to save SVG files + + + + Save template - + Composer templates @@ -14375,27 +14818,27 @@ Should the existing classes be deleted before classification? Зберегти шаблон - + Save error Помилка збереження - + Error, could not save file Помилка, не вдалося зберегти файл - + Load template Завантажити шаблон - + Read error Помилка читання - + Error, could not read file Помилка, не вдалося прочитати файл @@ -14404,17 +14847,17 @@ Should the existing classes be deleted before classification? Невірний вміст файла шаблона - + Composer Компонувальник карт - + Project contains WMS layers Проект містить WMS-шар - + Some WMS servers (e.g. UMN mapserver) have a limit for the WIDTH and HEIGHT parameter. Printing layers from such servers may exceed this limit. If this is the case, the WMS layer will not be printed Деякі WMS-сервери (наприклад, UMN mapserver) мають обмеження на значення параметрів ширини і висоти (WIDTH і HEIGHT). Під час друку шарів з цих серверів, ці ліміти можуть бути перевищені. У цьому випадку, WMS-шар не буде надрукований @@ -14909,42 +15352,42 @@ Should the existing classes be deleted before classification? QgsComposerHtmlWidget - + Use existing frames - + Extend to next page - + Repeat on every page - + Repeat until finished - + General options Загальні параметри - + Change html url - + Select HTML document - + Change resize mode @@ -14954,22 +15397,22 @@ Should the existing classes be deleted before classification? Form - + HTML - + ... - ... + URL - URL + @@ -14982,7 +15425,7 @@ Should the existing classes be deleted before classification? Change item position - + Зміна положення елемента @@ -15073,43 +15516,49 @@ Should the existing classes be deleted before classification? QgsComposerLabelWidget - + General options Загальні параметри - + Label text changed - - + + Label font changed - + Label margin changed - - - - - - + + + Insert expression + + + + + + + + + Label alignment changed - + Label id changed - + Label rotation changed @@ -15195,6 +15644,11 @@ Should the existing classes be deleted before classification? mm мм + + + Insert an expression + + QgsComposerLegend @@ -15222,7 +15676,7 @@ Should the existing classes be deleted before classification? Add layer to legend - + Додати шар до легенди @@ -15232,103 +15686,104 @@ Should the existing classes be deleted before classification? Параметри елемента - + General Options - + Item wrapping changed - + Legend title changed - + Legend symbol width - + Legend symbol height - + Legend group space - + Legend layer space - + Legend symbol space - + Legend icon label space - + Title font changed - + Legend group font changed - + Legend layer font changed - + Legend item font changed - + Legend box space - + Legend map changed - + Legend item edited - - + + + Legend updated - + Legend group added - + Map %1 - + None @@ -15431,6 +15886,11 @@ Should the existing classes be deleted before classification? Auto Update + + + Show feature count for each class of vector layer. + + v v @@ -15448,17 +15908,17 @@ Should the existing classes be deleted before classification? Правка - + All Все - + Add group Додати групу - + Update Оновити @@ -15527,13 +15987,13 @@ Should the existing classes be deleted before classification? QgsComposerMap - - + + Map %1 Карти %1 - + Map will be printed here Карта буде зображена тут @@ -15541,129 +16001,129 @@ Should the existing classes be deleted before classification? QgsComposerMapWidget - + General options Загальні параметри - - - + + + Cache Кеш - - - + + + Render Викреслити - - - + + + Rectangle Прямокутник - - + + Solid Суцільна - - - + + + Cross Перехрестя - + Decimal - + DegreeMinute - + DegreeMinuteSecond - - + + No frame - - - + + + Zebra - - - + + + None - + Annotation format changed - + Changed grid frame style - + Changed grid frame width - - - + + + Inside frame Всередині рамки - - + + Outside frame За рамкою - - - + + + Disabled - - - + + + Horizontal Горизонтально - - + + Vertical Вертикально - + Map %1 @@ -15676,96 +16136,96 @@ Should the existing classes be deleted before classification? У напрямку рамки - + Change item width - + Change item height - + Map scale changed - + Map rotation changed - - + + Map extent changed - + Canvas items toggled - + Grid checkbox toggled - - + + Grid interval changed - - + + Grid offset changed - - + + Grid pen changed - + Grid type changed - + Grid cross width changed - + Annotation font changed - + Annotation distance changed - + Annotation position changed - + Annotation toggled - + Changed annotation direction - + Changed annotation precision @@ -15778,97 +16238,97 @@ Should the existing classes be deleted before classification? Параметри карти - + Map Карта - + Width Ширина - + Height Висота - + Scale Масштаб - + Rotation Обертання - + degrees - + Draw map canvas items - + Overview frame - + Overview style - + Change... - + Extents Екстенти - + X min Мін. X - + Y min Y мін - + Grid Сітка - + Show grid? Показувати сітку? - + Grid &type Тип &сітки - + Interval X Інтервал X - + Offset X Зміщення по X - + Line width Ширина лінії @@ -15881,117 +16341,117 @@ Should the existing classes be deleted before classification? Напрямок анотації - + Line color Колір лінії - + Interval Y Інтервал Y - + Offset Y Зміщення по Y - + Cross width Ширина перехрестя - + X max Макс. X - + Y max Макс. Y - + Set to map canvas extent Встановити по екстенту полотна карти - + Lock layers for map item Заблокувати шари карти - + Frame style - + Frame width Товщина рамки - + Draw annotation Відображати аннотацію - + Annotation position left side - + Annotation position right side - + Annotation position top side - + Annotation position bottom side - + Annotation direction left side - + Annotation direction right side - + Annotation direction top side - + Annotation direction bottom side - + Annotation format - + Font... Шрифт... - + Distance to map frame Відстань до рамки карти - + Coordinate precision Точність координат @@ -16004,7 +16464,7 @@ Should the existing classes be deleted before classification? Попередній перегляд - + Update preview Оновити попередній перегляд @@ -16155,12 +16615,12 @@ Should the existing classes be deleted before classification? km - + км m - + м @@ -16802,97 +17262,97 @@ Should the existing classes be deleted before classification? QgsComposition - + Label added - + Map added - + Arrow added - + Scale bar added - + Shape added - + Picture added - + Legend added - + Table added - + Aligned items left - + Aligned items hcenter - + Aligned items right - + Aligned items top - + Aligned items vcenter - + Aligned items bottom - + Item z-order changed - + Remove item group - + Frame deleted - + Item deleted - + Multiframe removed @@ -17537,40 +17997,40 @@ p, li { white-space: pre-wrap; } QgsCptCityBrowserModel - + Name - Ім'я + Ім'я - + Info - Інформація + Інформація QgsCptCityColorRampItem - + colors - + кольорів - + continuous - + неперервний - + continuous (multi) - + неперервний (мульті) - + discrete - + дискретний - + variants @@ -17610,12 +18070,12 @@ and current file is [%3] - + %1 directory details - + %1 gradient details @@ -17690,7 +18150,7 @@ and current file is [%3] TextLabel - + @@ -18150,22 +18610,22 @@ and current file is [%3] Bottom Left - Внизу ліворуч + Внизу ліворуч Top Left - Вгорі ліворуч + Вгорі ліворуч Top Right - Вгорі праворуч + Вгорі праворуч Bottom Right - Внизу праворуч + Внизу праворуч @@ -18248,27 +18708,27 @@ p, li { white-space: pre-wrap; } Error - Помилка + Помилка No active layer - Не має активного шару + Не вибрано активний шар Please select a raster layer - + Виберіть растровий шар Invalid raster layer - + Недійсний растровий шар Layer CRS must be equal to project CRS - + Система координат шару має співпадати з системою координат проекту @@ -18403,27 +18863,27 @@ p, li { white-space: pre-wrap; } Bottom Left - Внизу ліворуч + Внизу ліворуч Top Left - Вгорі ліворуч + Вгорі ліворуч Top Right - Вгорі праворуч + Вгорі праворуч Bottom Right - Внизу праворуч + Внизу праворуч North arrow pixmap not found - Не знайдено зображення 'стрілки півночі' + Не знайдено зображення вказівника "північ-південь" @@ -18719,7 +19179,7 @@ p, li { white-space: pre-wrap; } Add a delimited text file as a map layer. The file must have a header row containing the field names. The file must either contain X and Y fields with coordinates in decimal units or a WKT field. - + Додати текстовий файл як шар на карту. Файл повинен містити рядок-заголовок з іменами полів. Для записів обов'язковими є поля X та Y у десятковому форматі або в форматі WKT. @@ -18901,7 +19361,7 @@ p, li { white-space: pre-wrap; } Note: the following lines were not loaded because QGIS was unable to determine values for the x and y coordinates: - + Увага: наступні рядки не були завантажені бо QGIS не може визначити значення координат x та y: Note: the following lines were not loaded because Qgis was unable to determine values for the x and y coordinates: @@ -18923,22 +19383,22 @@ p, li { white-space: pre-wrap; } Будь ласка, введіть ім'я шару перед його додаванням до карти - + Choose a delimited text file to open Виберіть текстовий файл із роздільниками - + Text files - + Well Known Text files - + All files Всі файли @@ -19130,81 +19590,64 @@ p, li { white-space: pre-wrap; } Form - Оформити + Heading Label - Заголовочний напис + Detail label - Детальний напис + Category label - + QgsDiagramDialog - - - Pie chart - Кругова діаграма + Кругова діаграма - - - Bar chart - Гістограма + Гістограма - - - Proportional SVG symbols - Пропорційні знаки SVG + Пропорційні знаки SVG - - - linearly scaling - Лінійне масштабування + Лінійне масштабування QgsDiagramDialogBase - Dialog - Діалог + Діалог - Display diagrams - Показати діаграми + Показати діаграми - Diagram type - Тип діаграми + Тип діаграми - Classification attribute - Класифікувати за атрибутом + Класифікувати за атрибутом - Classification type - Тип класифікації + Тип класифікації @@ -19730,45 +20173,11 @@ p, li { white-space: pre-wrap; } <h2> Буферизація об'єктів шару: </h2> - - QgsEmbedLayerDialog - - - Select project file - - - - - QGis files - - - - - Recursive embeding not possible - - - - - It is not possible to embed layers / groups from the current project - - - QgsEmbedLayerDialogBase - - Select layers and groups to embed - - - - - Project file - - - - ... - ... + ... @@ -19866,6 +20275,50 @@ p, li { white-space: pre-wrap; } Показувати можливі підписи + + QgsErrorDialog + + + Error + Помилка + + + + QgsErrorDialogBase + + + Dialog + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Summary</p></body></html> + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detailed report.</p></body></html> + + + + + Always show details + Завжди показувати подробиці + + + + Details >> + Подробиці >> + + QgsExpressionBuilderDialogBase @@ -19930,62 +20383,62 @@ p, li { white-space: pre-wrap; } - + Search - + Fields and Values - + Parser Error - + Eval Error - + Expression is invalid <a href=more>(more info)</a> - + More info on expression error - + Load top 10 unique values - + Load all unique values - + <h3>Oops! QGIS can't find help for this function.</h3>The help file for %1 was not found.<br> - + (Showing English version as there was no help available in your language (%1). If you would like to create it, contact the QGIS translation team).<br> - + It was neither available in your language (%1) nor English. - + <br>If you would like to create it, contact the QGIS development team. @@ -20098,7 +20551,7 @@ p, li { white-space: pre-wrap; } Run actions - Виконати дію + Виконати дії @@ -20319,6 +20772,271 @@ p, li { white-space: pre-wrap; } Вираз калькулятора поля + + QgsFieldsProperties + + + Label + Підпис + + + + Id + ID + + + + Name + Ім'я + + + + Type + Тип + + + + Length + Довжина + + + + Precision + Точність + + + + Comment + Коментар + + + + Edit widget + + + + + Alias + Псевдонім + + + + + Name conflict + + + + + + The attribute could not be inserted. The name already exists in the table. + + + + + Added attribute + + + + + + Deleted attribute + Видалено атрибут + + + + Line edit + Лінійне редагування + + + + Unique values + Унікальні значення + + + + Unique values editable + + + + + Classification + Класифікація + + + + Value map + Карта значень + + + + Edit range + + + + + Slider range + + + + + Dial range + + + + + File name + Ім'я файла + + + + Enumeration + Перелік + + + + Immutable + Незмінний + + + + Hidden + Прихований + + + + Checkbox + Перемикач + + + + Text edit + Текстове поле + + + + Calendar + Календар + + + + Value relation + + + + + UUID generator + + + + + Select edit form + + + + + UI file + + + + + QgsFieldsPropertiesBase + + + Field calculator + Калькулятор полів + + + + + Click to toggle table editing + Клацніть для переключення редагування таблиці + + + + Toggle editing mode + Режим редагування + + + + New column + Новий стовпець + + + + Ctrl+N + Ctrl+N + + + + Delete column + Видалити стовпець + + + + Ctrl+X + Ctrl+X + + + + ... + ... + + + + Init function + + + + + Edit UI + + + + + + + + + + + + - + - + + + + > + + + + + ^ + ^ + + + + v + v + + + + Autogenerate + + + + + Drag and drop designer + + + + + Provide ui-file + + + + + Attribute editor layout: + + + QgsFormAnnotationDialog @@ -20378,12 +21096,12 @@ p, li { white-space: pre-wrap; } internal GPS - + вбудований GPS local gpsd - + локальний gpsd @@ -21647,55 +22365,60 @@ Please reselect a valid file. QgsGdalProvider - + Dataset Description Опис набора даних - + Band %1 Канал %1 - + Dimensions: Розміри: - + X: %1 Y: %2 Bands: %3 X: %1 Y: %2 Канали: %3 - + Origin: Базис: - + Pixel Size: Розмір пікселя: - + Gauss - + Cubic - + Mode Режим - + None + + + Cannot get GDAL raster band: %1 + + out of extent поза екстентом @@ -21709,7 +22432,7 @@ Please reselect a valid file. Середнє відношення магн/фаза - + Average @@ -21952,7 +22675,7 @@ Please reselect a valid file. p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Droid Sans'; font-size:11pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:10pt;"></p></body></html> - + @@ -22538,7 +23261,7 @@ p, li { white-space: pre-wrap; } - + All files Всі файли @@ -22563,12 +23286,12 @@ p, li { white-space: pre-wrap; } - + Open 3D model file - + Model files @@ -22587,7 +23310,7 @@ p, li { white-space: pre-wrap; } - + Type Тип @@ -22602,118 +23325,113 @@ p, li { white-space: pre-wrap; } - - Worldwind - - - - + URL/File - - + + ... ... - + Up - + Down - + Add Додати - + Remove Видалити - + Cache Кеш - + Path - + Model - + Point Layer - + 3D Model - + Stereo - + Stereo Mode - + Screen distance (m) - + Screen width (m) - + Split stereo horizontal separation (px) - + Split stereo vertical separation (px) - + Split stereo vertical eye mapping - + Screen height (m) - + Eye separation (m) - + Reset to defaults - + Split stereo horizontal eye mapping @@ -22783,13 +23501,13 @@ p, li { white-space: pre-wrap; } QgsGraduatedSymbolRendererV2Widget - + Range Діапазон - + Label Підпис @@ -22832,7 +23550,7 @@ p, li { white-space: pre-wrap; } - + Symbol Символ @@ -23545,7 +24263,7 @@ p, li { white-space: pre-wrap; } Undo last vertex - + Відмінити створення вершини New point @@ -24060,13 +24778,13 @@ at line %2 column %3 - - - - - - - + + + + + + + Warning Попередження @@ -24082,13 +24800,13 @@ at line %2 column %3 - + Cannot read module file (%1) Не вдалося прочитати файл модуля (%1) - + %1 at line %2 column %3 @@ -24112,74 +24830,74 @@ at line %2 column %3 Будь ласка, впевніться, що документація GRASS встановлена. - + Not available, description not found (%1) Плагін не доступний, опис не знайдено (%1) - + Not available, cannot open description (%1) Плагін не доступний, не вдалося відкрити опис (%1) - + Not available, incorrect description (%1) Плагін не доступний, неправильний опис (%1) - - + + Run Виконати - - + + Cannot get input region Не вдалося отримати вхідний регіон - + Input %1 outside current region! Вихідний файл %1 знаходиться за межами поточного регіону! - + Use Input Region Використовувати вихідний регіон - + Output %1 exists! Overwrite? Файл виводу %1 вже існує. Перезаписати? - + Cannot find module %1 Не вдалося знайти плагін %1 - + Cannot start module: %1 Не вдалося запустити плагін: %1 - + Stop Зупинити - + <B>Successfully finished</B> <B>Успішне завершення</B> - + <B>Finished with error</B> <B>Закінчено з помилкою</B> - + <B>Module crashed or killed</B> <B>Плагін потерпів крах або убитий</B> @@ -24230,35 +24948,35 @@ at line %2 column %3 QgsGrassModuleField - + Attribute field Поле атрибута - + Warning Попередження - + 'layer' attribute in field tag with key= %1 is missing. - Атрибут 'шар' в тегі поля з ключем = %1 пропущений. + Відсутній атрибут "шар" в тезі поля з ключем = %1. QgsGrassModuleFile - + File Файл - + %1:&nbsp;missing value %1:&nbsp; відсутнє значення - + %1:&nbsp;directory does not exist %1:&nbsp; каталог не існує @@ -24266,44 +24984,44 @@ at line %2 column %3 QgsGrassModuleGdalInput - - - + + + Warning Попередження - + OGR/PostGIS/GDAL Input Дані OGR/PostGIS/GDAL - + Cannot find layeroption %1 Не вдалося знайти параметр "шар" (layer)%1 - + Cannot find whereoption %1 Не вдалося знайти параметр "де" (where) %1 - + Password Пароль - + Select a layer Виберіть шар - + PostGIS driver in OGR does not support schemas!<br>Only the table name will be used.<br>It can result in wrong input if more tables of the same name<br>are present in the database. OGR-драйвер PostGIS не підтримує схеми! <br> Буде використовуватися тільки ім'я таблиці. <br> Це може вплинути на правильність введення, <br> якщо в базі даних є більше однієї таблиці <br> з однаковими іменами. - + %1:&nbsp;no input %1:&nbsp;параметр не заданий @@ -24311,50 +25029,50 @@ at line %2 column %3 QgsGrassModuleInput - + Input Вхідні дані - - - - + + + + Warning Попередження - + Cannot find typeoption %1 Не вдається знайти параметр типу %1 - + Cannot find values for typeoption %1 Не вдається знайти значення для параметра тип %1 - + Cannot find layeroption %1 Не вдалося знайти параметр шару %1 - + GRASS element %1 not supported Елемент GRASS %1 не підтримується - + Use region of this map Використовувати регіон цієї карти - + Select a layer Виберіть шар - + %1:&nbsp;no input %1:&nbsp; параметр не задано @@ -24362,23 +25080,23 @@ at line %2 column %3 QgsGrassModuleOption - - + + Warning - Попередження + Увага - + Cannot parse version_min %1 - + Не вдалося обробити значення version_min %1 - + Cannot parse version_max %1 - + Не вдалося обробити значення version_max %1 - + %1:&nbsp;missing value %1:&nbsp; відсутнє значення @@ -24386,7 +25104,7 @@ at line %2 column %3 QgsGrassModuleSelection - + Selected categories Вибрані категорії @@ -24394,31 +25112,31 @@ at line %2 column %3 QgsGrassModuleStandardOptions - + Item with key %1 not found - + << Hide advanced options - + Show advanced options >> - - - - - - - - + + + + + + + + Warning Попередження @@ -24438,12 +25156,12 @@ at line %2 column %3 <br>команда: %1 %2<br>%3<br>%4 - + Cannot read module description (%1): - + %1 at line %2 column %3 @@ -24452,28 +25170,28 @@ at line %2 column %3 в рядку %2, стоппці %3 - + Cannot find key %1 - + Item with id %1 not found - - + + Cannot get current region Не вдалося отримати поточний регіон - + Cannot check region of map %1 Не вдалося перевірити регіон карти %1 - + Cannot set region of map %1 @@ -25156,6 +25874,16 @@ p, li { white-space: pre-wrap; } null (no data) null (немає даних) + + + cellhd file %1 does not exist + файл cellhd %1 не існує + + + + Groups not yet supported + Групи растрів не підтримуються в даний момент + QgsGrassRegion @@ -25438,13 +26166,13 @@ or change the following values Warning - Попередження + Увага Cannot rename the lock file %1 - + Не вдалося перейменувати файл блокування %1 @@ -25533,7 +26261,7 @@ at line %2 column %3 Filter - Фільтр + Фільтр @@ -25606,8 +26334,6 @@ at line %2 column %3 unhandled layers - - @@ -25757,12 +26483,12 @@ at line %2 column %3 Delete - Видалити + Видалити html - + @@ -25859,82 +26585,92 @@ This may be a problem in your network connection or at the WMS server. QgsIdentifyResults - + Identify Results Результати ідентифікації - + Feature Об'єкт - + Value Значення - - + + (Derived) (Виведені) - + (Actions) (Дія) - - - + + + Edit feature form Редагувати форму об'єкта - - - + + + View feature form Показати форму об'єкта - + + Print + + + + Zoom to feature Збільшити до об'єкта - + Copy attribute value Копіювати значення атрибута - + Copy feature attributes Копіювати атрибути об'єкта - + + Layer properties... + + + + Expand all Розгорнути все - + Collapse all Згорнути все - + Attribute changes - + Could not open url - + Could not open URL '%1' @@ -25947,22 +26683,22 @@ This may be a problem in your network connection or at the WMS server. Виконати дію - + Clear results Очистити результати - + Clear highlights Очистити підсвічування - + Highlight all Підсвітити все - + Highlight layer Підсвітити шар @@ -25974,6 +26710,34 @@ This may be a problem in your network connection or at the WMS server. Identify Results Результати ідентифікації + + + Expand tree. + + + + + + + + ... + ... + + + + Collapse tree. + + + + + New results will be expanded by default. + + + + + Print selected HTML response. + + QgsImageWarper @@ -25987,13 +26751,13 @@ This may be a problem in your network connection or at the WMS server. QgsInterpolationDialog - + Triangular interpolation (TIN) Тріангуляційна інтерполяція (TIN) - + Inverse Distance Weighting (IDW) Зворотне зважування відстаней (IDW) @@ -26019,23 +26783,23 @@ This may be a problem in your network connection or at the WMS server. - + Break lines Лінії розбивки - + Structure lines Лінії структури - + Points Точки - + Save interpolated raster as... Зберегти растр як ... @@ -26158,6 +26922,11 @@ This may be a problem in your network connection or at the WMS server. Output file Вихідний файл + + + Add result to project + Додати результат в проект + QgsInterpolationPlugin @@ -26531,20 +27300,20 @@ This may be a problem in your network connection or at the WMS server. QgsLabelPropertyDialog - - + + Label font - + Шрифт підпису - + Font color - + Колір тексту - + Buffer color - Колір буфера + Колір буфера @@ -26567,72 +27336,82 @@ This may be a problem in your network connection or at the WMS server. - + Size Розмір - + Display - + Show label - + Max - + Min - + Scale-based - + + Ignores priority and permits collisions/overlaps + + + + + Always show (exceptions above) + + + + Buffer Буфер - + Position Позиціонування - + Label distance Відступ підписів - + X Coordinate X-координата - + Y Coordinate Y-координата - + Horizontal alignment - + Vertical alignment - + Rotation Обертання @@ -26648,52 +27427,52 @@ This may be a problem in your network connection or at the WMS server. одиниці карти - + (not found!) - + Sample @ %1 pts (using map units) - + Sample @ %1 pts (using map units, BUFFER IN MILLIMETERS) - + Sample Зразок - + Sample (BUFFER NOT SHOWN, in map units) - + Expression based label - + Mixed Case - + All Uppercase - + All Lowercase - + Title Case @@ -26719,62 +27498,136 @@ This may be a problem in your network connection or at the WMS server. Поле, що містить підпис - + + Minimum - + + Maximum - + Formatted numbers - + Decimal places - + Show plus sign - + + Pixel size-based visibility + + + + + Labels will not show if larger than this on screen + + + + + + px + + + + + Labels will not show if smaller than this on screen + + + + + + + + + < + < + + + + Label in Map Units + + + + + + Label + + + + + Line direction symbols + + + + + Symbol(s) + + + + + > + + + + + left/right + + + + + above + + + + + below + + + + + Reverse direction + + + + Advanced - + Options Параметри - + Label every part of multi-part features - + Merge connected lines to avoid duplicate labels - - Add direction symbol - - - - + Features don't act as obstacles for labels - + + Placement Розміщення @@ -26819,28 +27672,28 @@ This may be a problem in your network connection or at the WMS server. По периметру - - - + + + Label distance Відступ підписів - - + + mm мм - - - + + + Rotation Обертання - - + + degrees градусів @@ -26869,17 +27722,17 @@ This may be a problem in your network connection or at the WMS server. лінія - + Text style Стиль текста - + Font Шрифт - + TextLabel @@ -26887,33 +27740,35 @@ This may be a problem in your network connection or at the WMS server. - - - + + + + + ... ... - - - + + + Color Колір - + Buffer Буфер - - - + + + Size Розмір - + mm мм @@ -26937,28 +27792,28 @@ This may be a problem in your network connection or at the WMS server. в пунктах - - + + In map units в одиницях карти - + Priority Приоритет - + Low НИзький - + High Високий - + Scale-based visibility Видимість при масштабах @@ -26987,7 +27842,7 @@ This may be a problem in your network connection or at the WMS server. Підписи на кілька рядків - + Suppress labeling of features smaller than Не підписувати об'єкти менше ніж @@ -27000,48 +27855,48 @@ This may be a problem in your network connection or at the WMS server. Установки алгоритма - - + + In mm - + Line orientation dependent position - + Data defined settings Визначені даними установки - + Font properties Властивості шрифта - + Bold Напівжирний - + Italic Курсив - + Underline Підкреслення - + Font family Шрифт - + Position Позиціонування @@ -27071,363 +27926,388 @@ This may be a problem in your network connection or at the WMS server. - + Multiple lines - + Wrap on character - - + + Line height - + Line height spacing for multi-line text - + line - + Alignment - + Paragraph style alignment of multi-line text - - + + Left - + Center Центр - - + + Right - + Available typeface styles - + Underlined Text - + U - + Strikeout text - + S - + points - - - + + + map units одиниці карти - + Style Стиль - - - + + + Transparency Прозорість - - + + % - - + + Word spacing - - + + Letter spacing - - + + Space in pixels or map units, relative to size unit choice - + Type case - + Capitalization style of text - + Pen Join style - + Color area inside of pen stroke - + Automated placement settings - - Show all labels for this layer (i.e. including colliding labels) - - - - + Around point - + Offset from point - + Parallel - + Curved - + Horizontal - + Offset from centroid - + Around centroid - + Horizontal (slow) - + Free (slow) - + Using perimeter - + Centroid of - + visible polygon - + whole polygon - + Above line - + On line - + Below line - + X - + Y - + Above Right Вверху справа - + Above Left Вверху зліва - + Over По центру - + Above Вверху - + Below Left Внизу зліва - + Below Внизу - + Below Right Внизу справа - + + Show all labels for this layer (including colliding labels) + + + + + Show upside-down labels + + + + + never + ніколи + + + + when rotation defined + + + + + always + завжди + + + Buffer transparency - + X Coordinate X-координата - + Y Coordinate Y-координата - + Horizontal alignment - + Vertical alignment - + Uncheck to write labeling engine derived rotation on pin and NULL on unpin - + Preserve existing rotation values during label pin/unpin operations - + Display properties - + + Always show + + + + Minimum scale - + Show label - + Maximum scale - + Strikeout Закреслення - + Capitalization - + Multi-line align - + Add label columns to attribute table - + About data defined values @@ -27437,17 +28317,17 @@ This may be a problem in your network connection or at the WMS server. - + Buffer properties Властивості буфера - + Buffer size Розмір буфера - + Buffer color Колір буфера @@ -27457,75 +28337,75 @@ This may be a problem in your network connection or at the WMS server. Outline: %1 - + Контур: %1 QgsLegend - - + + sub-group - - + + group група - + Legend context - + &Make to Toplevel Item - + Zoom to Group - + &Set Group CRS - + &Group Selected - + Copy Style - + Paste Style - + &Add New Group - + &Expand All - + &Collapse All - + &Update Drawing Order @@ -27534,12 +28414,12 @@ This may be a problem in your network connection or at the WMS server. Зробити елементом &першого рівня - + &Remove &Видалити - + Re&name Перей&менувати @@ -27575,7 +28455,7 @@ This may be a problem in your network connection or at the WMS server. &Показати в огляді - + &Remove &Видалити @@ -27592,75 +28472,78 @@ This may be a problem in your network connection or at the WMS server. Зберегти виділене як... - + &Query... &Запит... - + &Zoom to Layer Extent - + &Zoom to Best Scale (100%) - + &Stretch Using Current Extent - + &Show in Overview - + + &Duplicate + + + + &Set Layer CRS - + Set &Project CRS from Layer - + &Open Attribute Table - - + + Save As... Зберегти як... - + Save Selection As... - + Show Feature Count - + &Properties &Властивості - - + Updating feature count for layer %1 - - + Abort @@ -27676,45 +28559,35 @@ This may be a problem in your network connection or at the WMS server. QgsLinearlyScalingDialog - - Millimeter - Міліметр + Міліметр - - - Map units - Одиниці карти + Одиниці карти QgsLinearlyScalingDialogBase - Form - Форма + Форма - Scale linearly between 0 and the following attribute value / diagram size: - Лінійно масштабувати діаграми між нульовим розміром і наступним значенням атрибута: + Лінійно масштабувати діаграми між нульовим розміром і наступним значенням атрибута: - Find maximum value - Знайти максимальне + Знайти максимальне - Size - Розмір + Розмір - Size unit - Одиниці виміру + Одиниці виміру @@ -27889,7 +28762,7 @@ This may be a problem in your network connection or at the WMS server. Select connections to export - + Виберіть підключення для експорту Save to file @@ -27943,12 +28816,12 @@ This may be a problem in your network connection or at the WMS server. X / East: - + X / Схід: Y / North: - + Y / Північ: @@ -27959,99 +28832,99 @@ This may be a problem in your network connection or at the WMS server. QgsMapLayer - - + + Specify CRS for layer %1 - - - + + + %1 at line %2 column %3 %1 в рядку %2, стовпці %3 - + style not found in database стиль не найдений в базі даних - + Error: qgis element could not be found in %1 Помилка: елемент qgis не знайдений в %1 - - + + Loading style file %1 failed because: %2 Не вдалося завантажити файл стилю %1 оскільки: %2 - - - + + + Could not save symbology because: %1 Не вдалося зберегти символіку оскільки: %1 - - + + The directory containing your dataset needs to be writable! Необхідні права на запис у каталог, що містить ваші дані! - - + + Created default style file as %1 Створений файл стилю за замовчуванням в %1 - + ERROR: Failed to created default style file as %1. Check file permissions and retry. ПОМИЛКА: Не вдалося створити файл стилю за замовчуванням у %1. Перевірте права доступу до файлу та спробуйте знову. - + User database could not be opened. Не вдалося відкрити базу даних користувача. - + The style table could not be created. Створює растр із розрізненихданих. - + The style %1 was saved to database Стиль %1 був збережений в базі даних - + The style %1 was updated in the database. Стиль %1 був оновлений в базі даних. - + The style %1 could not be updated in the database. Не вдалося оновити в базі даних стиль %1. - + The style %1 could not be inserted into database. Не вдалося вставити в базу даних стиль %1. - + ERROR: Failed to created SLD style file as %1. Check file permissions and retry. - + Unable to open file %1 @@ -28059,16 +28932,16 @@ This may be a problem in your network connection or at the WMS server. QgsMapRenderer - - + + Transform error caught: %1 - + Помилка трансформації: %1 - - + + CRS - + Система координат @@ -28403,12 +29276,12 @@ This may be a problem in your network connection or at the WMS server. Validation started. - + Початок перевірки. Validation finished. - + Закінчення перевірки. @@ -28416,7 +29289,7 @@ This may be a problem in your network connection or at the WMS server. Label properties changed - + Зміна параметів підпису @@ -28464,116 +29337,114 @@ This may be a problem in your network connection or at the WMS server. No active vector layer - Немає активного векторного шара + Не вибрано активний векторний шар To run an action, you must choose a vector layer by clicking on its name in the legend - + Для виконання дії необхідно вибрати векторний шарб клацнувши мишею на імені шару в легенді No actions available - + Доступні дії відсутні The active vector layer has no defined actions - + Вибраний шар не має призначених дій No features at this position found. - Немає об'єктів в позиції курсора. + Немає об'єктів в позиції курсора. QgsMapToolIdentify - + No active layer Не має активного шару - + To identify features, you must choose an active layer by clicking on its name in the legend Для визначення об'єктів, необхідно вибрати активний шар клацанням миші на імені шару в легенді - + Identifying on %1... Визначення в шарі%1 ... - + Identifying done. Визначення виконано. - + No features at this position found. Немає об'єктів в позиції курсора. - - + + (clicked coordinate) (Координати місця клацання) - + Length Довжина - + firstX attributes get sorted; translation for lastX should be lexically larger than this one перш. X - + firstY перш. Y - + lastX attributes get sorted; translation for firstX should be lexically smaller than this one ост. X - + lastY ост. Y - + Area Площа - + feature id ID об'єкта - + new feature новий об'єкт - WMS layer - WMS-шар + WMS-шар - Feature info - Дані об'єкта + Дані об'єкта - + Raster Растр @@ -28601,7 +29472,7 @@ This may be a problem in your network connection or at the WMS server. Label moved - + Зсув підпису @@ -28635,22 +29506,22 @@ This may be a problem in your network connection or at the WMS server. Offset curve - + Паралельна крива Offset: - + Зміщення: Geometry error - + Помилка геометрії Creating offset geometry failed - + Не вдалося створити паралельну криву @@ -28658,12 +29529,12 @@ This may be a problem in your network connection or at the WMS server. Label pinned - + Підпис закріплено Label unpinned - + Підпис відкріплено @@ -28709,7 +29580,7 @@ This may be a problem in your network connection or at the WMS server. Label rotated - + Обертання підпису @@ -28752,12 +29623,12 @@ This may be a problem in your network connection or at the WMS server. Label hidden - + Підпис сховано Label shown - + Підпис видимий @@ -29322,8 +30193,23 @@ http://my.host.com/cgi-bin/mapserv.exe QgsMessageBar + Remaining messages + + + + + Close all + Закрити все + + + Close - Закрити + Закрити + + + + more + @@ -29632,7 +30518,7 @@ http://my.host.com/cgi-bin/mapserv.exe New Connection... - + Нове підключення... @@ -29640,12 +30526,12 @@ http://my.host.com/cgi-bin/mapserv.exe %1 as %2 in %3 - + %1 як %2 в %3 as geometryless table - + як таблиця без геометрії @@ -29784,7 +30670,7 @@ http://my.host.com/cgi-bin/mapserv.exe Select... - Вибрати... + Вибрати... @@ -29923,17 +30809,17 @@ http://my.host.com/cgi-bin/mapserv.exe - + Red Червоний - + Green Зелений - + Blue Синій @@ -30503,7 +31389,7 @@ p, li { white-space: pre-wrap; } Save As - Зберегти як + Зберегти як @@ -30746,20 +31632,20 @@ p, li { white-space: pre-wrap; } WMS Password for %1 - + Пароль WMS для %1 QgsOWSConnectionItem - + Edit... - Змінити... + Змінити... - + Delete - Видалити + Видалити @@ -30775,103 +31661,91 @@ p, li { white-space: pre-wrap; } - + Always cache - + Prefer cache - + Prefer network - + Always network - - Server format - - - - - is supported by GDAL %1 driver. - - - - - is not supported by GDAL - - - - + Are you sure you want to remove the %1 connection and all associated settings? - + Confirm Delete Підтвердіть видалення - + Load connections Завантажити підключення - + XML files (*.xml *XML) Файли XML (*.xml *.XML) - + Coordinate Reference System (%n available) crs count - - - + + Coordinate Reference System + Система координат + + + Could not understand the response: %1 - + WMS proxies - + Several WMS servers have been added to the server list. Note that if you access the internet via a web proxy, you will need to set the proxy settings in the QGIS options dialog. - + parse error at row %1, column %2: %3 - + network error: %1 - + The %1 connection already exists. Do you want to overwrite it? - + Confirm Overwrite @@ -30890,7 +31764,7 @@ p, li { white-space: pre-wrap; } - + Layers Шари @@ -30956,7 +31830,7 @@ p, li { white-space: pre-wrap; } - + Title Заголовок @@ -30966,54 +31840,62 @@ p, li { white-space: pre-wrap; } Опис - + Time - - Coordinate Reference System - Система координат + Система координат + + + + Coordinate Reference System: + + + + + Selected Coordinate Reference System + - + Change ... Змінити ... - - + + Format Формат - + Options Параметри - + Layer name Ім’я шара - + Tile size - + Feature limit for GetFeatureInfo - + Cache Кеш - + Cache preference Always cache: load from cache, even if it expired @@ -31027,82 +31909,82 @@ Always network: always load from network and do not check if the cache has a val - + Layer Order - + Move selected layer UP - + Up - + Move selected layer DOWN - + Down - + Layer Шар - + Style Стиль - + Tilesets - + Styles - + Size Розмір - + CRS - + Server Search - + Search - + Description Опис - + URL URL - + Add selected row to WMS list @@ -31197,12 +32079,12 @@ Always network: always load from network and do not check if the cache has a val Convert to offline project - + Перетворити в оффлайновий проект Create offline copies of selected layers and save as offline project - + Створити оффлайнові копії вибраних шарів та зберегти проект як оффлайновий @@ -31210,17 +32092,17 @@ Always network: always load from network and do not check if the cache has a val &Offline Editing - + &Оффлайнове редагування Synchronize - + Синхронізувати Synchronize offline project with remote layers - + Синхронізувати оффлайновий проект з віддаленими джерелами @@ -31289,7 +32171,7 @@ Always network: always load from network and do not check if the cache has a val Layer %1 of %2.. - + Шар %1 з %2.. @@ -31297,12 +32179,12 @@ Always network: always load from network and do not check if the cache has a val Dialog - Діалог + TextLabel - + @@ -31310,18 +32192,18 @@ Always network: always load from network and do not check if the cache has a val Couldn't open file %1.prj - + Не вдалося відкрити файл %1.prj OGR - + Couldn't open file %1.qpj - + Не вдалося відкрити файл %1.qpj @@ -32987,12 +33869,12 @@ Always network: always load from network and do not check if the cache has a val Add Oracle GeoRaster Layer... - + Додати шар Oracle GeoRaster... Add a Oracle Spatial GeoRaster... - + Додати шар Oracle Spatial GeoRaster... @@ -33087,12 +33969,12 @@ Always network: always load from network and do not check if the cache has a val Delete layer - + Видалити шар Layer deleted successfully. - + Шар видалено успішно. @@ -33100,7 +33982,7 @@ Always network: always load from network and do not check if the cache has a val New Connection... - + Нове підключення... @@ -33108,12 +33990,12 @@ Always network: always load from network and do not check if the cache has a val %1 as %2 in %3 - + %1 як %2 в %3 as geometryless table - + як таблиця без геометрії @@ -33121,22 +34003,22 @@ Always network: always load from network and do not check if the cache has a val Form - + Band - Канал + Канал Value - + Значення Color - Колір + Колір @@ -33418,6 +34300,21 @@ Extended error information: Password Пароль + + + Restrict the displayed tables to those that are in the layer registries. + + + + + Restricts the displayed tables to those that are found in the layer registries (geometry_columns, geography_columns, topology.layer). This can speed up the initial display of spatial tables. + + + + + Only look in the layer registries + + Use estimated table statistics for the layer metadata. @@ -33485,19 +34382,16 @@ Extended error information: - Restrict the displayed tables to those that are in the geometry_columns table - Вивести лише таблиці, що містяться в таблиці geometry_columns + Вивести лише таблиці, що містяться в таблиці geometry_columns - Restricts the displayed tables to those that are in the geometry_columns table. This can speed up the initial display of spatial tables. - Вивести лише таблиці, що містяться в таблиці geometry_columns. Це може прискорити початковий пошук просторових таблиць. + Вивести лише таблиці, що містяться в таблиці geometry_columns. Це може прискорити початковий пошук просторових таблиць. - Only look in the geometry_columns table - Шукати тільки в таблиці geometry_columns + Шукати тільки в таблиці geometry_columns @@ -33646,6 +34540,7 @@ Extended error information: + Postgres/PostGIS Provider @@ -33655,7 +34550,12 @@ Extended error information: - + + No accessible tables or views found. Check the message log for possible errors. + + + + Connect Підключитися @@ -33767,7 +34667,7 @@ geometry. Select... - Вибрати... + Вибрати... @@ -33783,52 +34683,65 @@ geometry. Таблиця - Type - Тип + Тип - Geometry column - Поле геометрії + Поле геометрії - + SRID SRID - - Primary key column - - - - + Select at id - + Sql SQL - + Detecting... - + Select... Вибрати... - + Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views). - + + Column + Поле + + + + Data Type + + + + + Spatial Type + + + + + Primary Key + + + + Enter... @@ -34056,6 +34969,10 @@ Here is the error message: only locally available доступний тільки локально + + Experimental plugin. Use at own risk + + - %d plugins available @@ -34241,75 +35158,80 @@ You need to restart Quantum GIS in order to reload it. - - Status - Стан + State + Статус + Status + Стан + + + + Name Ім'я - + Version Версія - + Description Опис - + Author Автор - + Repository Репозиторій - + Upgrade all - - + + Install, reinstall or upgrade the selected plugin Встановити, перевстановити чи оновити вибраний плагін - + Install/upgrade plugin Встановити/оновити плагін - - + + Uninstall the selected plugin Видалити вибраний плагін - + Uninstall plugin Видалити плагін - + Repositories Репозиторії - + List of plugin repositories Список репозиторіїв плагінів - + URL URL @@ -34322,107 +35244,107 @@ You need to restart Quantum GIS in order to reload it. Додати сторонні репозиторії - - + + Add a new plugin repository Додати нові репозиторії - + Add... Додати... - - + + Edit the selected repository Змінити вибрані репозиторії - + Edit... Змінити... - - + + Remove the selected repository Видалити вибрані репозиторії - + Delete Видалити - - + + Add the contributed repository to the list Додати репозиторій сторонніх плагінів в список - + Add the contributed repository Додати репозиторій сторонніх плагінів - - + + Remove depreciated repositories from the list Видалити зі списку застарівші репозиторії - + Delete depreciated repositories Видалити застарівші репозиторії - + Options Параметри - + Configuration of the plugin installer Параметри установки плагінів - + Check for updates on startup Перевіряти оновлення при запуску - + every time QGIS starts при кожному запуску QGIS - + once a day щоденно - + every 3 days кожні 3 дня - + every week щотижнево - + every 2 weeks Кожні 2 тижні - + every month щомісяця - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -34436,27 +35358,27 @@ p, li { white-space: pre-wrap; } </p></body></html> - + Allowed plugins Дозволені плагіни - + Only show plugins from the official repository Показувати плагіни тільки з офіцільного репозиторія - + Show all plugins except those marked as experimental Показувати всі плагіни, крім помічених як експериментальні - + Show all plugins, even those marked as experimental Показувати всі плагіни, включаючи помічених як експериментальні - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -34706,7 +35628,7 @@ p, li { white-space: pre-wrap; } - + Plugins Плагіни @@ -34717,27 +35639,27 @@ p, li { white-space: pre-wrap; } - + Installed in %1 menu/toolbar - + No Plugins Модулі відсутні - + No QGIS plugins found in %1 В %1 не знайдено модулів QGIS - + Error Помилка - + Failed to open plugin installer! Не вдалося відкрити установник плагінів! @@ -34745,32 +35667,32 @@ p, li { white-space: pre-wrap; } QgsPluginManagerBase - + QGIS Plugin Manager Менеджер модулів QGIS - + To enable / disable a plugin, click its checkbox or description Для акивації / деактивації модуля клацніть його опис або прапорець - + &Filter &Фільтр - + Plugin Directory: Каталог модулів: - + Directory Каталог - + Plugin Installer Завантажити модулі @@ -34900,24 +35822,24 @@ p, li { white-space: pre-wrap; } - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PostGIS @@ -34950,73 +35872,73 @@ error:%3 - + Database connection was successful, but the accessible tables could not be determined. Підключення до бази даних було успішним, але доступні таблиці не можуть бути визначені. - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 - + Database connection was successful, but the accessible tables could not be determined. The error message from the database was: %1 - + Database connection was successful, but no accessible tables were found. Please verify that you have SELECT privilege on a table carrying PostGIS geometry. - + Unable to get list of spatially enabled tables from the database - + Retrieval of postgis version failed - + Could not parse postgis version string '%1' - + Connection error: %1 returned %2 [%3] - + Erroneous query: %1 returned %2 [%3] - + Query failed: %1 Error: no result buffer - + Not logged query failed: %1 Error: no result buffer - + Query: %1 returned %2 [%3] - + %1 cursor states lost. SQL: %2 Result: %3 (%4) @@ -35025,78 +35947,98 @@ SQL:%2 Результат:%3 (%4) - + resetting bad connection. - + retry after reset succeeded. - + retry after reset failed again. - + connection still bad after reset. - + bad connection, not retrying. - + Point Точка - + Line Лінія - + Polygon Полігон - + No Geometry - - + + None + + + + + Geometry + Геометрія + + + + Geography + + + + + TopoGeometry + + + + + Query could not be canceled [%1] - + PQgetCancel failed - + Multipoint Мультіточка - + Multiline Мультілінія - + Multipolygon Мультіполігон - + Unknown Geometry @@ -35149,85 +36091,89 @@ SQL:%2 - - - - - - + + + + + - - - - + + + + - - - - - - + + + + + + + + - - - + + PostGIS - + Couldn't get the feature geometry in binary form - + Read attempt on an invalid postgresql data source - + nextFeature() without select() - - + + Fetching from cursor %1 failed Database error: %2 - + feature %1 not found - + found %1 features instead of just one. - + FAILURE: Field %1 not found. - - + + unexpected formatted field type '%1' for field %2 - - + Field %1 ignored, because of unsupported type %2 - + + Field %1 ignored, because of unsupported type type %2 + + + + Unable to access the %1 relation. The error message from the database was: %2. @@ -35238,7 +36184,7 @@ SQL: %3 SQL: %3 - + Unable to determine table access privileges for the %1 relation. The error message from the database was: %2. @@ -35249,92 +36195,92 @@ SQL: %3 SQL: %3 - + The custom query is not a select query. - + The table has no column suitable for use as a key. Quantum GIS requires a primary key, a PostgreSQL oid column or a ctid for tables. - + Primary key field '%1' for view not unique. - + Type '%1' of primary key field '%2' for view invalid. - + Key field '%1' for view not found. - + No key field for view given. - + Unexpected relation type '%1'. - + No key field for query given. - + PostGIS error while adding features: %1 - + PostGIS error while deleting features: %1 - + PostGIS error while adding attributes: %1 - + PostGIS error while deleting attributes: %1 - + PostGIS error while changing attributes: %1 - + PostGIS error while changing geometry values: %1 - + result of extents query invalid: %1 - + Geometry type and srid for empty column %1 of %2 undefined. - + Feature type or srid for %1 of %2 could not be determined or was not requested. - + Editing and adding disabled for 2D+ layer (%1; %2) @@ -35379,13 +36325,13 @@ Please install PostGIS with GEOS support (http://geos.refractions.net) Неоднозначне поле! - + Duplicate field %1 found Знайдено дублікат поля %1 - + PostgreSQL is still in recovery after a database crash (or you are connected to a (read-only) slave). Write accesses will be denied. @@ -35396,7 +36342,7 @@ Write accesses will be denied. Не вдалося виконати запит - + Unable to execute the query. The error message from the database was: %1. @@ -35589,7 +36535,7 @@ SQL:%2 Ignore - + Ігнорувати @@ -35600,7 +36546,8 @@ SQL:%2 Unable to open one or more project layers. Choose ignore to continue loading without the missing layers. Choose cancel to return to your pre-project load state. Choose OK to try to find the missing layers. - + Не вдалося відкрити один чи декілька шарів проекту. +Виберіть "Ігнрорувати" для продовження завантаження проекту без відсутніх шарів. Виберіть "Відмінити" для відміни завантаження. Виберіть "OK" для пошуку відсутніх шарів. Unable to open one or more project layers @@ -35609,108 +36556,164 @@ Try to find missing layers? Спробувати знайти відсутні шари? + + QgsProjectLayerGroupDialog + + + Select project file + Виберіть файл проекту + + + + QGis files + Файли QGis + + + + Recursive embedding not possible + + + + + It is not possible to embed layers / groups from the current project. + + + + + QgsProjectLayerGroupDialogBase + + + Select layers and groups to embed + Виберіть шари та групи для вбудування + + + + Project file + Файл проекту + + + + ... + ... + + QgsProjectProperties - + Layer Шар - + Type Тип - + Identifiable Можна ідентифікувати - + Vector Вектор - + WMS WMS - + Raster Растр - - + + Coordinate System Restriction - + No coordinate systems selected. Disabling restriction. - + Selection color Колір виділення - + CRS %1 was already selected - + Coordinate System Restrictions - + The current selection of coordinate systems will be lost. Proceed? - + + Select print composer + + + + + Composer Title + + + + + Select restricted layers and groups + + + + Enter scale - + Scale denominator - + Load scales - - + + XML files (*.xml *.XML) Файли XML (*.xml *.XML) - + Save scales - + Transparency %1% - + Select a valid symbol - + Invalid symbol : @@ -35723,52 +36726,52 @@ Proceed? Властивості проекта - + General Загальні - + General settings Загальні установки - + Project title Заголовок проекта - + Descriptive project name Описовий заголовок проекту - + Default project title Заголовок проекту за замовчуванням - + Selection color Колір виділення - + Background color Колір фону - + absolute абсолютні - + relative відносні - + Save paths Шляхи збереження @@ -35777,196 +36780,246 @@ Proceed? Одиниці шара (використовуються при виключеному перетворенні координат) - + Meters Метри - + Feet Фути - + Degree - + Degree display - + Decimal degrees Десяткові градуси - + Degrees, Minutes - + Degrees, Minutes, Seconds Градуси, минути, секунди - + Precision Точність - + Automatically sets the number of decimal places in the mouse position display Автоматично встановлювати кількість десяткових знаків позиції миші (рядок стану) - + The number of decimal places that are used when displaying the mouse position is automatically set to be enough so that moving the mouse by one pixel gives a change in the position display Кількість використовуваних десяткових знаків у значенні позиції курсору вибирається автоматично таким чином, що переміщення миші на один піксель викличе зміну в полі відображення позиції - + Automatic Автоматично - - + + Sets the number of decimal places to use for the mouse position display Встановити число десяткових знаків в полі виводу позицї курсора миші - + Manual Вручну - - + + The number of decimal places for the manual option Кількість десяткових знаків для параметра "Вручну" - + decimal places Десяткові знаки - + Project scales - - - - - - - - + + + + + + + + ... ... - + Default Styles - + Default Symbols - + Marker Маркер - + Line Лінія - + Fill - + Color Ramp Колірна шкала - + Style Manager Управління стилями - + Options Параметри - + Assign random colors to symbols - + Opacity Непрозорість - + OWS Server - + + Fees + + + + + Access constraints + + + + + Keyword list + + + + + Exclude composers + + + + + Exclude layers + + + + Advertised WMS url - + Maximum width - + Maximum height - + WFS Capabilitities - + Published - + + Update + Оновити + + + + Insert + + + + + Delete + Видалити + + + + Unselect all + Відмінити вибір + + + + Select all + Вибрати все + + + Macros - + Python macros - + Online resource - + Add WKT geometry to feature info response @@ -35975,102 +37028,102 @@ Proceed? WMS - + Service Capabilitities - + Title Заголовок - + Person - + Phone - + Abstract Опис - + E-Mail - + Organization - + WMS Capabilitities - + Advertised Extent - + Min. X - + Min. Y - + Max. X - + Max. Y - + Use Current Canvas Extent - + Coordinate Systems Restrictions - + Used when CRS transformation is turned off - + Canvas units - + Add Додати - + Remove Видалити - + Used @@ -36091,33 +37144,33 @@ Proceed? Параметри прилипання... - + Coordinate Reference System (CRS) Система координат - + Enable 'on the fly' CRS transformation Включити перетворення координат "на льоту" - + Identifiable layers Ідентифікуємі шари - - + + Layer Шар - + Type Тип - + Identifiable Можна ідентифікувати @@ -36552,17 +37605,17 @@ p, li { white-space: pre-wrap; } Enter result file - Виберіть файл результатів + Виберіть файл результатів Expression valid - + Вираз правильний Expression invalid - + Вираз неправильний @@ -36756,57 +37809,67 @@ p, li { white-space: pre-wrap; } QgsRasterDataProvider - + Identify Інструмент ідентифікації - + Build Pyramids - + Create Datasources - + Remove Datasources - + + no data + + + + + Feature info + Дані об'єкта + + + Band Канал - + Average - + Nearest Neighbour Найближчий сусід - + Gauss - + Cubic - + Mode Режим - + None @@ -37102,16 +38165,16 @@ Click on help button to get valid creation options for this format QgsRasterLayer - - - - - + + + + + Not Set Не задано - + QgsRasterLayer created Створений QgsRasterLayer @@ -37124,7 +38187,7 @@ Click on help button to get valid creation options for this format Цей растровий файл не має каналів і не є дійсним растровим шаром - + Retrieving stats for %1 Отримання статистики для %1 @@ -37145,12 +38208,12 @@ Click on help button to get valid creation options for this format поза екстентом - + null (no data) null (немає даних) - + Driver: Драйвер: @@ -37171,148 +38234,140 @@ Click on help button to get valid creation options for this format X: %1 Y: %2 Канали: %3 - + Could not reproject view extent: %1 - - - - - - - + + + + Raster Растр - + Could not reproject layer extent: %1 - + Cannot read data - + No Data Value Значення «немає даних» - + NoDataValue not set Значення "немає даних" не задане - + Data Type: Тип даних: - + GDT_Byte - Eight bit unsigned integer GDT_Byte - 8-бітне беззнакове ціле - + GDT_UInt16 - Sixteen bit unsigned integer GDT_UInt16 — 16-бітне беззнакове ціле - + GDT_Int16 - Sixteen bit signed integer GDT_Int16 — 16-бітне ціле зі знаком - + GDT_UInt32 - Thirty two bit unsigned integer GDT_UInt32 — 32-бітне беззнакове ціле - + GDT_Int32 - Thirty two bit signed integer GDT_Int32 - 32-бітове ціле зі знаком - + GDT_Float32 - Thirty two bit floating point GDT_Float32 - 32-бітове з плаваючою точкою - + GDT_Float64 - Sixty four bit floating point GDT_Float64 - 64-бітне з плаваючою точкою - + GDT_CInt16 - Complex Int16 GDT_CInt16 — Комплексне Int16 - + GDT_CInt32 - Complex Int32 GDT_CInt32 — Комплексне Int32 - + GDT_CFloat32 - Complex Float32 GDT_CFloat32 — Комплексне Float32 - + GDT_CFloat64 - Complex Float64 GDT_CFloat64 — Комплексне Float64 - + Could not determine raster data type. Не вдалося встановити тип растрових даних. - + Pyramid overviews: Огляд пірамід: - + Layer Spatial Reference System: Система координат шара: - + Layer Extent (layer original source projection): - + Project Spatial Reference System: Система координат проекта: - - Failed to load provider %1 (Reason: %2) + + Cannot instantiate the '%1' data provider - - Cannot resolve the classFactory function + + Provider is not valid (provider: %1, URI: %2 - - Cannot instantiate the data provider - - - - + <maplayer> not found. - + GDAL data type %1 is not supported @@ -37325,63 +38380,63 @@ Click on help button to get valid creation options for this format Розмір пікселя: - - + + Band Канал - + Band No Канал № - + No Stats Немає статистики - + No stats collected yet Статистика ще не зібрана - + Min Val Мін. значення - + Max Val Макс. значення - + Range Діапазон - + Mean Середнє - + Sum of squares Сумма квадратів - + Standard Deviation Стандартне відхилення - + Sum of all cells Сума всіх чарунок - + Cell Count Кількість чарунок @@ -37489,70 +38544,70 @@ Click on help button to get valid creation options for this format Властивості шара — %1 - - + + Nearest neighbour Найближчий сусід - - + + Bilinear Білінійний - - + + Cubic - - + + Average - + None - - + + Red Червоний - - + + Green Зелений - - + + Blue Синій - - - - - + + + + + Percent Transparent Відсоток прозорості - - + + Gray Сірий - - + + Indexed Value Індексоване значення @@ -37566,11 +38621,6 @@ Click on help button to get valid creation options for this format Bands - - - Time - - Note: Minimum Maximum values are estimates, user defined, or calculated from the current extent Увага: значення мін./макс. можуть бути розрахунковими, заданими або обчисленими в межах поточних меж @@ -37603,17 +38653,17 @@ Click on help button to get valid creation options for this format За замовчуванням R:%1 G:%2 B:%3 - + Columns: %1 Стовпців: %1 - + Rows: %1 Рядків: %1 - + No-Data Value: %1 Значення «немає даних»: %1 @@ -37622,8 +38672,8 @@ Click on help button to get valid creation options for this format Значення "немає даних" не задане - - + + Textfile @@ -37644,81 +38694,81 @@ Click on help button to get valid creation options for this format - + Columns: Стовпців: - + From - + To - + not defined - - - - + + + + n/a н/д - + Rows: Рядків: - - + + No-Data Value: Значення «немає даних»: - - + + Write access denied Закритий доступ на запис - + Write access denied. Adjust the file permissions and try again. Закритий доступ на запис. Виправте права доступа до файлу і спробуйте ще раз. - - - - + + + + Building pyramids failed. Не вдалося побудувати піраміди. - + The file was not writable. Some formats do not support pyramid overviews. Consult the GDAL documentation if in doubt. Запис у файл неможлива. Деякі формати не підтримують оглядові піраміди. Зверніться до документації GDAL за додатковою інформацією. - - + + Building pyramid overviews is not supported on this type of raster. Побудова пірамід не підтримується для даного типу растра. - + Building internal pyramid overviews is not supported on raster layers with JPEG compression and your current libtiff library. Побудова вбудованих оглядових пірамід для растрових шарів з JPEG-стисненням не підтримується поточною версією бібліотеки libtiff. - + Save file Зберегти файл @@ -37727,12 +38777,12 @@ Click on help button to get valid creation options for this format Текстові файли (*.txt) - + QGIS Generated Transparent Pixel Value Export File Файл експорта значень прозорості пікселів, створений QGIS - + Write access denied. Adjust the file permissions and try again. @@ -37743,17 +38793,17 @@ Click on help button to get valid creation options for this format Канал %1 - + Open file Відкрити файл - + Import Error Помилка імпорта - + The following lines contained errors %1 @@ -37762,12 +38812,12 @@ Click on help button to get valid creation options for this format %1 - + Read access denied Закритий доступ на зчитування - + Read access denied. Adjust the file permissions and try again. @@ -37858,9 +38908,8 @@ Click on help button to get valid creation options for this format Трьохканальне кольорове - Invert color map - Інвертувати колірну карту + Інвертувати колірну карту RGB mode band selection and scaling @@ -37883,12 +38932,12 @@ Click on help button to get valid creation options for this format Зберегти поточну відповідність RGB як значення за замовчуванням, яке буде зберігатися між сеансами роботи QGIS. - - - - - - + + + + + + ... ... @@ -37977,8 +39026,10 @@ Click on help button to get valid creation options for this format Покращення контраста + + Current - Поточний + Поточний Save current contrast enhancement algorithm as default. This setting will be persistent between QGIS sessions. @@ -37997,17 +39048,17 @@ Click on help button to get valid creation options for this format Підпис - + Title Заголовок - + Abstract Опис - + Transparency Прозорість @@ -38016,27 +39067,27 @@ Click on help button to get valid creation options for this format Увага - + Global transparency Загальна прозорість - + None Нульова - + 00% 00% - + <p align="right">Full</p> <p align="right">Повна</p> - + No data value Значення "дані відсутні" @@ -38045,47 +39096,47 @@ Click on help button to get valid creation options for this format Скинути значення "немає даних" - + Custom transparency options Параметри прозорості - + Transparency band Канал прозорості - + Transparent pixel list Перелік прозорих пікселів - + Add values manually Додати значення вручну - + Add Values from display Додати значення з карти - + Remove selected row Видалити рядок - + Default values За замовчеванням - + Import from file Імпортувати з файлу - + Export to file Експортувати у файл @@ -38150,22 +39201,22 @@ Click on help button to get valid creation options for this format Класифікувати - + General Загальні - + Display name І'мя в легенді - + Layer source Джерело даних - + Scale dependent visibility Видимість при масштабах @@ -38178,54 +39229,54 @@ Click on help button to get valid creation options for this format Мінімум - + Coordinate reference system Система координат - - + + Specify the coordinate reference system of the layer's geometry. Вибрати систему координат для геометрії в цьому шарі. - + Specify... Вибрати... - + Thumbnail Зразок - + Legend Легенда - + Palette Палітра - + Metadata Метадані - + Pyramids Піраміди - + Notes Примітки - + Pyramid resolutions Роздільна здатність пірамід @@ -38234,99 +39285,84 @@ Click on help button to get valid creation options for this format Створювати вбудовані піраміди, якщо можливо - + Resampling method Метод інтерполяції - + Average Середнє значення - + Style mRendererTab Стиль - + Render type - + Resampling - + Zoomed in - + Zoomed out - - Maximum oversampling - - - - + Use original source no data value. - + No data value: - + Original data source no data value, if exists. - + <src no data value> - - + + Additional user defined no data value. - + Additional no data value - - Less than: - - - - - More than or equal to: - - - - + Nearest Neighbour Найближчий сусід - + Build pyramids Побудувати піраміди - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -38335,42 +39371,47 @@ p, li { white-space: pre-wrap; } - + Overview format - + External - + Internal (if possible) - + External (Erdas Imagine) - + Histogram Гістограма - + Columns Стовпці - + + Oversampling + + + + Rows Рядки - + No Data Немає даних @@ -38407,27 +39448,57 @@ p, li { white-space: pre-wrap; } Оновити - + Restore Default Style Відновити значення за замовчуванням - + Save As Default Зберегти як значення за замовчуванням - + Load Style ... Завантажити стиль ... - + + MInimum scale denominator. + + + + + Maximum scale: + + + + + Minimum scale (maximum scale denominator). + + + + + Maximum scale (minimum scale denominator). + + + + + Maximum scale denominator + + + + + Minimum scale + + + + Pipe - + Save Style ... Зберегти стиль ... @@ -38435,64 +39506,64 @@ p, li { white-space: pre-wrap; } QgsRasterLayerSaveAsDialog - + From - + To - + Select output directory - + Select output file - - + + layer - - + + user defined - + Resolution (current: %1) - + map view - + Extent (current: %1) - + Layer (%1, %2) - + Project (%1, %2) - + Selected (%1, %2) @@ -38733,17 +39804,17 @@ p, li { white-space: pre-wrap; } - - Cumulative pixel count cut + + Cumulative count cut - + - - - + % % @@ -38753,42 +39824,42 @@ p, li { white-space: pre-wrap; } - + Mean +/- standard deviation × - + Extent - + Full - + Current Поточний - + Accuracy - + Actual (slower) Фактичні (повільніше) - + Estimate (faster) Розраховані (швидше) - + Load Завантажити @@ -38856,6 +39927,39 @@ p, li { white-space: pre-wrap; } Метод інтерполяції + + QgsRasterRenderer + + + Unknown + + + + + User defined + + + + + Estimated + + + + + Exact + Точна + + + + min / max + + + + + of + + + QgsRasterTerrainAnalysisDialog @@ -38986,77 +40090,77 @@ p, li { white-space: pre-wrap; } Додати результат в проект - + Illumination - + Azimuth (horizontal angle) - + Vertical angle - + Relief colors - + Create automatically - + Export distribution... - + Up - + Down - + + + - + - - - + Lower bound - + Upper bound - + Color Колір - + Export colors... - + Import colors... @@ -39167,7 +40271,7 @@ p, li { white-space: pre-wrap; } - + Filter Фільтр @@ -39213,18 +40317,18 @@ p, li { white-space: pre-wrap; } Знак - + Error Помилка - + Filter expression parsing error: Помилка розбору виразу фільтра: - + Evaluation error @@ -39233,7 +40337,7 @@ p, li { white-space: pre-wrap; } Фільтр пустий - + Filter returned %n feature(s) number of filtered features @@ -39415,30 +40519,55 @@ p, li { white-space: pre-wrap; } QgsRuleBasedRendererV2Model - + (no filter) (без фільтра) - + + <li><nobr>%1 features also in rule %2</nobr></li> + + + + Label Підпис - + Rule Правило - + Min. scale Мінімальний - + Max.scale + + + Count + + + + + Duplicate count + + + + + Number of features in this rule. + + + + + Number of features in this rule which are also present in other rule(s). + + QgsRuleBasedRendererV2Widget @@ -39463,7 +40592,7 @@ p, li { white-space: pre-wrap; } Максимальний - + Add Додати @@ -39472,25 +40601,30 @@ p, li { white-space: pre-wrap; } Уточнити - + Rendering order... - + Edit Правка - + Remove Видалити - + Refine current rules + + + Count features + + Rule grouping Групування правил @@ -39528,56 +40662,66 @@ p, li { white-space: pre-wrap; } Не допускається зміна групи правил. - + Add scales to rule - + Add categories to rule - + Add ranges to rule - + Refine a rule to categories Додати до правила категорії - + Refine a rule to ranges Додати до правила діапазони - - + + Scale refinement Уточнення масштаба - + Parent rule %1 must have a symbol for this operation. - + Please enter scale denominators at which will split the rule, separate them by commas (e.g. 1000,5000): Будь ласка, введіть знаменники масштабу, які будуть розбивати правило, розділяючи їх комами (наприклад: «1000, 5000»): - + Error Помилка - + "%1" is not valid scale denominator, ignoring it. «% 1» не є дійсним знаменником масштабу. Значення буде проігноровано. + + + Calculating feature count. + + + + + Abort + + QgsRunProcess @@ -39678,12 +40822,12 @@ p, li { white-space: pre-wrap; } Delete layer - + Видалити шар Layer deleted successfully. - + Шар видалено успішно. @@ -39729,58 +40873,49 @@ p, li { white-space: pre-wrap; } QgsSVGDiagramFactoryWidget - Select svg file - Виберіть svg файл + Виберіть svg файл - Select new preview directory - Виберіть новий каталог для мініатюр зображень + Виберіть новий каталог для мініатюр зображень - Creating icon for file %1 - Створення іконки для файлу %1 + Створення іконки для файлу %1 QgsSVGDiagramFactoryWidgetBase - Form - Форма + Форма - Search directories - Директорії для пошуку + Директорії для пошуку - Add... - Додати... + Додати... - Remove - Видалити + Видалити - SVG Preview - Попередній перегляд + Попередній перегляд - ... - ... + ... QgsSVGFillSymbolLayerWidget - + Select svg texture file Виберіть SVG-файл текстури @@ -40113,37 +41248,35 @@ p, li { white-space: pre-wrap; } number of geometry errors - - - + ring %1, vertex %2 кільце %1, вершина %2 - + polygon %1, ring %2, vertex %3 полігон %1, кільце %2, вершина %3 - + polyline %1, vertex %2 полілінія %1, вершина %2 - + vertex %1 вершина %1 - + point %1 точка %1 - + single point єдина точка @@ -40194,22 +41327,32 @@ The error was: QgsSingleBandGrayRendererWidget - + + Black to white + + + + + White to black + + + + No enhancement - + Stretch to MinMax - + Stretch and clip to MinMax - + Clip to MinMax @@ -40241,74 +41384,79 @@ The error was: Max + + + Color gradient + + QgsSingleBandPseudoColorRendererWidget - - - - - + + + + + Discrete Дискретна - - - - - - + + + + + + Linear Лінійна - - - + + + Exact Точна - - + + Equal interval Рівні інтервали - + Custom color map entry Користувальницьке значення колірної карти - + Load Color Map Завантаження колірної карти - + The color map for band %1 failed to load Не вдалося завантажити колірну карту для канала %1 - + Open file Відкрити файл - - + + Textfile (*.txt) Текстові файли (*.txt) - + Import Error Помилка імпорта - + The following lines contained errors @@ -40317,34 +41465,34 @@ The error was: - + Read access denied Закритий доступ на зчитування - + Read access denied. Adjust the file permissions and try again. Закритий доступ на зчитування. Виправте права доступа до файлу і спробуйте ще раз. - + Save file Зберегти файл - + QGIS Generated Color Map Export File Файл експорта колірної карти QGIS - + Write access denied Закритий доступ на запис - + Write access denied. Adjust the file permissions and try again. @@ -40359,92 +41507,127 @@ The error was: - + Band Канал - + Color interpolation Інтерполяція кольорів - Add entry - Додати значення + Додати значення - Delete entry - Видалити значення + Видалити значення - Sort - Сортувати + Сортувати - + Load color map from band Завантажити колірку карту з канала - - - + + + + + + ... ... - + + Add values manually + Додати значення вручну + + + + Remove selected row + Видалити рядок + + + Load color map from file Завантажити колірну карту з файла - + Export color map to file Зберегти колірну карту в файл - + Value - + Color Колір - + Label Підпис - + Generate new color map Створити нову колірну карту - + Classes - + + Colors + Кольори + + + + Min + + + + + Max + + + + Mode Режим - - Classify - Класифікувати + + Min / max origin: + - - Color ramp + + Min / Max origin + + + Invert colors order + + + + + Classify + Класифікувати + QgsSingleSymbolDialog @@ -40552,7 +41735,7 @@ The error was: Symbol levels... - + Рівні знака... @@ -40560,12 +41743,12 @@ The error was: Form - + The Symbol - + Символ @@ -40573,12 +41756,12 @@ The error was: Invalid name - + Неправильне ім'я The smart group name field is empty. Kindly provide a name - + Не вказано ім'я "розумної" групи. Будь ласка, задайте ім'я @@ -40617,29 +41800,29 @@ The error was: - - + + to vertex до вузлів - - + + to segment до сегментів - + to vertex and segment до вузлів та сегментів - + map units одиниці карти - + pixels пікселі @@ -40652,40 +41835,45 @@ The error was: Параметри притягування - + Enable topological editing Включити топологічне редагування - + Layer Шар - + Mode Режим - + Tolerance Радіус - + Units Одиниці - + Avoid Int. - + Avoid intersections of new polygons + + + Enable snapping on intersection + + QgsSpatiaLiteConnection @@ -40694,7 +41882,7 @@ The error was: unknown error cause - + причину помилки не виявлено @@ -40728,24 +41916,24 @@ The error was: - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + SQLite error: %2 SQL: %1 @@ -40760,19 +41948,19 @@ SQL: %1 - - - - - - - - - - - - - + + + + + + + + + + + + + SpatiaLite @@ -40780,12 +41968,12 @@ SQL: %1 - - - - - - + + + + + + unknown cause @@ -40795,7 +41983,7 @@ SQL: %1 - + FAILURE: Field %1 not found. @@ -41049,8 +42237,6 @@ SQL: %1 selected geometries - - @@ -41384,7 +42570,7 @@ p, li { white-space: pre-wrap; } Query not executed - + Запит не виконано @@ -41904,7 +43090,7 @@ Do you want to overwrite the [%2] relation? &Spit - &SPIT + &SPIT @@ -41912,12 +43098,12 @@ Do you want to overwrite the [%2] relation? QGIS Sponsors - + Спонсори QGIS TextLabel - + @@ -41945,7 +43131,30 @@ p, li { white-space: pre-wrap; } <p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.gfosservices.com"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Studio Associato Gfosservices</span></a></p> <p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://nextgis.org"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">NEXTGIS</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:14pt; font-weight:600;"></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">GIS стає краще з кожним днем завдяки зусиллям активної команди розробників. Нам подобається, що кількість користувачів нащого продукту постійно зростає. Ви можете вільно копіювати Quantum GIS та ділитися нею з вашими друзями та колегами. Якщо QGIS допомогає вам скоротити витрати і ви маєте кошти для допомоги проекту, підтримайте розробку Quantum GIS. Ми використовуємо спонсорську допомогу для покриття транспортних та інших витрат під час зустрічей розробників та фінансування інших аспектів проекту. Детальніше про це можна дізнатися на сторінці </span><a href="http://qgis.org/en/sponsorship.html"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">Спонсорування QGIS</span></a><span style=" font-size:10pt;">. В цьому списку наведено людей та організації, які підтримують нас. Велике спасибі всім вам!</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">2011</span></p> +<hr /> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">Срібні спонсори</span></p> +<p align="center" style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.vorarlberg.at"><span style=" font-family:'Courier New,courier'; font-size:10pt; text-decoration: underline; color:#0000ff;">State of Vorarlberg</span></a><span style=" font-family:'Courier New,courier'; font-size:10pt;"> </span><span style=" font-family:'Courier New,courier'; font-size:10pt; color:#333333;">, Austria (11.2011)</span></p> +<p align="center" style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.agi.so.ch"><span style=" font-family:'Courier New,courier'; font-size:10pt; text-decoration: underline; color:#0000ff;">Kanton Solothurn</span></a><span style=" font-family:'Courier New,courier'; font-size:10pt; color:#333333;">, Switzerland (4.2011)</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Бронзові спонсори</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://gis.uster.ch/"><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; text-decoration: underline; color:#0000ff;">City of Uster</span></a><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; color:#0000ff;"> </span><span style=" font-family:'Helvetica,Arial,sans-serif'; font-size:10pt; color:#000000;">, Switzerland</span><span style=" font-family:'Helvetica,Arial,sans-serif'; color:#000000;"> (11.2011)</span></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.municipia.pt"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Municípia, SA</span></a></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">2010</span></p> +<hr /> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Бронзові спонсори</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.gfosservices.com"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">Studio Associato Gfosservices</span></a></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://nextgis.org"><span style=" font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;">NEXTGIS</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:14pt; font-weight:600;"></p></body></html> @@ -42440,72 +43649,72 @@ Overwrite? - - + + Invalid Selection - + The parent group you have selected is not user editable. Kindly select a user defined group. - + Operation Not Allowed - + Creation of nested smart groups are not allowed Select the 'Smart Group' to create a new group. - + Invalid selection - + Cannot delete system defined categories. Kindly select a group or smart group you might want to delete. - + Error! - + New group could not be created. There was a problem with your symbol database. - + Database Error Помилка БД - + There was a problem with the Symbols database while regrouping. - + You have not selected a Smart Group. Kindly select a Smart Group to edit. - + Database Error! - + There was some error while editing the smart group. @@ -42584,17 +43793,30 @@ There was a problem with your symbol database. Видалити + + QgsSvgAnnotationDialog + + + Delete + Видалити + + + + html + + + QgsSvgMarkerSymbolLayerV2Widget - + Select SVG file - + Виберіть SVG файл - + SVG files - + Файли SVG @@ -42620,7 +43842,7 @@ There was a problem with your symbol database. Define the order in which the symbol layers are rendered. The numbers in the cells define in which rendering pass the layer will be drawn. - + Вкажіть порядок відображення шарів для цього умовного знаку. Номери в таблиці визначають послідовність відображення для кожного шару. @@ -42644,12 +43866,12 @@ There was a problem with your symbol database. Invalid Selection! - + Неправильний вибір! Kindly select a symbol to add layer. - + Будь ласка, виберіть символ, що буде додано до шару. @@ -42853,7 +44075,7 @@ There was a problem with your symbol database. Tile scale - Рівень деталізації + Рівень деталізації @@ -43034,12 +44256,12 @@ There was a problem with your symbol database. &Previous - + &Попередній &Next - + &Наступний @@ -43047,7 +44269,7 @@ There was a problem with your symbol database. QGIS Tips! - + Порада дня @@ -43056,12 +44278,12 @@ There was a problem with your symbol database. p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:10pt;">A nice tip goes here...</span></p></body></html> - + I've had enough tips, don't show this on start up any more! - + Не показувати поради наступного разу @@ -43528,42 +44750,52 @@ Should the existing classes be deleted before classification? QgsVectorLayer - + + Updating feature count for layer %1 + + + + + Abort + + + + Unknown renderer Невідомий об'єкт викреслення - + No renderer object Відсутній об'єкт викреслення - + Classification field not found Поле класифікації не знайдено - + renderer failed to save не вдалося зберегти об'єкт викреслення - + no renderer Відсутній об'єкт викреслення - + ERROR: no provider ПОМИЛКА: джерело відсутнє - + ERROR: layer not editable ПОМИЛКА: шар не редагується - + SUCCESS: %n attribute(s) deleted. deleted attributes count @@ -43573,7 +44805,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n attribute(s) not deleted. not deleted attributes count @@ -43583,7 +44815,7 @@ Should the existing classes be deleted before classification? - + SUCCESS: %n attribute(s) added. added attributes count @@ -43593,7 +44825,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n new attribute(s) not added not added attributes count @@ -43603,17 +44835,17 @@ Should the existing classes be deleted before classification? - + SUCCESS: attribute %1 was added. УСПІХ: додано атрибут %1. - + ERROR: attribute %1 not added ПОМИЛКА: атрибут %1 не був доданий - + SUCCESS: %n attribute value(s) changed. changed attribute values count @@ -43623,7 +44855,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n attribute value change(s) not applied. not changed attribute values count @@ -43633,7 +44865,7 @@ Should the existing classes be deleted before classification? - + SUCCESS: %n feature(s) added. added features count @@ -43643,7 +44875,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n feature(s) not added. not added features count @@ -43653,17 +44885,15 @@ Should the existing classes be deleted before classification? - + ERROR: %n feature(s) not added - provider doesn't support adding features. not added features count - - - + SUCCESS: %n geometries were changed. changed geometries count @@ -43673,7 +44903,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n geometries not changed. not changed geometries count @@ -43683,7 +44913,7 @@ Should the existing classes be deleted before classification? - + SUCCESS: %n feature(s) deleted. deleted features count @@ -43693,7 +44923,7 @@ Should the existing classes be deleted before classification? - + ERROR: %n feature(s) not deleted. not deleted features count @@ -43703,121 +44933,121 @@ Should the existing classes be deleted before classification? - + Provider errors: - + Commit errors: %1 - + General: - + Layer comment: %1 - + Storage type of this layer: %1 - + Source for this layer: %1 - + Geometry type of the features in this layer: %1 - + The number of features in this layer: %1 - + Editing capabilities of this layer: %1 - + Extents: Межі: - + In layer spatial reference system units : - - + + xMin,yMin %1,%2 : xMax,yMax %3,%4 - + unknown extent - - + + In project spatial reference system units : - + Layer Spatial Reference System: - + Project (Output) Spatial Reference System: - + (Invalid transformation of layer extents) - + Attribute field info: - + Field - + Type Тип - + Length Довжина - + Precision Точність - + Comment Коментар @@ -43829,167 +45059,110 @@ Should the existing classes be deleted before classification? довжина - - + + Stop editing mode to enable this. - - Name conflict - - - - - The attribute could not be inserted. The name already exists in the table. - - - - - Added attribute - - - - Deleted attribute - Видалено атрибут + Видалено атрибут - + Transparency: %1% Прозорість: %1% - - + + Single Symbol - - + + Graduated Symbol - - + + Continuous Color - - + + Unique Value - + Insert expression - + This button opens the query builder and allows you to create a subset of features to display on the map canvas rather than displaying all features in the layer - + The query used to limit the features in the layer is shown here. To enter or modify the query, click on the Query Builder button - Line edit - Лінійне редагування + Лінійне редагування - Unique values - Унікальні значення + Унікальні значення - - Unique values editable - - - - Classification - Класифікація + Класифікація - Value map - Карта значень - - - - Edit range - - - - - Slider range - - - - - Dial range - + Карта значень - File name - Ім'я файла + Ім'я файла - Enumeration - Перелік + Перелік - Immutable - Незмінний + Незмінний - Hidden - Прихований + Прихований - Checkbox - Перемикач + Перемикач - Text edit - Текстове поле + Текстове поле - Calendar - Календар - - - - Value relation - - - - - UUID generator - + Календар - + Save Style - + Save Style... @@ -44002,18 +45175,18 @@ Should the existing classes be deleted before classification? Одиниці карти - - + + Spatial Index - + Creation of spatial index successful - + Creation of spatial index failed @@ -44030,53 +45203,40 @@ Should the existing classes be deleted before classification? Лінія - Type - Тип + Тип - Overlay - Накладення + Накладення - Id - ID + ID - Name - Ім'я + Ім'я - Length - Довжина + Довжина - Precision - Точність + Точність - Comment - Коментар + Коментар - - Edit widget - - - - Alias - Псевдонім + Псевдонім - - + + Default Style Стиль за замовчуванням @@ -44089,17 +45249,12 @@ Should the existing classes be deleted before classification? Файл стиля QGIS (*.qml) - + Saved Style Збережений стиль - - Select edit form - - - - + Symbology Символіка @@ -44108,46 +45263,41 @@ Should the existing classes be deleted before classification? Зберегти налаштування шару у файл QML - + Layer Properties - %1 Властивості шара — %1 - + Load layer properties from style file - - - + + + QGIS Layer Style File - - - + + + SLD File - + Load Style - + Save layer properties as style file - - UI file - - - - + Do you wish to use the new symbology implementation for this layer? @@ -44185,7 +45335,7 @@ Should the existing classes be deleted before classification? - + General Загальні @@ -44205,7 +45355,7 @@ Should the existing classes be deleted before classification? Поля - + Options Параметри @@ -44214,48 +45364,37 @@ Should the existing classes be deleted before classification? І'мя в легенді - - Edit UI - - - - ... - ... + ... - + Create Spatial Index Створення просторового індекса - + CRS - - + + Specify the coordinate reference system of the layer's geometry. Вкажіть СК для геометрії цього шару. - + Specify CRS Вибрати - + Update Extents - - Init function - - - - + Use scale dependent rendering Використовувати підписування в масштабах @@ -44268,102 +45407,102 @@ Should the existing classes be deleted before classification? Мінімум - + Subset - + Query Builder Конструктор запитів - + Provider-specific options - + Encoding Кодування - + Display - + Legend display text - + Map Tip display text - + Inserts an expression into the action - + Insert expression... - + The valid attribute names for this layer Допустимі імена атрибутів для цього шару - + Inserts the selected field into the action - + Insert field Вставити поле - + HTML - + Field - + Title Заголовок - + Abstract Опис - + Joins - + Join layer - + Join field Поле для об'єднання - + Target field Цільове поле @@ -44386,7 +45525,39 @@ Should the existing classes be deleted before classification? Прозорість - + + + Maximum scale (minimum scale denominator). + + + + + Minimum scale: + + + + + Minimum scale denominator. + + + + + Maximum scale: + + + + + Minimum scale (maximum scale denominator). + + + + + + Set current + + + + Metadata Метадані @@ -44401,22 +45572,12 @@ Should the existing classes be deleted before classification? - - Less than: - - - - - More than or equal to: - - - - + Actions - + Diagrams @@ -44493,75 +45654,62 @@ Should the existing classes be deleted before classification? Колір - New column - Новий стовпець + Новий стовпець - Ctrl+N - Ctrl+N + Ctrl+N - Delete column - Видалити стовпець + Видалити стовпець - Ctrl+X - Ctrl+X + Ctrl+X - Toggle editing mode - Режим редагування + Режим редагування - - Click to toggle table editing - Клацніть для переключення редагування таблиці + Клацніть для переключення редагування таблиці - Field calculator - Калькулятор полів + Калькулятор полів QgsVectorLayerSaveAsDialog - - - SpatiaLite - - Original CRS Оригінальна СК - + Layer CRS - + Project CRS - + Selected CRS - + Save layer as... Зберегти шар як... - + Select the coordinate reference system for the vector file. The data points will be transformed from the layer coordinate reference system. Виберіть систему координат для створюваного файлу. Вершини в новому шарі будуть перетворені у неї з поточної системи координат. @@ -44682,12 +45830,12 @@ Should the existing classes be deleted before classification? Edit... - Змінити... + Змінити... Delete - Видалити + Видалити @@ -44695,7 +45843,7 @@ Should the existing classes be deleted before classification? New Connection... - + Нове підключення... @@ -44703,12 +45851,12 @@ Should the existing classes be deleted before classification? Select a layer - Виберіть шар + Виберіть шар No CRS selected - + Не вибрано систему координат @@ -44716,17 +45864,17 @@ Should the existing classes be deleted before classification? Edit... - Змінити... + Змінити... Delete - Видалити + Видалити Modify WFS connection - Змінити параметри WFS підключення + Змінити параметри WFS підключення @@ -44744,7 +45892,8 @@ Should the existing classes be deleted before classification? Loading WFS data %1 - + Завантажуються дані WFS +%1 @@ -44757,17 +45906,17 @@ Should the existing classes be deleted before classification? QgsWFSProvider - + unknown невідомий - + received %1 bytes from %2 отримано %1 байт від %2 - + Error Помилка @@ -44777,12 +45926,12 @@ Should the existing classes be deleted before classification? New Connection... - + Нове підключення... Create a new WFS connection - Створити нове WFS пыдключення + Створити нове WFS підключення @@ -44952,30 +46101,24 @@ Features QgsWKNDiagramFactoryWidgetBase - Form - Форма + Форма - Attributes - Атрибути + Атрибути - Add - Додати + Додати - Remove - Видалити + Видалити - - 1 - 1 + 1 @@ -44983,7 +46126,7 @@ Features WMS Password for %1 - + Пароль WMS для %1 @@ -44991,12 +46134,12 @@ Features Edit... - Змінити... + Змінити... Delete - Видалити + Видалити @@ -45004,7 +46147,7 @@ Features New Connection... - + Нове підключення... @@ -45068,8 +46211,6 @@ Features crs count - - @@ -45083,8 +46224,6 @@ Features crs count - - @@ -45118,8 +46257,6 @@ Features selected layer count - - @@ -45471,148 +46608,147 @@ Response was: QgsWcsProvider - + Cannot describe coverage - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - + + WCS - + Coverage not found - + Cannot calculate extent - + Cannot get test dataset. - + Received coverage has wrong extent %1 (expected %2) - + Rotating raster - + Block read OK - + Received coverage has wrong size %1 x %2 (expected %3 x %4) - + Getting map via WCS. - + Map request error (Status: %1; Reason phrase: %2; URL:%3) - - + Map request error (Title:%1; Error:%2; URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) - + + Map request error:<br>Title: %1<br>Error: %2<br>URL: <a href='%3'>%3</a>) + + + + Cannot find boundary in multipart content type - + Expected 2 parts, %1 received - + More than 2 parts (%1) received - + Map request error (Response: %1; URL:%2) - + Content-Transfer-Encoding %1 not supported - + No data received - + Cannot create memory file - + Map request failed [error:%1 url:%2] - + Not logging more than 100 request errors. - + %1 of %2 bytes of map downloaded. - + Dom Exception - + Could not get WCS Service Exception at %1: %2 at line %3 column %4 Response was: @@ -45621,210 +46757,208 @@ Response was: - + Request contains a format not offered by the server. - + Request is for a Coverage not offered by the service instance. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. - + Request does not include a parameter value, and the server instance did not declare a default value for that dimension. - + Request contains an invalid parameter value. - + No other exceptionCode specified by this service and server applies to this exception. - + Operation request contains an output CRS that can not be used within the output format. - + Operation request specifies to "store" the result, but not enough storage is available to do this. - + (No error code was reported) - + (Unknown error code) - + The WCS vendor also reported: - + composed error message '%1'. - - + + Property - - + + Value - + Name (identifier) - - + + Title Заголовок - - + + Abstract Опис - + Fixed Width - + Fixed Height - + Native CRS - + Native Bounding Box - + WGS 84 Bounding Box - - + + Available in CRS - - + + (and %n more) crs - - - - + + Available in format - - + + Coverages - + Cache Stats - + Server Properties - + Keywords - + Online Resource - + Contact Person - + Fees - + Access Constraints - + Image Formats - + GetCapabilitiesUrl - + Get Coverage Url - + &nbsp;<font color="red">(advertised but ignored)</font> - + And %1 more coverages @@ -45832,478 +46966,503 @@ Response was: QgsWmsProvider - - + + %n tile requests in background tile request count - - - - + + , %n cache hits tile cache hits - - - - + + , %n cache misses. tile cache missed - - - - + + , %n errors. errors - - - + Tile request error (Title:%1; Error:%2; URL: %3) - + Tile request error (Status:%1; Content-Type:%2; Length:%3; URL: %4) - + Tile request failed [error:%1 url:%2] - - + + Not logging more than 100 request errors. - + Map request error (Status: %1; Reason phrase: %2; URL:%3) - + Map request error (Title:%1; Error:%2; URL: %3) - + Map request error (Status: %1; Response: %2; URL:%3) - + Map request failed [error:%1 url:%2] - + Tried URL: %1 - + Capabilities request redirected. - + empty of capabilities: %1 - + Download of capabilities failed: %1 - + %1 of %2 bytes of capabilities downloaded. - + %1 of %2 bytes of map downloaded. - - - + + + Dom Exception - + Request contains a CRS not offered by the server for one or more of the Layers in the request. - + Request contains a SRS not offered by the server for one or more of the Layers in the request. - + GetMap request is for a Layer not offered by the server, or GetFeatureInfo request is for a Layer not shown on the map. - + Request is for a Layer in a Style not offered by the server. - + GetFeatureInfo request is applied to a Layer which is not declared queryable. - + GetFeatureInfo request contains invalid X or Y value. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is equal to current value of service metadata update sequence number. - + Value of (optional) UpdateSequence parameter in GetCapabilities request is greater than current value of service metadata update sequence number. - + Request does not include a sample dimension value, and the server did not declare a default value for that dimension. - + Request contains an invalid sample dimension value. - + Request is for an optional operation that is not supported by the server. - + (No error code was reported) - + (Unknown error code) - + The WMS vendor also reported: - + + Extent for layer %1 not found in capabilities + + + + Tile Layer Properties - + Tile Layer Count - + GetTileUrl - + Tile templates - + FeatureInfo templates - + WMTS - + WMS-C - + Available Styles - + Available Tilesets - + Cache stats - - - - + + + + Property - - - - + + + + Value Значення - + WMS Version - - - + + + Title Заголовок - - - + + + Abstract Опис - + (and %n more) crs - - - - + + Server Properties - - + + Selected Layers - - + + Other Layers - + Tileset Properties - + Cache Stats - + Number of layers and styles don't match - + Getting tiles. - + Keywords - + Online Resource - + Contact Person - + Fees - + Access Constraints - + Image Formats - + Identify Formats - + Layer Count - + GetCapabilitiesUrl - + GetMapUrl - - + + &nbsp;<font color="red">(advertised but ignored)</font> - + GetFeatureInfoUrl - + Selected - - - - + + + + Yes - - - - + + + + No - + Visibility - - - - - - - - - - - - - - - - - + + Cannot parse URI + + + + + Cannot calculate extent + + + + + Cannot set CRS + + + + + + + + + + + + + + + + + + + + WMS WMS - + + Number of tile layers must be one + + + + + Tile layer not found + + + + + Tile layer or tile matrix set not found + + + + Getting map via WMS. - + image is NULL - + unexpected image size - + Tile request error - + Status: %1 Reason phrase: %2 - - + + Returned image is flawed [%1] - + empty capabilities document - + Could not get WMS capabilities: %1 at line %2 column %3 This is probably due to an incorrect WMS Server URL. Response was: @@ -46312,7 +47471,7 @@ Response was: - + Could not get WMS capabilities in the expected format (DTD): no %1 or %2 found. This might be due to an incorrect WMS Server URL. Tag:%3 @@ -46321,7 +47480,7 @@ Response was: - + Could not get WMS Service Exception at %1: %2 at line %3 column %4 Response was: @@ -46330,129 +47489,119 @@ Response was: - + Request contains a format not offered by the server. - + composed error message '%1'. - + Visible - + Hidden Прихований - + Can Identify - + Can be Transparent - + Can Zoom In - + Cascade Count - + Fixed Width - + Fixed Height - + WGS 84 Bounding Box - - + + Available in CRS - + Available in style - + Map getfeatureinfo error %1: %2 - + ERROR: GetFeatureInfo failed - + Map getfeatureinfo error: %1 [%2] - - + + Name Ім'я - + CRS - + Bounding Box - + Hits - + Misses - + Errors - - Layer cannot be queried in plain text. - - - - - Layer cannot be queried. - - - - + identify request redirected. @@ -46491,22 +47640,22 @@ Response was: Dialog - Діалог + Raster layer: - + Растровий шар: Polygon layer containing the zones: - + Полігональний шар зон: Output column prefix: - + Префікс поля статистики: @@ -46516,17 +47665,17 @@ Response was: &Zonal statistics - + &Зональна статистика Calculating zonal statistics... - + Розрахунок зональної статистики... Abort... - Відмінити... + Відмінити... @@ -46608,17 +47757,17 @@ Response was: Export feature - + Експортувати об'єкт Select destination layer - + Виберіть шар призначення New temporary layer - + Новий тимчасовий шар @@ -46867,18 +48016,18 @@ Response was: Settings - Установки + Настройки Road graph plugin settings - + Параметри модуля RoadGraph Road graph - + Close @@ -46892,15 +48041,15 @@ Response was: Аналіз - &SEXTANTE Toolbox + &SEXTANTE toolbox - &SEXTANTE Modeler + &SEXTANTE modeler - &SEXTANTE History and log + &SEXTANTE history and log @@ -46915,10 +48064,6 @@ Response was: &SEXTANTE help - - &About SEXTANTE - - SaDbTableModel @@ -47477,6 +48622,34 @@ Description: %3 + + SettingsDialog + + + Font + Шрифт + + + + Size + Розмір + + + + API file + + + + + Browse + Огляд + + + + Use preloaded API file + + + SextanteToolbox @@ -47532,22 +48705,22 @@ additional algorithm providers Add SQL Anywhere Layer... - + Додати шарSQL Anywhere... Store vector layers within a SQL Anywhere database - + Робота з векторними даними в БД SQL Anywhere Invalid Layer - Недійсний шар + Недійсний шар %1 is an invalid layer and cannot be loaded. - Шар %1 не дійсний і не може бути завантаженим. + Шар %1 не дійсний і не може бути завантаженим. @@ -47757,7 +48930,7 @@ additional algorithm providers Form - + Marker @@ -47845,37 +49018,37 @@ additional algorithm providers - + Font family Шрифт - + Color Колір - + Change Змінити - + Size Розмір - + Rotation Обертання - + ° - + Offset X,Y @@ -47888,19 +49061,19 @@ additional algorithm providers Форма - + Color Колір - + Change Змінити - + Pen width - Товщина лінії + Товщина лінії @@ -47911,38 +49084,36 @@ additional algorithm providers - + Angle Кут - + Distance - + Line width - + Color Колір - - + Change Змінити - Outline - Контур + Контур - + Offset Зміщення @@ -48023,22 +49194,22 @@ additional algorithm providers Змінити - + Horizontal distance - + Vertical distance - + Horizontal displacement - + Vertical displacement @@ -48051,54 +49222,52 @@ additional algorithm providers - + Texture width Ширина текстури - + Rotation Обертання - + Color Колір - + Border color Колір обвідки - + Border width Товщина обвідки - Outline - Контур + Контур - - - + + Change Змінити - + SVG Groups - + SVG Symbols - + ... ... @@ -48111,38 +49280,38 @@ additional algorithm providers - + Color Колір - + Fill style Стиль заливки - + Border color Колір обвідки - + Border style Стиль обвідки - + Border width Товщина обвідки - + Offset X,Y Зміщення по X, Y - - + + Change Змінити @@ -48155,43 +49324,43 @@ additional algorithm providers - + Color Колір - + Pen width Товщина лінії - + Offset Зміщення - + Pen style Стиль лінії - + Join style Стиль об'єднання - + Cap style Кінці - - + + Change Змінити - + Use custom dash pattern Користувальницький пунктир @@ -48204,33 +49373,33 @@ additional algorithm providers - + Border color Колір обвідки - + Fill color Колір заливки - + Size Розмір - + Angle Кут - + Offset X,Y Зміщення по X,Y - - + + Change Змінити @@ -48248,48 +49417,48 @@ additional algorithm providers Розмір - + Angle Кут - + Offset X,Y Зміщення по X,Y - - + + Change Змінити - + Color Колір - + Border width Товщина обвідки - + Border color Колір обвідки - + SVG Groups - + SVG Image SVG-зображення - + ... ... @@ -49440,6 +50609,10 @@ Plugin will not be enabled. Difference Різниця + + Eliminate sliver polygons + + G&eometry Tools І&нструменти геометрії diff --git a/images/console/iconCodepadConsole.png b/images/console/iconCodepadConsole.png new file mode 100644 index 000000000000..fcb1e1ef1f0b Binary files /dev/null and b/images/console/iconCodepadConsole.png differ diff --git a/images/console/iconHideToolConsole.png b/images/console/iconHideToolConsole.png new file mode 100644 index 000000000000..84e24de9f0e1 Binary files /dev/null and b/images/console/iconHideToolConsole.png differ diff --git a/images/console/imgHelpConsole.png b/images/console/imgHelpConsole.png new file mode 100644 index 000000000000..7ac3dbc69e6c Binary files /dev/null and b/images/console/imgHelpConsole.png differ diff --git a/images/console/imgHelpMenu.png b/images/console/imgHelpMenu.png new file mode 100644 index 000000000000..6d5f4abf0c06 Binary files /dev/null and b/images/console/imgHelpMenu.png differ diff --git a/images/developers/essen-2012.jpg b/images/developers/essen-2012.jpg new file mode 100644 index 000000000000..97ba6830b142 Binary files /dev/null and b/images/developers/essen-2012.jpg differ diff --git a/images/flags/eu_ES.png b/images/flags/eu_ES.png new file mode 100644 index 000000000000..241c4139281b Binary files /dev/null and b/images/flags/eu_ES.png differ diff --git a/images/flags/sw.png b/images/flags/sw.png new file mode 100755 index 000000000000..c00ff7961424 Binary files /dev/null and b/images/flags/sw.png differ diff --git a/images/images.qrc b/images/images.qrc index 0b9a872f9d08..b0da10656968 100644 --- a/images/images.qrc +++ b/images/images.qrc @@ -1,7 +1,7 @@ - developers/lyon-2012.jpg icons/qgis-icon-16x16.png + developers/essen-2012.jpg icons/qgis-icon-60x60.png north_arrows/gpsarrow2.svg north_arrows/gpsarrow.svg @@ -20,6 +20,7 @@ themes/default/join_miter.png themes/default/join_round.png themes/default/join_style.svg + themes/default/mActionAdd.png themes/default/mActionAddAllToOverview.png themes/default/mActionAddArrow.png themes/default/mActionAddBasicShape.png @@ -45,6 +46,8 @@ themes/default/mActionAnnotation.png themes/default/mActionArrowDown.png themes/default/mActionArrowUp.png + themes/default/mActionArrowLeft.png + themes/default/mActionArrowRight.png themes/default/mActionCalculateField.png themes/default/mActionCaptureLine.png themes/default/mActionCapturePoint.png @@ -76,6 +79,7 @@ themes/default/mActionFileSaveAs.png themes/default/mActionFileSave.png themes/default/mActionFileSmall.png + themes/default/mActionFilter.png themes/default/mActionFolder.png themes/default/mActionFormAnnotation.png themes/default/mActionFromSelectedFeature.png @@ -126,6 +130,7 @@ themes/default/mActionPropertyItem.png themes/default/mActionQgisHomePage.png themes/default/mActionRaiseItems.png + themes/default/mActionRefresh.png themes/default/mActionRedo.png themes/default/mActionRemoveAllFromOverview.png themes/default/mActionRemoveLayer.png @@ -138,6 +143,7 @@ themes/default/mActionSaveAsPDF.png themes/default/mActionSaveAsSVG.png themes/default/mActionSaveEdits.png + themes/default/mActionSaveAllEdits.png themes/default/mActionSaveMapAsImage.png themes/default/mActionScaleBar.png themes/default/mActionSelectedToTop.png @@ -148,6 +154,8 @@ themes/default/mActionSelectPolygon.svg themes/default/mActionSelectRadius.png themes/default/mActionSelectRectangle.png + themes/default/mActionSignPlus.png + themes/default/mActionSignMinus.png themes/default/mActionShowAllLayers.png themes/default/mActionShowBookmarks.png themes/default/mActionShowHideLabels.svg @@ -156,6 +164,7 @@ themes/default/mActionSimplify.png themes/default/mActionSplitFeatures.png themes/default/mActionSplitFeatures.svg + themes/default/mActionSum.png themes/default/mActionTextAnnotation.png themes/default/mActionToggleEditing.png themes/default/mActionUndo.png @@ -172,9 +181,11 @@ themes/default/mIconClose.png themes/default/mIconCollapse.png themes/default/mIconConnect.png + themes/default/mIconClear.png themes/default/mIconDbSchema.png themes/default/mIconDelete.png themes/default/mIconEditable.png + themes/default/mIconEditableEdits.png themes/default/mIconExpand.png themes/default/mIconFavourites.png themes/default/mIconFirst.png @@ -341,6 +352,7 @@ themes/gis/mActionSaveAsPDF.png themes/gis/mActionSaveAsSVG.png themes/gis/mActionSaveEdits.png + themes/gis/mActionSaveAllEdits.png themes/gis/mActionSaveMapAsImage.png themes/gis/mActionScaleBar.png themes/gis/mActionSelectedToTop.png @@ -373,6 +385,7 @@ themes/gis/mActionZoomToSelected.png themes/gis/mIconClose.png themes/gis/mIconEditable.png + themes/gis/mIconEditableEdits.png themes/gis/mIconLineLayer.png themes/gis/mIconPointLayer.png themes/gis/mIconPolygonLayer.png @@ -478,9 +491,15 @@ console/iconQtCoreConsole.png console/iconQtGuiConsole.png console/iconRunConsole.png - console/iconAboutConsole.png + console/iconAboutConsole.png + console/iconCodepadConsole.png + console/imgHelpConsole.png + console/imgHelpMenu.png + console/iconHideToolConsole.png flags/sr_Cyrl.png flags/sr_Latn.png + flags/sw.png + flags/eu_ES.png qgis_tips/symbol_levels.png diff --git a/images/splash/splash.png b/images/splash/splash.png index 3b906be9880e..c55aa270af97 100644 Binary files a/images/splash/splash.png and b/images/splash/splash.png differ diff --git a/images/splash/splash.xcf.bz2 b/images/splash/splash.xcf.bz2 index 52f664910d06..a211da568bb9 100644 Binary files a/images/splash/splash.xcf.bz2 and b/images/splash/splash.xcf.bz2 differ diff --git a/images/themes/default/mActionAdd.png b/images/themes/default/mActionAdd.png new file mode 100644 index 000000000000..f8c09a63cbf3 Binary files /dev/null and b/images/themes/default/mActionAdd.png differ diff --git a/images/themes/default/mActionArrowLeft.png b/images/themes/default/mActionArrowLeft.png new file mode 100644 index 000000000000..4fe46614c703 Binary files /dev/null and b/images/themes/default/mActionArrowLeft.png differ diff --git a/images/themes/default/mActionArrowRight.png b/images/themes/default/mActionArrowRight.png new file mode 100644 index 000000000000..28a25b79711a Binary files /dev/null and b/images/themes/default/mActionArrowRight.png differ diff --git a/images/themes/default/mActionFilter.png b/images/themes/default/mActionFilter.png new file mode 100644 index 000000000000..ee62d49c7e7b Binary files /dev/null and b/images/themes/default/mActionFilter.png differ diff --git a/images/themes/default/mActionRefresh.png b/images/themes/default/mActionRefresh.png new file mode 100644 index 000000000000..d65c0b728b54 Binary files /dev/null and b/images/themes/default/mActionRefresh.png differ diff --git a/images/themes/default/mActionSaveAllEdits.png b/images/themes/default/mActionSaveAllEdits.png new file mode 100644 index 000000000000..cdb65671ee34 Binary files /dev/null and b/images/themes/default/mActionSaveAllEdits.png differ diff --git a/images/themes/default/mActionSignMinus.png b/images/themes/default/mActionSignMinus.png new file mode 100644 index 000000000000..bb16f03f6b6d Binary files /dev/null and b/images/themes/default/mActionSignMinus.png differ diff --git a/images/themes/default/mActionSignPlus.png b/images/themes/default/mActionSignPlus.png new file mode 100644 index 000000000000..e2823bac78a0 Binary files /dev/null and b/images/themes/default/mActionSignPlus.png differ diff --git a/images/themes/default/mActionSum.png b/images/themes/default/mActionSum.png new file mode 100644 index 000000000000..d4764bfc6883 Binary files /dev/null and b/images/themes/default/mActionSum.png differ diff --git a/images/themes/default/mIconClear.png b/images/themes/default/mIconClear.png new file mode 100644 index 000000000000..e6c8e8b9f341 Binary files /dev/null and b/images/themes/default/mIconClear.png differ diff --git a/images/themes/default/mIconEditableEdits.png b/images/themes/default/mIconEditableEdits.png new file mode 100644 index 000000000000..08de7115efc5 Binary files /dev/null and b/images/themes/default/mIconEditableEdits.png differ diff --git a/images/themes/gis/mActionSaveAllEdits.png b/images/themes/gis/mActionSaveAllEdits.png new file mode 100644 index 000000000000..cda3344d543c Binary files /dev/null and b/images/themes/gis/mActionSaveAllEdits.png differ diff --git a/images/themes/gis/mIconEditableEdits.png b/images/themes/gis/mIconEditableEdits.png new file mode 100644 index 000000000000..f694f33e6649 Binary files /dev/null and b/images/themes/gis/mIconEditableEdits.png differ diff --git a/mac/cmake/0qgis.cmake.in b/mac/cmake/0qgis.cmake.in index 1c4e3453a378..ae66f4839618 100644 --- a/mac/cmake/0qgis.cmake.in +++ b/mac/cmake/0qgis.cmake.in @@ -20,5 +20,9 @@ IF (@OSX_HAVE_LOADERPATH@) GET_INSTALL_NAME ("${QFWDIR}/${QL}.framework/${QL}" ${QL}.framework QQ) SET (QFW_CHG "${QQ}") UPDATEQGISPATHS ("${QFW_CHG}" ${QL}) + # change id of the framework + IF (NOT @QGIS_MACAPP_INSTALL_DEV@) + EXECUTE_PROCESS(COMMAND install_name_tool -id "${ATEXECUTABLE}/${QGIS_FW_SUBDIR}/${QL}.framework/${QL}" "${QFWDIR}/${QL}.framework/${QL}") + ENDIF () ENDFOREACH (QL) ENDIF (@OSX_HAVE_LOADERPATH@) diff --git a/ms-windows/osgeo4w/package-nightly.cmd b/ms-windows/osgeo4w/package-nightly.cmd index 08312956dfd3..f5c1f03f9c8d 100644 --- a/ms-windows/osgeo4w/package-nightly.cmd +++ b/ms-windows/osgeo4w/package-nightly.cmd @@ -13,7 +13,7 @@ REM * (at your option) any later version. * REM * * REM *************************************************************************** @echo off -set GRASS_VERSION=6.4.2 +set GRASS_VERSION=6.4.3RC1 set BUILDDIR=%CD%\build REM set BUILDDIR=%TEMP%\qgis_unstable diff --git a/ms-windows/osgeo4w/package.cmd b/ms-windows/osgeo4w/package.cmd index 4c21804a5682..a7e80e0bf583 100644 --- a/ms-windows/osgeo4w/package.cmd +++ b/ms-windows/osgeo4w/package.cmd @@ -13,7 +13,7 @@ REM * (at your option) any later version. * REM * * REM *************************************************************************** @echo off -set GRASS_VERSION=6.4.2 +set GRASS_VERSION=6.4.3RC1 set BUILDDIR=%CD%\build REM set BUILDDIR=%TEMP%\qgis_unstable diff --git a/ms-windows/osgeo4w/postinstall-common.bat b/ms-windows/osgeo4w/postinstall-common.bat index d62113e52dbf..3dd0e971861c 100755 --- a/ms-windows/osgeo4w/postinstall-common.bat +++ b/ms-windows/osgeo4w/postinstall-common.bat @@ -1,4 +1,4 @@ call "%OSGEO4W_ROOT%"\bin\o4w_env.bat path %PATH%;%OSGEO4W_ROOT%\apps\@package@\bin set QGIS_PREFIX_PATH=%OSGEO4W_ROOT:\=/%/apps/@package@ -%OSGEO4W_ROOT%\apps\@package@\crssync +"%OSGEO4W_ROOT%"\apps\@package@\crssync diff --git a/ms-windows/osgeo4w/postinstall-dev.bat b/ms-windows/osgeo4w/postinstall-dev.bat index d8d47e0d8369..17a251bdf355 100644 --- a/ms-windows/osgeo4w/postinstall-dev.bat +++ b/ms-windows/osgeo4w/postinstall-dev.bat @@ -18,4 +18,4 @@ set OSGEO4W_ROOT=%O4W_ROOT% call "%OSGEO4W_ROOT%"\bin\o4w_env.bat path %PATH%;%OSGEO4W_ROOT%\apps\@package@\bin set QGIS_PREFIX_PATH=%OSGEO4W_ROOT:\=/%/apps/@package@ -%OSGEO4W_ROOT%\apps\@package@\crssync +"%OSGEO4W_ROOT%"\apps\@package@\crssync diff --git a/ms-windows/osgeo4w/preremove-desktop.bat b/ms-windows/osgeo4w/preremove-desktop.bat index 246ed072ad0c..57c8b1741ef3 100644 --- a/ms-windows/osgeo4w/preremove-desktop.bat +++ b/ms-windows/osgeo4w/preremove-desktop.bat @@ -1,6 +1,6 @@ -del "%OSGEO4W_STARTMENU%\Quantum GIS (@version@).lnk" +del "%OSGEO4W_STARTMENU%\Quantum GIS Desktop (@version@).lnk" del "%OSGEO4W_STARTMENU%\Quantum GIS Browser (@version@).lnk" -del "%ALLUSERSPROFILE%\Desktop\Quantum GIS (@version@).lnk" +del "%ALLUSERSPROFILE%\Desktop\Quantum GIS Desktop (@version@).lnk" del "%ALLUSERSPROFILE%\Desktop\Quantum GIS Browser (@version@).lnk" del "%OSGEO4W_ROOT%"\bin\@package@.bat del "%OSGEO4W_ROOT%"\bin\@package@-browser.bat diff --git a/postinstall/CMakeLists.txt b/postinstall/CMakeLists.txt new file mode 100644 index 000000000000..3b3972aa767f --- /dev/null +++ b/postinstall/CMakeLists.txt @@ -0,0 +1,6 @@ + +# for included scripts that set policies +INSTALL (CODE "cmake_policy(SET CMP0011 NEW)") + +CONFIGURE_FILE("PostInstall.cmake.in" "PostInstall.cmake" @ONLY) +INSTALL(SCRIPT "${CMAKE_BINARY_DIR}/postinstall/PostInstall.cmake") diff --git a/postinstall/PostInstall.cmake.in b/postinstall/PostInstall.cmake.in new file mode 100644 index 000000000000..7d8be5ef1e61 --- /dev/null +++ b/postinstall/PostInstall.cmake.in @@ -0,0 +1,9 @@ + +# kill boolean warnings +CMAKE_POLICY(SET CMP0012 NEW) + +IF(@WITH_PY_COMPILE@) + MESSAGE(STATUS "Byte-compiling core Python utilities and plugins...") + # exclude Python 3 modules in PyQt4.uic package + EXECUTE_PROCESS(COMMAND @PYTHON_EXECUTABLE@ -m compileall -q -x ".*uic.port_v3.*" "@CMAKE_INSTALL_PREFIX@/@QGIS_DATA_DIR@/python") +ENDIF(@WITH_PY_COMPILE@) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index b8809519a87e..036fa9e132e3 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -15,36 +15,37 @@ IF (WITH_INTERNAL_SPATIALITE) ENDIF (WITH_INTERNAL_SPATIALITE) SET (QGIS_PYTHON_OUTPUT_DIRECTORY ${PYTHON_OUTPUT_DIRECTORY}/qgis) +FILE (MAKE_DIRECTORY ${QGIS_PYTHON_OUTPUT_DIRECTORY}) SET (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${QGIS_PYTHON_OUTPUT_DIRECTORY}) SET (CMAKE_LIBRARY_OUTPUT_DIRECTORY ${QGIS_PYTHON_OUTPUT_DIRECTORY}) INCLUDE_DIRECTORIES( - ${PYTHON_INCLUDE_PATH} - ${SIP_INCLUDE_DIR} - ${QT_QTCORE_INCLUDE_DIR} - ${QT_QTGUI_INCLUDE_DIR} - ${QT_QTNETWORK_INCLUDE_DIR} - ${QT_QTSVG_INCLUDE_DIR} - ${QT_QTXML_INCLUDE_DIR} - ${GDAL_INCLUDE_DIR} - ${GEOS_INCLUDE_DIR} - ${QWT_INCLUDE_DIR} - - ../src/core - ../src/core/pal - ../src/core/composer - ../src/core/diagram - ../src/core/gps - ../src/core/gps/qextserialport - ../src/core/raster - ../src/core/renderer - ../src/core/symbology - ../src/core/symbology-ng - - ../src/gui/raster - ../src/gui/attributetable - - ${CMAKE_BINARY_DIR} # qgsconfig.h, qgsversion.h + ${PYTHON_INCLUDE_PATH} + ${SIP_INCLUDE_DIR} + ${QT_QTCORE_INCLUDE_DIR} + ${QT_QTGUI_INCLUDE_DIR} + ${QT_QTNETWORK_INCLUDE_DIR} + ${QT_QTSVG_INCLUDE_DIR} + ${QT_QTXML_INCLUDE_DIR} + ${GDAL_INCLUDE_DIR} + ${GEOS_INCLUDE_DIR} + ${QWT_INCLUDE_DIR} + ${QEXTSERIALPORT_INCLUDE_DIR} + + ../src/core + ../src/core/pal + ../src/core/composer + ../src/core/diagram + ../src/core/gps + ../src/core/raster + ../src/core/renderer + ../src/core/symbology + ../src/core/symbology-ng + + ../src/gui/raster + ../src/gui/attributetable + + ${CMAKE_BINARY_DIR} # qgsconfig.h, qgsversion.h ) IF(NOT WITH_TOUCH) @@ -79,11 +80,11 @@ ADD_SIP_PYTHON_MODULE(qgis.core core/core.sip qgis_core) # additional gui includes INCLUDE_DIRECTORIES( - ../src/gui - ../src/gui/symbology-ng - ../src/plugins - ${CMAKE_BINARY_DIR}/src/gui - ${CMAKE_BINARY_DIR}/src/ui + ../src/gui + ../src/gui/symbology-ng + ../src/plugins + ${CMAKE_BINARY_DIR}/src/gui + ${CMAKE_BINARY_DIR}/src/ui ) # gui module @@ -94,22 +95,22 @@ ADD_SIP_PYTHON_MODULE(qgis.gui gui/gui.sip qgis_core qgis_gui) # additional analysis includes INCLUDE_DIRECTORIES( - ../src/analysis/vector - ../src/analysis/raster - ../src/analysis/network - ../src/analysis/interpolation - ${CMAKE_BINARY_DIR}/src/analysis/vector - ${CMAKE_BINARY_DIR}/src/analysis/network - ${CMAKE_BINARY_DIR}/src/analysis/raster - ${CMAKE_BINARY_DIR}/src/analysis/interpolation + ../src/analysis/vector + ../src/analysis/raster + ../src/analysis/network + ../src/analysis/interpolation + ${CMAKE_BINARY_DIR}/src/analysis/vector + ${CMAKE_BINARY_DIR}/src/analysis/network + ${CMAKE_BINARY_DIR}/src/analysis/raster + ${CMAKE_BINARY_DIR}/src/analysis/interpolation ) # analysis module FILE(GLOB sip_files_analysis - analysis/*.sip - analysis/raster/*.sip - analysis/vector/*.sip - analysis/interpolation/*.sip + analysis/*.sip + analysis/raster/*.sip + analysis/vector/*.sip + analysis/interpolation/*.sip ) SET(SIP_EXTRA_FILES_DEPEND ${sip_files_core} ${sip_files_analysis}) SET(SIP_EXTRA_OPTIONS ${PYQT4_SIP_FLAGS} -o -a ${CMAKE_BINARY_DIR}/python/qgis.analysis.api) @@ -139,33 +140,33 @@ IF(WITH_QSCIAPI) INSTALL(FILES ${QGIS_PYTHON_API_FILE} DESTINATION "${QGIS_DATA_DIR}/python/qsci_apis") ENDIF(WITH_QSCIAPI) -ADD_CUSTOM_TARGET(compile_python_files ALL) +# Plugin utilities files to copy to staging or install +SET(PY_FILES + __init__.py + utils.py +) -ADD_SUBDIRECTORY(console_help) +ADD_CUSTOM_TARGET(pyutils ALL) +INSTALL(FILES ${PY_FILES} DESTINATION "${QGIS_PYTHON_DIR}") -ADD_CUSTOM_COMMAND(TARGET compile_python_files - POST_BUILD - COMMAND ${CMAKE_COMMAND} -E make_directory ${QGIS_PYTHON_OUTPUT_DIRECTORY} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} -) +# stage to output to make available when QGIS is run from build directory +FOREACH(pyfile ${PY_FILES} ${PYUI_FILES}) + ADD_CUSTOM_COMMAND(TARGET pyutils + POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy ${pyfile} "${QGIS_PYTHON_OUTPUT_DIRECTORY}" + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + DEPENDS ${pyfile} + ) +ENDFOREACH(pyfile) + +ADD_SUBDIRECTORY(console) -FILE(GLOB UI_FILES *.ui) -PYQT4_WRAP_UI(PYUI_FILES ${UI_FILES}) -ADD_CUSTOM_TARGET(console ALL DEPENDS ${PYUI_FILES}) -INSTALL(FILES ${PYUI_FILES} DESTINATION ${QGIS_PYTHON_DIR}) - -FOREACH(file __init__.py utils.py console.py console_sci.py console_help.py console_settings.py) - ADD_CUSTOM_COMMAND(TARGET compile_python_files - POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy ${file} ${QGIS_PYTHON_OUTPUT_DIRECTORY} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - DEPENDS ${file} +# Byte-compile staged PyQGIS utilities +IF(WITH_PY_COMPILE) + ADD_CUSTOM_TARGET(pycompile_pyutils ALL + COMMAND ${PYTHON_EXECUTABLE} -m compileall -q "${PYTHON_OUTPUT_DIRECTORY}/qgis" + WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" + COMMENT "Byte-compiling staged PyQGIS utility modules..." + DEPENDS pyutils ) -ENDFOREACH(file) - -PYTHON_INSTALL(__init__.py ${QGIS_PYTHON_DIR}) -PYTHON_INSTALL(utils.py ${QGIS_PYTHON_DIR}) -PYTHON_INSTALL(console.py ${QGIS_PYTHON_DIR}) -PYTHON_INSTALL(console_sci.py ${QGIS_PYTHON_DIR}) -PYTHON_INSTALL(console_help.py ${QGIS_PYTHON_DIR}) -PYTHON_INSTALL(console_settings.py ${QGIS_PYTHON_DIR}) +ENDIF(WITH_PY_COMPILE) diff --git a/python/console/CMakeLists.txt b/python/console/CMakeLists.txt new file mode 100644 index 000000000000..352174922f96 --- /dev/null +++ b/python/console/CMakeLists.txt @@ -0,0 +1,30 @@ +ADD_SUBDIRECTORY(console_help) + +SET(PYTHON_OUTPUT_DIRECTORY ${QGIS_OUTPUT_DIRECTORY}/python) +SET(QGIS_PYTHON_DIR ${PYTHON_SITE_PACKAGES_DIR}/qgis) + +# PyQGIS console files to copy to staging or install +SET(PY_CONSOLE_FILES + console.py + console_sci.py + console_help.py + console_settings.py + console_output.py +) + +FILE(GLOB UI_FILES *.ui) +PYQT4_WRAP_UI(PYUI_FILES ${UI_FILES}) # returns absolute paths +ADD_CUSTOM_TARGET(pyconsole ALL DEPENDS ${PYUI_FILES}) + +# stage to output to make available when QGIS is run from build directory +FOREACH(pyfile ${PY_CONSOLE_FILES} ${PYUI_FILES}) + ADD_CUSTOM_COMMAND(TARGET pyconsole + POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy ${pyfile} "${QGIS_PYTHON_OUTPUT_DIRECTORY}" + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + DEPENDS ${pyfile} + ) +ENDFOREACH(pyfile) + +INSTALL(FILES ${PY_CONSOLE_FILES} ${PYUI_FILES} DESTINATION "${QGIS_PYTHON_DIR}") + diff --git a/python/console.py b/python/console/console.py similarity index 87% rename from python/console.py rename to python/console/console.py index 94f2eb1c7add..80247350121c 100755 --- a/python/console.py +++ b/python/console/console.py @@ -23,6 +23,7 @@ from PyQt4.QtGui import * from qgis.utils import iface from console_sci import PythonEdit +from console_output import EditorOutput from console_help import HelpDialog from console_settings import optionsDialog @@ -58,26 +59,12 @@ def console_displayhook(obj): global _console_output _console_output = obj -class QgisOutputCatcher: - def __init__(self): - self.data = '' - def write(self, stuff): - self.data += stuff - def get_and_clean_data(self): - tmp = self.data - self.data = '' - return tmp - def flush(self): - pass - -sys.stdout = QgisOutputCatcher() - class PythonConsole(QDockWidget): def __init__(self, parent=None): QDockWidget.__init__(self, parent) self.setObjectName("PythonConsole") self.setWindowTitle(QCoreApplication.translate("PythonConsole", "Python Console")) - #self.setAllowedAreas(Qt.BottomDockWidgetArea) + #self.setAllowedAreas(Qt.BottomDockWidgetArea) self.console = PythonConsoleWidget(self) self.setWidget( self.console ) @@ -92,18 +79,27 @@ def activate(self): self.raise_() QDockWidget.setFocus(self) + def closeEvent(self, event): + self.console.edit.writeHistoryFile() + QWidget.closeEvent(self, event) class PythonConsoleWidget(QWidget): def __init__(self, parent=None): QWidget.__init__(self, parent) self.setWindowTitle(QCoreApplication.translate("PythonConsole", "Python Console")) - self.widgetButton = QWidget() + #self.widgetEditors = QWidget() + self.options = optionsDialog(self) - + self.helpDlg = HelpDialog(self) + + self.splitter = QSplitter(self) + self.splitter.setOrientation(Qt.Vertical) + self.splitter.setHandleWidth(3) + self.splitter.setChildrenCollapsible(False) + self.toolBar = QToolBar() self.toolBar.setEnabled(True) - #self.toolBar.setFont(font) self.toolBar.setFocusPolicy(Qt.NoFocus) self.toolBar.setContextMenuPolicy(Qt.DefaultContextMenu) self.toolBar.setLayoutDirection(Qt.LeftToRight) @@ -111,16 +107,14 @@ def __init__(self, parent=None): self.toolBar.setOrientation(Qt.Vertical) self.toolBar.setMovable(True) self.toolBar.setFloatable(True) - #self.toolBar.setAllowedAreas(Qt.LeftToolBarArea) - #self.toolBar.setAllowedAreas(Qt.RightToolBarArea) - #self.toolBar.setObjectName(_fromUtf8("toolMappa")) - self.b = QVBoxLayout(self.widgetButton) - self.e = QHBoxLayout(self) + self.b = QGridLayout(self.widgetButton) + self.f = QGridLayout(self) - self.e.setMargin(0) - self.e.setSpacing(0) + self.f.setMargin(0) + self.f.setSpacing(0) self.b.setMargin(0) + self.b.setSpacing(0) ## Action for Clear button clearBt = QCoreApplication.translate("PythonConsole", "Clear console") @@ -267,13 +261,36 @@ def __init__(self, parent=None): sM.setPopupMode(QToolButton.InstantPopup) self.b.addWidget(self.toolBar) - self.edit = PythonEdit() - self.setFocusProxy( self.edit ) + self.edit = PythonEdit(self) + self.textEditOut = EditorOutput(self) + + self.setFocusProxy(self.edit) + + sizePolicy = QSizePolicy(QSizePolicy.Fixed, QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.widgetButton.sizePolicy().hasHeightForWidth()) + self.widgetButton.setSizePolicy(sizePolicy) + + self.splitter.addWidget(self.textEditOut) + self.splitter.addWidget(self.edit) - self.e.addWidget(self.widgetButton) - self.e.addWidget(self.edit) - - self.clearButton.triggered.connect(self.edit.clearConsole) + sizes = self.splitter.sizes() + self.splitter.setSizes(sizes) + + self.f.addWidget(self.widgetButton, 0, 0) + self.f.addWidget(self.splitter, 0, 1) + + sizePolicy = QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.textEditOut.sizePolicy().hasHeightForWidth()) + self.textEditOut.setSizePolicy(sizePolicy) + + self.textEditOut.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded) + self.edit.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded) + + self.clearButton.triggered.connect(self.textEditOut.clearConsole) self.optionsButton.triggered.connect(self.openSettings) self.loadIfaceButton.triggered.connect(self.iface) self.loadSextanteButton.triggered.connect(self.sextante) @@ -283,7 +300,7 @@ def __init__(self, parent=None): self.openFileButton.triggered.connect(self.openScriptFile) self.saveFileButton.triggered.connect(self.saveScriptFile) self.helpButton.triggered.connect(self.openHelp) - QObject.connect(self.options.buttonBox, SIGNAL("accepted()"), + QObject.connect(self.options.buttonBox, SIGNAL("accepted()"), self.prefChanged) def sextante(self): @@ -291,10 +308,10 @@ def sextante(self): def iface(self): self.edit.commandConsole('iface') - + def qtCore(self): self.edit.commandConsole('qtCore') - + def qtGui(self): self.edit.commandConsole('qtGui') @@ -326,7 +343,7 @@ def saveScriptFile(self): if not filename.endswith(".py"): fName += ".py" sF = open(fName,'w') - listText = self.edit.getTextFromEditor() + listText = self.textEditOut.getTextFromEditor() is_first_line = True for s in listText: if s[0:3] in (">>>", "..."): @@ -339,19 +356,15 @@ def saveScriptFile(self): sF.close() def openHelp(self): - dlg = HelpDialog() - dlg.exec_() - + self.helpDlg.show() + self.helpDlg.activateWindow() + def openSettings(self): - #options = optionsDialog() self.options.exec_() - + def prefChanged(self): self.edit.refreshLexerProperties() - - def closeEvent(self, event): - self.edit.writeHistoryFile() - QWidget.closeEvent(self, event) + self.textEditOut.refreshLexerProperties() if __name__ == '__main__': a = QApplication(sys.argv) diff --git a/python/console_help.py b/python/console/console_help.py similarity index 56% rename from python/console_help.py rename to python/console/console_help.py index b44d489339b0..93f677c5df6a 100644 --- a/python/console_help.py +++ b/python/console/console_help.py @@ -23,52 +23,32 @@ # This will get replaced with a git SHA1 when you do a git archive __revision__ = '$Format:%H$' -from PyQt4 import QtCore, QtGui, QtWebKit from PyQt4.QtCore import * from PyQt4.QtGui import * +from ui_console_help import Ui_Help from qgis.core import QgsApplication import os -class HelpDialog(QtGui.QDialog): +class HelpDialog(QDialog, Ui_Help): + def __init__(self, parent): + QDialog.__init__(self, parent) + self.setupUi(self) - def __init__(self): - QtGui.QDialog.__init__(self) - self.setModal(True) - self.setupUi() - - def setupUi(self): - self.setMaximumSize(500, 300) - self.webView = QtWebKit.QWebView() self.setWindowTitle(QCoreApplication.translate("PythonConsole","Help Python Console")) - self.verticalLayout= QtGui.QVBoxLayout() - self.verticalLayout.setSpacing(2) - self.verticalLayout.setMargin(0) - self.verticalLayout.addWidget(self.webView) - self.closeButton = QtGui.QPushButton() - self.closeButton.setText("Close") - self.closeButton.setMaximumWidth(150) - self.horizontalLayout= QtGui.QHBoxLayout() - self.horizontalLayout.setSpacing(2) - self.horizontalLayout.setMargin(0) - self.horizontalLayout.addStretch(1000) - self.horizontalLayout.addWidget(self.closeButton) - QObject.connect(self.closeButton, QtCore.SIGNAL("clicked()"), self.closeWindow) - self.verticalLayout.addLayout(self.horizontalLayout) - self.setLayout(self.verticalLayout) + self.setMaximumSize(530, 300) + qgisDataDir = QgsApplication.pkgDataPath() - listFile = os.listdir(qgisDataDir + "/python/console_help/i18n") + listFile = os.listdir(qgisDataDir + "/python/console/console_help/i18n") localeFullName = QSettings().value( "locale/userLocale", QVariant( "" ) ).toString() + locale = "en_US" for i in listFile: lang = i[0:5] if localeFullName in (lang[0:2], lang): locale = lang - - filename = qgisDataDir + "/python/console_help/help.htm? \ + + filename = qgisDataDir + "/python/console/console_help/help.htm? \ lang=" + locale \ + "&pkgDir=" + qgisDataDir - - url = QtCore.QUrl(filename) - self.webView.load(url) - def closeWindow(self): - self.close() + url = QUrl(filename) + self.webView.load(url) diff --git a/python/console/console_help.ui b/python/console/console_help.ui new file mode 100644 index 000000000000..7562bd58b729 --- /dev/null +++ b/python/console/console_help.ui @@ -0,0 +1,82 @@ + + + Help + + + + 0 + 0 + 555 + 363 + + + + Dialog + + + false + + + + 2 + + + 2 + + + 2 + + + 4 + + + 6 + + + + + + about:blank + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Close + + + + + + + + QWebView + QWidget +
QtWebKit/QWebView
+
+
+ + + + buttonBox + rejected() + Help + reject() + + + 259 + 310 + + + 259 + 163 + + + + +
diff --git a/python/console_help/CMakeLists.txt b/python/console/console_help/CMakeLists.txt similarity index 80% rename from python/console_help/CMakeLists.txt rename to python/console/console_help/CMakeLists.txt index bc2108be2915..1ef6389cffee 100644 --- a/python/console_help/CMakeLists.txt +++ b/python/console/console_help/CMakeLists.txt @@ -2,6 +2,6 @@ FILE(GLOB HTML_FILES *.htm) FILE(GLOB I18N_FILES i18n/*.properties) FILE(GLOB JS_FILES js/*.js) -INSTALL(FILES ${HTML_FILES} DESTINATION ${QGIS_DATA_DIR}/python/console_help) -INSTALL(FILES ${I18N_FILES} DESTINATION ${QGIS_DATA_DIR}/python/console_help/i18n) -INSTALL(FILES ${JS_FILES} DESTINATION ${QGIS_DATA_DIR}/python/console_help/js) +INSTALL(FILES ${HTML_FILES} DESTINATION ${QGIS_DATA_DIR}/python/console/console_help) +INSTALL(FILES ${I18N_FILES} DESTINATION ${QGIS_DATA_DIR}/python/console/console_help/i18n) +INSTALL(FILES ${JS_FILES} DESTINATION ${QGIS_DATA_DIR}/python/console/console_help/js) diff --git a/python/console_help/help.htm b/python/console/console_help/help.htm similarity index 73% rename from python/console_help/help.htm rename to python/console/console_help/help.htm index 993eada7eb65..a242176b18a7 100644 --- a/python/console_help/help.htm +++ b/python/console/console_help/help.htm @@ -1,5 +1,5 @@ - - + + Help Python Console @@ -8,18 +8,29 @@ @@ -29,22 +40,45 @@ -

Python Console for QGIS

+ Python Console for QGIS + + + + + + + + + + +
+

+ Python Console based on PyQScintilla2. +

+ To access Quantum GIS environment from this console + use qgis.utils.iface object (instance of QgisInterface class). + To import the class QgisInterface can also use the dedicated + button on the toolbar on the left. +

+
+

+ The console is splitted in two main panes, output and input areas. + Both are resizable by using the horizontal splitter. + Output area pane is a widget read-only which shows the commands output. + You can drag and drop or copy text into input area (no matter if selected text contains >>> or ...). + Use 'Share on codepad' from contextual menu for sharing snippets code. + The context menu looks like the image below.

+
+ Input area pane is the interactive python shell for input commands. +

+
-

- Python Console based on PyQScintilla2. -

- To access Quantum GIS environment from this console - use qgis.utils.iface object (instance of QgisInterface class). - To import the class QgisInterface can also use the dedicated - button on the toolbar on the left. -

@@ -86,7 +120,7 @@

Features

@@ -139,17 +173,6 @@

Toolbar

Run command (like Enter key pressed) -
- - - - - -

- Thanks to Larry Shaffer who provided the API files. -

- - - - - - - - - -
-
-
-
- -
-

Configuring external applications

-
-

Introduction

-

SEXTANTE can be extended using additional applications, calling them -from within SEXTANTE. Currently, SAGA, GRASS, OTB(Orfeo Toolbox) and R are supported, along -with some other command-line applications that provide spatial data -analysis functionalities. -This chapter will show you how to configure SEXTANTE to include these -additional applications. Once you have correctly configured the system, -you will be able to execute external algorithms from any SEXTANTE -component like the toolbox or the graphical modeler, just like you do -with any other SEXTANTE geoalgorithm.

-
-

A note on file formats

-

When using an external software, opening a file in QGIS does not mean -that it can be opened and processed as well on that other software. In -most cases, it can read what you have opened in QGIS, but in some cases, -that might not be the case. When using databases or uncommon file -formats, whether for raster of vector layers, problems might arise. If -that happens, try to use well known file formats that you are sure that -are understood by both programs, and check to console output (in the -history and log dialog) for knowing more about what is going wrong.

-

Using GRASS raster layers is, for instance, one case in which you might -have trouble and not be able to complete your work if you call an -external algorithm using such a layer as input. For this reason, these -layers will not appear as available to SEXTANTE algorithms (We are -currently working on solving this, and expect to have it ready soon).

-

You should, however, find no problems at all with vector layers, since -SEXTANTE automatically converts from the original file format to one -accepted by the external application before passing the layer to it. -This adds an extra processing time, which might be significant if the -layer has a large size, so do not be surprised if it takes more to -process a layer from a DB connection that one of a similar size stored -in a shapefile.

-

Providers not using external applications can process any layer that you -can open in QGIS, since they open it for analysis trough QGIS.

-

Regarding output formats, raster layers can be saved as TIFF (.tif) -files, while vector layers are saved as shapefiles (.shp). These have -been chosen as the lingua franca between supported third party -applications and QGIS. If the output filename that you select is not one -of the above, it will be modified, adding the corresponding suffix, and -the default file format will be used.

-

In the case of GDAL, the number of supported output formats is larger. -When you open the file selection dialog, you will see that you have more -formats (and their corresponding extensions available). For more -information about which formats are supported, check the GDAL -documentation.

-
-
-

A note on vector layer selections

-

By default, when an external algorithm takes a vector layer, it will use -all its features, even if a selection exist in QGIS. You can make an -external algorithm aware of that selection by checking the Use selected -features in external applications item in the General settings group. -When you do so, each time you execute an external algorithm that uses a -vector layer, the selected features of that layer will be exported to a -new layer, and the algorithm will work with that new layer instead.

-

Notice that if you select this option, a layer with no selection will -behave like a layer with all its features selected, not like an empty -layer.

-
-
-
-

SAGA

-

SAGA algorithms can be run from SEXTANTE if you have SAGA installed in -your system and you configure SEXTANTE properly so it can find SAGA -executables. In particular, the SAGA command–line executable is needed -to run SAGA algorithms. SAGA binaries are not included with SEXTANTE, so -you have to download and install the software yourself. Please check the -SAGA website at for more information. SAGA 2.0.8 is needed.

-

Once SAGA is installed, and if you are running Windows, open the -SEXTANTE configuration dialog. In the SAGA block you will find a -setting named SAGA Folder. Enter the path to the folder where SAGA is -installed. Close the configuration dialog and now you are ready to run -SAGA algorithms from SEXTANTE.

-

In case you are using Linux, there is no need to configure that, and you -will not see those folders. Instead, you must make sure that SAGA is -properly installed and its folder is added to the PATH environment -variable. Just open a console and type saga_cmd to check that the -system can found where SAGA binaries are located.

-

Notice that, ever before doing that, SAGA algorithms are shown in the -toolbox and you can open them to fill the corresponding parameters -dialog. However, if you try to run the algorithm after entering the -parameter values, SEXTANTE will show an error message. This is because -the algorithm descriptions (needed to create the parameters dialog and -give SEXTANTE the information it needs about the algorithm) are not -included with SAGA, but with SEXTANTE instead. That is, they are part of -SEXTANTE, so you have them in your installation even if you have not -installed SEXTANTE. Running the algorithm, however, needs SAGA binaries -installed in your system.

-
-

About SAGA grid system limitations

-

Most of SAGA algorithms that require several input raster layers, -require them to have the same grid system. That is, to cover the same -geographic area and have the same cellsize, so their corresponding grids -match. When calling SAGA algorithms from SEXTANTE, you can use any -layer, regardless of its cellsize and extent. When multiple raster layers -are used as input for a SAGA algorithm, SEXTANTE resamples them to a -common grid system and then passes them to SAGA (unless the SAGA -algorithm can operate with layers from different grid systems).

-

The definition of that common grid system is controlled by the user, and -you will find several parameters in the SAGA group of the setting window -to do so. There are two ways of setting the target grid system:

-
    -
  • Setting it manually

    -

    . You define the extent setting the values of the following -parameters:

    -
      -
    • Resampling min X
    • -
    • Resampling max X
    • -
    • Resampling min Y
    • -
    • Resampling max Y
    • -
    • Resampling cellsize
    • -
    -

    Notice that SEXTANTE will resample input layers to that extent, even -if they do not overlap with it.

    -
  • -
  • Setting it automatically from input layers. To select this option, -just check the ’’Use min covering grid system for resampling’’ -option. All the other settings will be ignored and the minimum extent -that covers all the input layers will be used. The cellsize of the -target layer is the maximum of all cellsizes of the input layers.

    -
  • -
-

For algorithms that do not use multiple raster layers, or for those that -do not need a unique input grid system, no resampling is performed -before calling SAGA, and those parameters are not used.

-
-
-
-

R. Creating R scripts

-

R integration in SEXTANTE is different from that of SAGA in that there -is not a predefined set of algorithms you can run (except for a few -examples). Instead, you should write your scripts and call R commands, -much like you would do from R, and in a very similar manner to what we -saw in the chapter dedicated to SEXTANTE scripts. This chapter shows you -the syntax to use to call those R commands from SEXTANTE and how to use -SEXTANTE objects (layers, tables) in them.

-

The first thing you have to do, as we saw in the case of SAGA, is to -tell SEXTANTE where you R binaries are located. You can do so using the -R folder entry in the SEXTANTE configuration dialog. Once you have set -that parameter, you can start creating your own R scripts and executing -them.

-

Once again, this is different in Linux, and you just have to make sure -that the R folder is included in the PATH environment variable. If you -can start R just typing R in a console, then you are ready to go.

-

To add a new algorithm that calls an R function (or a more complex R -script that you have developed and you would like to have available from -SEXTANTE), you have to create a script file that tells SEXTANTE how to -perform that operation and the corresponding R commands to do so.

-

Script files have the extension rsx and creating them is pretty easy -if you just have a basic knowledge of R syntax and R scripting. They -should be stored in the R scripts folder. You can set this folder in the -R settings group (available from the SEXTANTE settings dialog), just -like you do with the folder for regular SEXTANTE scripts.

-

Let’s have a look at a very simple file script file, which calls the R -method spsample to create a random grid within the boundary of the -polygons in a given polygon layer. This method belong to the -maptools package. Since almost all the algorithms that you might -like to incorporate into SEXTANTE will use or generate spatial data, -knowledge of spatial packages like maptools and, specially, sp, -is mandatory.

-
##polyg=vector
-##numpoints=number 10
-##output=output vector
-##sp=group
-pts=spsample(polyg,numpoints,type="random")
-output=SpatialPointsDataFrame(pts, as.data.frame(pts))
-
-

The first lines, which start with a double Python comment sign (##), -tell SEXTANTE the inputs of the algorithm described in the file and the -outputs that it will generate. They work exactly with the same syntax as -the SEXTANTE scripts that we have already seen, so they will not be -described here again. Check the corresponding section for more -information.

-

When you declare an input parameter, SEXTANTE uses that information for -two things: creating the user interface to ask the user for the value of -that parameter and creating a corresponding R variable that can be later -used as input for R commands

-

In the above example, we are declaring an input of type -vector named polyg. When executing the algorithm, -SEXTANTE will open in R the layer selected by the user and store it in a -variable also named polyg. So the name of a parameter is also the -name of the variable that we can use in R for accessing the value of that -parameter (thus, you should avoid using reserved R words as parameter -names).

-

Spatial elements such as vector and raster layers are read using the -readOGR() and readGDAL() commands (you do not have to worry -about adding those commands to your description file, SEXTANTE will do -it) and stored as Spatial*DataFrame objects. Table fields are stored -as strings containing the name of the selected field.

-

Tables are opened using the read.csv() command. If a table entered -by the user is not in CSV format, it will be converted prior to -importing it in R.

-

Knowing that, we can now understand the first line of our example script -(the first line not starting with a Python comment).

-
pts=spsample(polyg,numpoints,type="random")
-
-
-

The variable polygon already contains a SpatialPolygonsDataFrame -object, so it can be used to call the spsample method, just like the -numpoints one, which indicates the number of points to add to the -created sample grid.

-

Since we have declared an output of type vector named out, we have -to create a variable named out and store a Spatial*DataFrame -object in it (in this case, a SpatialPointsDataFrame). You can use -any name for your intermediate variables. Just make sure that the -variable storing your final result has the same name that you used to -declare it, and contains a suitable value.

-

In this case, the result obtained from the spsample method has to be -converted explicitly into a SpatialPointsDataFrame object, since it -is itself an object of class ppp, which is not a suitable class to -be retuned to SEXTANTE.

-

If you algorithm does not generate any layer, but a text result in the -console instead, you have to tell SEXTANTE that you want the console to -be shown once the execution is finished. To do so, just start the -command lines that produce the results you want to print with the -“ ->” sign. The output of all other lines will not be shown. For -instance, here is the description file of an algorithms that performs a -normality test on a given field (column) of the attributes of a vector -layer:

-
##layer=vector
-##field=field layer
-##nortest=group
-library(nortest)
->lillie.test(layer[[field]])
-
-

The output ot the last line is printed, but the output of the first is -not (and neither are the outputs from other command lines added -automatically by SEXTANTE).

-

If your algorithm creates any kind of graphics (using the plot() -method), add the following line:

-
##showplots
-
-
-

This will cause SEXTANTE to redirect all R graphical outputs to a -temporary file, which will be later opened once R execution has finished

-

Both graphics and console results will be shown in the SEXTANTE results -manager.

-

For more information, please check the script files provided with -SEXTANTE. Most of them are rather simple and will greatly help you -understand how to create your own ones.

-

A note about libraries: rgdal and maptools libraries are loaded -by default so you do not have to add the corresponding library() -commands (you have to make sure, however, that those two packages are -installed in your R distribution). However, other additional libraries -that you might need have to be explicitly loaded. Just add the necessary -commands at the beginning of your script. You also have to make sure -that the corresponding packages are installed in the R distribution used -by SEXTANTE.

-
-
-

GRASS

-

Configuring GRASS is not much different from configuring SAGA. First, -the path to the GRASS folder has to be defined, but only if you are -running Windows. Additionally, a shell interpreter (usually msys.exe, -which can be found in most GRASS for Windows distributions) has to be -defined and its path set up as well.

-

By default, SEXTANTE tries to configure its GRASS connector to use the GRASS distribution that ships along with QGIS. This should work without problems in most systems, but if you experience problems, you might have to do it manually. Also, if you want to use a different GRASS version, you can change that setting and point to the folder where that other version is kept. GRASS 6.4 is needed for algorithms to work correctly.

-

If you are running Linux, you just -have to make sure that GRASS is correctly installed, and that it can be -run without problem from a console.

-

GRASS algorithms use a region for calculations. This region can be -defined manually using values similar to the ones found in the SAGA -configuration, or automatically, taking the minimum extent that covers -all the input layers used to execute the algorithm each time. If this is -the behaviour you prefer, just check the Use min covering region -option in the GRASS configuration parameters.

-

GRASS includes help files describing each algorithm. If you set the -GRASS help folder parameter, SEXTANTE will open them when you use the -Show help button from the parameters window of the algorithm.

-

The last parameter that has to be configured is related to the mapset. A -mapset is needed to run GRASS, and SEXTANTE creates a temporary one for -each execution. You have to tell SEXTANTE if the data you are working -with uses geographical (lat/lon) coordinates or projected ones.

-
-
-

GDAL

-

No additional configuration is needed to run GDAL algorithms, since it is already incorporated to QGIS and SEXTANTE can infere its configuration from it.

-
-
-

OTB

-

[to be written]

-
-
- - -
-
-
-
-
-

Table Of Contents

- - -

Previous topic

-

The SEXTANTE history manager

-

This Page

- - - -
-
-
-
- - - - diff --git a/python/plugins/sextante/help/CMakeLists.txt b/python/plugins/sextante/help/CMakeLists.txt deleted file mode 100644 index 50753a9705ce..000000000000 --- a/python/plugins/sextante/help/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -FILE(GLOB HTML_FILES *.html) -FILE(GLOB OTHER_FILES *.js) -FILE(GLOB IMAGE_FILES _images/*.*) -FILE(GLOB STATIC_FILES _static/*.*) - -INSTALL(FILES ${HTML_FILES} DESTINATION ${SEXTANTE_PLUGIN_DIR}/help) -INSTALL(FILES ${OTHER_FILES} DESTINATION ${SEXTANTE_PLUGIN_DIR}/help) -INSTALL(FILES ${IMAGE_FILES} DESTINATION ${SEXTANTE_PLUGIN_DIR}/help/_images) -INSTALL(FILES ${STATIC_FILES} DESTINATION ${SEXTANTE_PLUGIN_DIR}/help/_static) diff --git a/python/plugins/sextante/help/_images/batch_processing.png b/python/plugins/sextante/help/_images/batch_processing.png deleted file mode 100644 index 4894f6ef3b64..000000000000 Binary files a/python/plugins/sextante/help/_images/batch_processing.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/batch_processing_filepath.png b/python/plugins/sextante/help/_images/batch_processing_filepath.png deleted file mode 100644 index eb4724d307e1..000000000000 Binary files a/python/plugins/sextante/help/_images/batch_processing_filepath.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/batch_processing_right_click.png b/python/plugins/sextante/help/_images/batch_processing_right_click.png deleted file mode 100644 index 7a3578f02a7d..000000000000 Binary files a/python/plugins/sextante/help/_images/batch_processing_right_click.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/batch_processing_save.png b/python/plugins/sextante/help/_images/batch_processing_save.png deleted file mode 100644 index 4bb05a72fbff..000000000000 Binary files a/python/plugins/sextante/help/_images/batch_processing_save.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/cannot_delete_alg.png b/python/plugins/sextante/help/_images/cannot_delete_alg.png deleted file mode 100644 index d445c0a80e1b..000000000000 Binary files a/python/plugins/sextante/help/_images/cannot_delete_alg.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/deactivated.png b/python/plugins/sextante/help/_images/deactivated.png deleted file mode 100644 index 5b552fa26be1..000000000000 Binary files a/python/plugins/sextante/help/_images/deactivated.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/extent.png b/python/plugins/sextante/help/_images/extent.png deleted file mode 100644 index 3a0aecce4207..000000000000 Binary files a/python/plugins/sextante/help/_images/extent.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/extent_drag.png b/python/plugins/sextante/help/_images/extent_drag.png deleted file mode 100644 index 4ac89142f43b..000000000000 Binary files a/python/plugins/sextante/help/_images/extent_drag.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/extent_list.png b/python/plugins/sextante/help/_images/extent_list.png deleted file mode 100644 index e50b0202b1f6..000000000000 Binary files a/python/plugins/sextante/help/_images/extent_list.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/fixed_table.png b/python/plugins/sextante/help/_images/fixed_table.png deleted file mode 100644 index 2f2e51edca24..000000000000 Binary files a/python/plugins/sextante/help/_images/fixed_table.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/help_edition.png b/python/plugins/sextante/help/_images/help_edition.png deleted file mode 100644 index 4c69a36d1f8a..000000000000 Binary files a/python/plugins/sextante/help/_images/help_edition.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/history.png b/python/plugins/sextante/help/_images/history.png deleted file mode 100644 index 3513713eb964..000000000000 Binary files a/python/plugins/sextante/help/_images/history.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/modeler_canvas.png b/python/plugins/sextante/help/_images/modeler_canvas.png deleted file mode 100644 index 310263d7f111..000000000000 Binary files a/python/plugins/sextante/help/_images/modeler_canvas.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/modeler_right_click.png b/python/plugins/sextante/help/_images/modeler_right_click.png deleted file mode 100644 index 1e3baa944363..000000000000 Binary files a/python/plugins/sextante/help/_images/modeler_right_click.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/models.png b/python/plugins/sextante/help/_images/models.png deleted file mode 100644 index aa35dc8beb46..000000000000 Binary files a/python/plugins/sextante/help/_images/models.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/models_parameters.png b/python/plugins/sextante/help/_images/models_parameters.png deleted file mode 100644 index f0a205d7b074..000000000000 Binary files a/python/plugins/sextante/help/_images/models_parameters.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/models_parameters2.png b/python/plugins/sextante/help/_images/models_parameters2.png deleted file mode 100644 index 39e25053d84c..000000000000 Binary files a/python/plugins/sextante/help/_images/models_parameters2.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/models_parameters3.png b/python/plugins/sextante/help/_images/models_parameters3.png deleted file mode 100644 index e5077cbbb66a..000000000000 Binary files a/python/plugins/sextante/help/_images/models_parameters3.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/models_parameters4.png b/python/plugins/sextante/help/_images/models_parameters4.png deleted file mode 100644 index a0cfb76bd3c0..000000000000 Binary files a/python/plugins/sextante/help/_images/models_parameters4.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/models_parameters5.png b/python/plugins/sextante/help/_images/models_parameters5.png deleted file mode 100644 index edad0a769e57..000000000000 Binary files a/python/plugins/sextante/help/_images/models_parameters5.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/multiple_selection.png b/python/plugins/sextante/help/_images/multiple_selection.png deleted file mode 100644 index 95738d38322b..000000000000 Binary files a/python/plugins/sextante/help/_images/multiple_selection.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/number_selector.png b/python/plugins/sextante/help/_images/number_selector.png deleted file mode 100644 index 575f42b449f1..000000000000 Binary files a/python/plugins/sextante/help/_images/number_selector.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/parameters_dialog.png b/python/plugins/sextante/help/_images/parameters_dialog.png deleted file mode 100644 index 0947c67487b4..000000000000 Binary files a/python/plugins/sextante/help/_images/parameters_dialog.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/rendering_styles.png b/python/plugins/sextante/help/_images/rendering_styles.png deleted file mode 100644 index d9c01a4e7da5..000000000000 Binary files a/python/plugins/sextante/help/_images/rendering_styles.png and /dev/null differ diff --git a/python/plugins/sextante/help/_images/toolbox.png b/python/plugins/sextante/help/_images/toolbox.png deleted file mode 100644 index a23e1e302568..000000000000 Binary files a/python/plugins/sextante/help/_images/toolbox.png and /dev/null differ diff --git a/python/plugins/sextante/help/_sources/3rdParty.txt b/python/plugins/sextante/help/_sources/3rdParty.txt deleted file mode 100644 index 9e4a0fdcc9f0..000000000000 --- a/python/plugins/sextante/help/_sources/3rdParty.txt +++ /dev/null @@ -1,342 +0,0 @@ -Configuring external applications -================================= - -Introduction ------------- - -SEXTANTE can be extended using additional applications, calling them -from within SEXTANTE. Currently, SAGA, GRASS, OTB(Orfeo Toolbox) and R are supported, along -with some other command-line applications that provide spatial data -analysis functionalities. -This chapter will show you how to configure SEXTANTE to include these -additional applications. Once you have correctly configured the system, -you will be able to execute external algorithms from any SEXTANTE -component like the toolbox or the graphical modeler, just like you do -with any other SEXTANTE geoalgorithm. - -A note on file formats -~~~~~~~~~~~~~~~~~~~~~~ - -When using an external software, opening a file in QGIS does not mean -that it can be opened and processed as well on that other software. In -most cases, it can read what you have opened in QGIS, but in some cases, -that might not be the case. When using databases or uncommon file -formats, whether for raster of vector layers, problems might arise. If -that happens, try to use well known file formats that you are sure that -are understood by both programs, and check to console output (in the -history and log dialog) for knowing more about what is going wrong. - -Using GRASS raster layers is, for instance, one case in which you might -have trouble and not be able to complete your work if you call an -external algorithm using such a layer as input. For this reason, these -layers will not appear as available to SEXTANTE algorithms (We are -currently working on solving this, and expect to have it ready soon). - -You should, however, find no problems at all with vector layers, since -SEXTANTE automatically converts from the original file format to one -accepted by the external application before passing the layer to it. -This adds an extra processing time, which might be significant if the -layer has a large size, so do not be surprised if it takes more to -process a layer from a DB connection that one of a similar size stored -in a shapefile. - -Providers not using external applications can process any layer that you -can open in QGIS, since they open it for analysis trough QGIS. - -Regarding output formats, raster layers can be saved as TIFF (.tif) -files, while vector layers are saved as shapefiles (.shp). These have -been chosen as the *lingua franca* between supported third party -applications and QGIS. If the output filename that you select is not one -of the above, it will be modified, adding the corresponding suffix, and -the default file format will be used. - -In the case of GDAL, the number of supported output formats is larger. -When you open the file selection dialog, you will see that you have more -formats (and their corresponding extensions available). For more -information about which formats are supported, check the GDAL -documentation. - -A note on vector layer selections -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -By default, when an external algorithm takes a vector layer, it will use -all its features, even if a selection exist in QGIS. You can make an -external algorithm aware of that selection by checking the *Use selected -features in external applications* item in the *General* settings group. -When you do so, each time you execute an external algorithm that uses a -vector layer, the selected features of that layer will be exported to a -new layer, and the algorithm will work with that new layer instead. - -Notice that if you select this option, a layer with no selection will -behave like a layer with all its features selected, not like an empty -layer. - -SAGA ----- - -SAGA algorithms can be run from SEXTANTE if you have SAGA installed in -your system and you configure SEXTANTE properly so it can find SAGA -executables. In particular, the SAGA command–line executable is needed -to run SAGA algorithms. SAGA binaries are not included with SEXTANTE, so -you have to download and install the software yourself. Please check the -SAGA website at for more information. SAGA 2.0.8 is needed. - -Once SAGA is installed, and if you are running Windows, open the -SEXTANTE configuration dialog. In the *SAGA* block you will find a -setting named *SAGA Folder*. Enter the path to the folder where SAGA is -installed. Close the configuration dialog and now you are ready to run -SAGA algorithms from SEXTANTE. - -In case you are using Linux, there is no need to configure that, and you -will not see those folders. Instead, you must make sure that SAGA is -properly installed and its folder is added to the PATH environment -variable. Just open a console and type ``saga_cmd`` to check that the -system can found where SAGA binaries are located. - -Notice that, ever before doing that, SAGA algorithms are shown in the -toolbox and you can open them to fill the corresponding parameters -dialog. However, if you try to run the algorithm after entering the -parameter values, SEXTANTE will show an error message. This is because -the algorithm descriptions (needed to create the parameters dialog and -give SEXTANTE the information it needs about the algorithm) are not -included with SAGA, but with SEXTANTE instead. That is, they are part of -SEXTANTE, so you have them in your installation even if you have not -installed SEXTANTE. Running the algorithm, however, needs SAGA binaries -installed in your system. - -About SAGA grid system limitations -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Most of SAGA algorithms that require several input raster layers, -require them to have the same grid system. That is, to cover the same -geographic area and have the same cellsize, so their corresponding grids -match. When calling SAGA algorithms from SEXTANTE, you can use any -layer, regardless of its cellsize and extent. When multiple raster layers -are used as input for a SAGA algorithm, SEXTANTE resamples them to a -common grid system and then passes them to SAGA (unless the SAGA -algorithm can operate with layers from different grid systems). - -The definition of that common grid system is controlled by the user, and -you will find several parameters in the SAGA group of the setting window -to do so. There are two ways of setting the target grid system: - -- Setting it manually - - . You define the extent setting the values of the following - parameters: - - - Resampling min X - - - Resampling max X - - - Resampling min Y - - - Resampling max Y - - - Resampling cellsize - - Notice that SEXTANTE will resample input layers to that extent, even - if they do not overlap with it. - -- Setting it automatically from input layers. To select this option, - just check the ’’Use min covering grid system for resampling’’ - option. All the other settings will be ignored and the minimum extent - that covers all the input layers will be used. The cellsize of the - target layer is the maximum of all cellsizes of the input layers. - -For algorithms that do not use multiple raster layers, or for those that -do not need a unique input grid system, no resampling is performed -before calling SAGA, and those parameters are not used. - -R. Creating R scripts ---------------------- - -R integration in SEXTANTE is different from that of SAGA in that there -is not a predefined set of algorithms you can run (except for a few -examples). Instead, you should write your scripts and call R commands, -much like you would do from R, and in a very similar manner to what we -saw in the chapter dedicated to SEXTANTE scripts. This chapter shows you -the syntax to use to call those R commands from SEXTANTE and how to use -SEXTANTE objects (layers, tables) in them. - -The first thing you have to do, as we saw in the case of SAGA, is to -tell SEXTANTE where you R binaries are located. You can do so using the -*R folder* entry in the SEXTANTE configuration dialog. Once you have set -that parameter, you can start creating your own R scripts and executing -them. - -Once again, this is different in Linux, and you just have to make sure -that the R folder is included in the PATH environment variable. If you -can start R just typing ``R`` in a console, then you are ready to go. - -To add a new algorithm that calls an R function (or a more complex R -script that you have developed and you would like to have available from -SEXTANTE), you have to create a script file that tells SEXTANTE how to -perform that operation and the corresponding R commands to do so. - -Script files have the extension ``rsx`` and creating them is pretty easy -if you just have a basic knowledge of R syntax and R scripting. They -should be stored in the R scripts folder. You can set this folder in the -R settings group (available from the SEXTANTE settings dialog), just -like you do with the folder for regular SEXTANTE scripts. - -Let’s have a look at a very simple file script file, which calls the R -method ``spsample`` to create a random grid within the boundary of the -polygons in a given polygon layer. This method belong to the -``maptools`` package. Since almost all the algorithms that you might -like to incorporate into SEXTANTE will use or generate spatial data, -knowledge of spatial packages like ``maptools`` and, specially, ``sp``, -is mandatory. - -:: - - ##polyg=vector - ##numpoints=number 10 - ##output=output vector - ##sp=group - pts=spsample(polyg,numpoints,type="random") - output=SpatialPointsDataFrame(pts, as.data.frame(pts)) - -The first lines, which start with a double Python comment sign (##), -tell SEXTANTE the inputs of the algorithm described in the file and the -outputs that it will generate. They work exactly with the same syntax as -the SEXTANTE scripts that we have already seen, so they will not be -described here again. Check the corresponding section for more -information. - -When you declare an input parameter, SEXTANTE uses that information for -two things: creating the user interface to ask the user for the value of -that parameter and creating a corresponding R variable that can be later -used as input for R commands - -In the above example, we are declaring an input of type -``vector`` named ``polyg``. When executing the algorithm, -SEXTANTE will open in R the layer selected by the user and store it in a -variable also named ``polyg``. So the name of a parameter is also the -name of the variable that we can use in R for accessing the value of that -parameter (thus, you should avoid using reserved R words as parameter -names). - -Spatial elements such as vector and raster layers are read using the -``readOGR()`` and ``readGDAL()`` commands (you do not have to worry -about adding those commands to your description file, SEXTANTE will do -it) and stored as ``Spatial*DataFrame`` objects. Table fields are stored -as strings containing the name of the selected field. - -Tables are opened using the ``read.csv()`` command. If a table entered -by the user is not in CSV format, it will be converted prior to -importing it in R. - -Knowing that, we can now understand the first line of our example script -(the first line not starting with a Python comment). - -:: - - pts=spsample(polyg,numpoints,type="random") - -The variable ``polygon`` already contains a ``SpatialPolygonsDataFrame`` -object, so it can be used to call the ``spsample`` method, just like the -``numpoints`` one, which indicates the number of points to add to the -created sample grid. - -Since we have declared an output of type vector named ``out``, we have -to create a variable named ``out`` and store a ``Spatial*DataFrame`` -object in it (in this case, a ``SpatialPointsDataFrame``). You can use -any name for your intermediate variables. Just make sure that the -variable storing your final result has the same name that you used to -declare it, and contains a suitable value. - -In this case, the result obtained from the ``spsample`` method has to be -converted explicitly into a ``SpatialPointsDataFrame`` object, since it -is itself an object of class ``ppp``, which is not a suitable class to -be retuned to SEXTANTE. - -If you algorithm does not generate any layer, but a text result in the -console instead, you have to tell SEXTANTE that you want the console to -be shown once the execution is finished. To do so, just start the -command lines that produce the results you want to print with the -“:math:`>`” sign. The output of all other lines will not be shown. For -instance, here is the description file of an algorithms that performs a -normality test on a given field (column) of the attributes of a vector -layer: - -:: - - ##layer=vector - ##field=field layer - ##nortest=group - library(nortest) - >lillie.test(layer[[field]]) - -The output ot the last line is printed, but the output of the first is -not (and neither are the outputs from other command lines added -automatically by SEXTANTE). - -If your algorithm creates any kind of graphics (using the ``plot()`` -method), add the following line: - -:: - - ##showplots - -This will cause SEXTANTE to redirect all R graphical outputs to a -temporary file, which will be later opened once R execution has finished - -Both graphics and console results will be shown in the SEXTANTE results -manager. - -For more information, please check the script files provided with -SEXTANTE. Most of them are rather simple and will greatly help you -understand how to create your own ones. - -A note about libraries: ``rgdal`` and ``maptools`` libraries are loaded -by default so you do not have to add the corresponding *library()* -commands (you have to make sure, however, that those two packages are -installed in your R distribution). However, other additional libraries -that you might need have to be explicitly loaded. Just add the necessary -commands at the beginning of your script. You also have to make sure -that the corresponding packages are installed in the R distribution used -by SEXTANTE. - -GRASS ------ - -Configuring GRASS is not much different from configuring SAGA. First, -the path to the GRASS folder has to be defined, but only if you are -running Windows. Additionally, a shell interpreter (usually msys.exe, -which can be found in most GRASS for Windows distributions) has to be -defined and its path set up as well. - -By default, SEXTANTE tries to configure its GRASS connector to use the GRASS distribution that ships along with QGIS. This should work without problems in most systems, but if you experience problems, you might have to do it manually. Also, if you want to use a different GRASS version, you can change that setting and point to the folder where that other version is kept. GRASS 6.4 is needed for algorithms to work correctly. - -If you are running Linux, you just -have to make sure that GRASS is correctly installed, and that it can be -run without problem from a console. - -GRASS algorithms use a region for calculations. This region can be -defined manually using values similar to the ones found in the SAGA -configuration, or automatically, taking the minimum extent that covers -all the input layers used to execute the algorithm each time. If this is -the behaviour you prefer, just check the *Use min covering region* -option in the GRASS configuration parameters. - -GRASS includes help files describing each algorithm. If you set the -*GRASS help folder* parameter, SEXTANTE will open them when you use the -*Show help* button from the parameters window of the algorithm. - -The last parameter that has to be configured is related to the mapset. A -mapset is needed to run GRASS, and SEXTANTE creates a temporary one for -each execution. You have to tell SEXTANTE if the data you are working -with uses geographical (lat/lon) coordinates or projected ones. - - -GDAL ------ - -No additional configuration is needed to run GDAL algorithms, since it is already incorporated to QGIS and SEXTANTE can infere its configuration from it. - - -OTB ---- - -[to be written] diff --git a/python/plugins/sextante/help/_sources/batch.txt b/python/plugins/sextante/help/_sources/batch.txt deleted file mode 100644 index 0f54949e7df8..000000000000 --- a/python/plugins/sextante/help/_sources/batch.txt +++ /dev/null @@ -1,99 +0,0 @@ -The SEXTANTE batch processing interface -======================================= - -Introduction ------------- - -SEXTANTE algorithms (including models) can be executed as a batch -process. That is, they can be executed using not a single set of inputs, -but several of them, executing the algorithm as many times as needed. -This is useful when processing large amounts of data, since it is not -necessary to launch the algorithm many times from the toolbox. - -To execute an algorithm as a batch process, right-click on its name in -the toolbox and select the *Execute as batch process* option in the -pop-up menu that will appear - -.. image:: batch_processing_right_click.png - :align: center - -The parameters table --------------------- - -Executing a batch process is similar to performing a single execution of -an algorithm. Parameter values have to be defined, but in this case we -need not just a single value for each parameter, but a set of them -instead, one for each time the algorithm has to be executed. Values are -introduced using a table like the one shown next. - -.. image:: batch_processing.png - :align: center - -Each line of this table represents a single execution of the algorithm, -and each cell contains the value of one of the parameters. It is similar -to the parameters dialog that you see when executing an algorithm from -the toolbox, but with a different arrangement. - -By default, the table contains just two rows. You can add or remove rows -using the buttons on the lower part of the window. - -Once the size of the table has been set, it has to be filled with the -desired values - -Filling the parameters table ----------------------------- - -For most parameters, setting its value is trivial. Just type the value -or select it from the list of available options, depending on the -parameter type. - -The main differences are found for parameters representing layers or -tables, and for output filepaths. Regarding input layers and tables, -when an algorithm is executed as part of a batch process those input -data objects are taken directly from files, and not from the set of them -already opened in QGIS. For this reason, any algorithm can be executed -as a batch process even if no data objects at all are opened and the -algorithm cannot be run from the toolbox. - -Filenames for input data objects are introduced directly typing or, more -conveniently, clicking on the button on the right hand of the cell, -which shows a typical file chooser dialog. Multiple files can be -selected at once. If the input parameter represents a single data object -and several files are selected, each one of them will be put in a -separate row, adding new ones if needed. If it represents a multiple -input, all the selected files will be added to a single cell, separated -by semicolons. - -Output data objects are always saved to a file and, unlike when -executing an algorithm from the toolbox, saving to a temporary one is -not permitted. You can type the name directly or use the file chooser -dialog that appears when clicking on the accompanying button. - -Once you select the file, a new dialog is shown to allow for -autocompletion of other cells in the same column (same parameter). - -.. image:: batch_processing_save.png - :align: center - -If the default value (*Do not autocomplete*) is selected, SEXTANTE will -just put the selected filename in the selected cell from the parameters -table. If any of the other options is selected, all the cells below the -selected one will be automatically filled based on a defined criteria. -This way, it is much easier to fill the table, and the batch process can -be defined with less effort. - -Automatic filling can be done simply adding correlative numbers to the -selected filepath, or appending the value of another field at the same -row. This is particularly useful for naming output data object according -to input ones. - -.. image:: batch_processing_filepath.png - :align: center - -Executing the batch process ---------------------------- - -To execute the batch process once you have introduced all the necessary -values, just click on *OK*. SEXTANTE will show the progress of the -global batch process in the progress bar in the lower part of the -dialog. diff --git a/python/plugins/sextante/help/_sources/console.txt b/python/plugins/sextante/help/_sources/console.txt deleted file mode 100644 index cac5c66da2ea..000000000000 --- a/python/plugins/sextante/help/_sources/console.txt +++ /dev/null @@ -1,351 +0,0 @@ -Using SEXTANTE from the console. Creating scripts. -================================================== - -Introduction ------------- - -The console allows advanced users to increase their productivity and -perform complex operations that cannot be performed using any of the -other elements of the SEXTANTE GUI. Models involving several algorithms -can be defined using the command-line interface, and additional -operations such as loops and conditional sentences can be added to -create more flexible and powerful workflows. - -There is not a SEXTANTE console in QGIS, but all SEXTANTE commands are -available instead from QGIS built-in Python console. That means that you -can incorporate those command to your console work and connect SEXTANTE -algorithms to all the other features (including methods from the QGIS -API) available from there. - -The code that you can execute from the Python console, even if it does -call any SEXTANTE method, can be converted into a new SEXTANTE algorithm -that you can later call from the toolbox, the graphical modeler or any -other SEXTANTE component, just like you do with any other SEXTANTE -algorithm. In fact, some algorithms that you can find in the toolbox, -like all the ones in the *mmqgis* group, are simple scripts. - -In this chapter we will see how to use SEXTANTE from the QGIS Python -console, and also how to write your own algorithms using Python. - -Calling SEXTANTE from the Python console ----------------------------------------- - -The first thing you have to do is to import the ``Sextante`` class with -the following line: - -:: - - >>from sextante.core.Sextante import Sextante - -Now, there is basically just one (interesting) thing you can do with -SEXTANTE from the console: to execute an algorithm. That is done using -the ``runalg()`` method, which takes the name of the algorithm to -execute as its first parameter, and then a variable number of additional -parameter depending on the requirements of the algorithm. So the first -thing you need to know is the name of the algorithm to execute. That is -not the name you see in the toolbox, but rather a unique command–line -name. To find the right name for your algorithm, you can use the -``algslist()`` method. Type the following line in you console: - -You will see something like this. - -:: - - >>> Sextante.alglist() - Accumulated Cost (Anisotropic)---------------->saga:accumulatedcost(anisotropic) - Accumulated Cost (Isotropic)------------------>saga:accumulatedcost(isotropic) - Add Coordinates to points--------------------->saga:addcoordinatestopoints - Add Grid Values to Points--------------------->saga:addgridvaluestopoints - Add Grid Values to Shapes--------------------->saga:addgridvaluestoshapes - Add Polygon Attributes to Points-------------->saga:addpolygonattributestopoints - Aggregate------------------------------------->saga:aggregate - Aggregate Point Observations------------------>saga:aggregatepointobservations - Aggregation Index----------------------------->saga:aggregationindex - Analytical Hierarchy Process------------------>saga:analyticalhierarchyprocess - Analytical Hillshading------------------------>saga:analyticalhillshading - Average With Mask 1--------------------------->saga:averagewithmask1 - Average With Mask 2--------------------------->saga:averagewithmask2 - Average With Thereshold 1--------------------->saga:averagewiththereshold1 - Average With Thereshold 2--------------------->saga:averagewiththereshold2 - Average With Thereshold 3--------------------->saga:averagewiththereshold3 - B-Spline Approximation------------------------>saga:b-splineapproximation - . - . - . - -That's a list of all the available algorithms, alphabetically ordered, -along with their corresponding command-line names. - -You can use a string as a parameter for this method. Instead of -returning the full list of algorithm, it will only display those that -include that string. If, for instance, you are looking for an algorithm -to calculate slope from a DEM, type ``alglist("slope")`` to get the -following result: - -:: - - DTM Filter (slope-based)---------------------->saga:dtmfilter(slope-based) - Downslope Distance Gradient------------------->saga:downslopedistancegradient - Relative Heights and Slope Positions---------->saga:relativeheightsandslopepositions - Slope Length---------------------------------->saga:slopelength - Slope, Aspect, Curvature---------------------->saga:slopeaspectcurvature - Upslope Area---------------------------------->saga:upslopearea - Vegetation Index[slope based]----------------->saga:vegetationindex[slopebased] - -It is easier now to find the algorithm you are looking for and its -command-line name, in this case *saga:slopeaspectcurvature* - -Once you know the command-line name of the algorithm, the next thing to -do is to know the right syntax to execute it. That means knowing which -parameters are needed and the order in which they have to be passed when -calling the ``runalg()`` method. SEXTANTE has a method to describe an -algorithm in detail, which can be used to get a list of the parameters -that an algorithms require and the outputs that it will generate. To do -it, you can use the ``alghelp(name_of_the_algorithm)`` method. Use the -command-line name of the algorithm, not the full descriptive name. - -Calling the method with ``saga:slopeaspectcurvature`` as parameter, you -get the following description. - -:: - - >Sextante.alghelp("saga:slopeaspectcurvature") - ALGORITHM: Slope, Aspect, Curvature - ELEVATION - METHOD - SLOPE - ASPECT - CURV - HCURV - VCURV - -Now you have everything you need to run any algorithm. As we have -already mentioned, there is only one single command to execute -algorithms: ``runalg``. Its syntax is as follows: - -:: - - > runalg{name_of_the_algorithm, param1, param2, ..., paramN, - Output1, Output2, ..., OutputN) - -The list of parameters and outputs to add depends on the algorithm you -want to run, and is exactly the list that the ``describealg`` method -gives you, in the same order as shown. - -Depending on the type of parameter, values are introduced differently. -The next one is a quick review of how to introduce values for each type -of input parameter - -- Raster Layer, Vector Layer or Table. Simply use a string with the - name that identifies the data object to use (the name it has in the - QGIS Table of Contents) or a filename (if the corresponding layer is - not opened, it will be opened, but not added to the map canvas). If - you have an instance of a QGIS object representing the layer, you can - also pass it as parameter. If the input is optional and you do not - want to use any data object, use ``None``. - -- Selection. If an algorithm has a selection parameter, the value of - that parameter should be entered using an integer value. To know the - available options, you can use the ``algoptions`` command, as shown - in the following example: - - :: - - >>Sextante.algoptions("saga:slopeaspectcurvature") - METHOD(Method) - 0 - [0] Maximum Slope (Travis et al. 1975) - 1 - [1] Maximum Triangle Slope (Tarboton 1997) - 2 - [2] Least Squares Fitted Plane (Horn 1981, Costa-Cabral & Burgess 1996) - 3 - [3] Fit 2.Degree Polynom (Bauer, Rohdenburg, Bork 1985) - 4 - [4] Fit 2.Degree Polynom (Heerdegen & Beran 1982) - 5 - [5] Fit 2.Degree Polynom (Zevenbergen & Thorne 1987) - 6 - [6] Fit 3.Degree Polynom (Haralick 1983) - - In this case, the algorithm has one of such such parameters, with 7 - options. Notice that ordering is zero-based. - -- Multiple input. The value is a string with input descriptors - separated by semicolons. As in the case of single layers or tables, - each input descriptor can be the data object name, or its filepath. - -- Table Field from XXX. Use a string with the name of the field to use. - This parameter is case-sensitive. - -- Fixed Table. Type the list of all table values separated by commas - and enclosed between quotes. Values start on the upper row and go - from left to right. You can also use a 2D array of values - representing the table. - -- CRS: Enter the EPSG code number of the desired CRS - -- Extent: You must use a string with xmin,xmax,ymin and ymax values separated by commas - -Boolean, file, string and numerical parameters do not need any additional -explanations. - -Input parameters such as strings booleans or numerical values have default -values. To use them, use ``None`` in the corresponding parameter entry. - -For output data objects, type the filepath to be used to save it, just -as it is done from the toolbox. If you want to save the result to a -temporary file, use ``None``. The extension of the file determines the -file format. If you enter a file extension not included in the ones -supported by the algorithm, the default file format for that output -type will be used, and its corresponding extension appended to the given -filepath. - -Unlike when an algorithm is executed from the toolbox, outputs are not -added to the map canvas if you execute that same algorithm from the -Python console. If you want to add an output to it, you have to do it -yourself after running the algorithm. To do so, you can use QGIS API -commands, or, even easier, use one of the handy methods provided by -SEXTANTE for such task. - -The ``runalg`` method returns a dictionary with the output names (the -ones shown in the algorithm description) as keys and the filepaths of -those outputs as values. To add all the outputs generated by an -algorithm, pass that dictionary to the ``loadFromAlg()`` method. You can -also load an individual layer passing its filepath to the ``load()`` -method. - -Creating scripts and running them from the toolbox --------------------------------------------------- - -You can create your own algorithms by writing the corresponding Python -code and adding a few extra lines to supply additional information -needed by SEXTANTE. You can find a *Create new script* under the tools -group in the script algorithms block of the toolbox. Double click on it -to open the script edition dialog. That's where you should type your -code. Saving the script from there in the scripts folder (the default -one when you open the save file dialog), with ``.py`` extension, will -automatically create the corresponding algorithm. - -The name of the algorithm (the one you will see in the toolbox) is -created from the filename, removing its extension and replacing low -hyphens with blank spaces. - -Let's have the following code, which calculates the Topographic Wetness -Index(TWI) directly from a DEM - -:: - - ##dem=raster - ##twi=output - ret_slope = Sextante.runalg("saga:slopeaspectcurvature", dem, 0, None, - None, None, None, None) - ret_area = Sextante.runalg("saga:catchmentarea(mass-fluxmethod)", "dem", - 0, False, False, False, False, None, None, None, None, None) - Sextante.runalg("saga:topographicwetnessindex(twi), ret_slope['SLOPE'], - ret_area['AREA'], None, 1, 0, twi) - -As you can see, it involves 3 algorithms, all of them coming from SAGA. -The last one of them calculates de TWI, but it needs a slope layer and a -flow accumulation layer. We do not have these ones, but since we have -the DEM, we can calculate them calling the corresponding SAGA -algorithms. - -The part of the code where this processing takes place is not difficult -to understand if you have read the previous sections in this chapter. -The first lines, however, need some additional explanation. They provide -SEXTANTE the information it needs to turn your code into an algorithm -that can be run from any of its components, like the toolbox or the -graphical modeler. - -These lines start with a double Python comment symbol and have the -following structure: *[parameter_name]=[parameter_type] -[optional_values]*. Here is a list of all the parameter types that -SEXTANTE supports in its scripts, their syntax and some examples. - -- ``raster``. A raster layer - -- ``vector``. A vector layer - -- ``table``. A table - -- ``number``. A numerical value. A default value must be provided. For - instance, ``depth=number 2.4`` - -- ``string``. A text string. As in the case of numerical values, a - default value must be added. For instance, ``name=string Victor`` - -- ``boolean``. A boolean value. Add ``True`` or ``False`` after it to - set the default value. For example, ``verbose=boolean True`` - -- ``multiple raster``. A set of input raster layers. - -- ``multiple vector``. A set of input vector layers. - -- ``field``. A field in the attributes table of a vector layer. The - name of the layer has to be added after the ``field`` tag. For - instance, if you have declared a vector input with - ``mylayer=vector``, you could use ``myfield=field mylayer`` to add a - field from that layer as parameter. - -- ``folder``. A folder - -- ``file``. A filename - -The parameter name is the name that will be shown to the user when -executing the algorithm, and also the variable name to use in the script -code. The value entered by the user for that parameter will be assigned -to a variable with that name. - -When showing the name of the parameter to the user, SEXTANTE will edit it to improve its appearance, replacing low hyphens with blankspaces. So, for instance, if you want the user to see a parameter named ``A numerical value``, you can use the variable name ``A_numerical_value`` - -Layers and tables values are strings containing the filepath of the -corresponding object. To turn them into a QGIS object, you can use the -``getObject()`` method in the ``Sextante`` class. Multiple inputs also -have a string value, which contains the filepaths to all selected -object, separated by semicolons. - -Outputs are defined in a similar manner, using the following tags: - -- ``output raster`` - -- ``output vector`` - -- ``output table`` - -- ``output html`` - -- ``output file`` - -The value assigned to the output variables is always a string with a -filepath. It will correspond to a temporary filepath in case the user -has not entered any output filename. - -When you declare an output, SEXTANTE will try to add it to QGIS once the -algorithm is finished. That is the reason why, although the ``runalg()`` -method does not load the layers it produces, the final TWI layer will be -loaded, since it is saved to the file entered by the user, which is the -value of the corresponding output. - -Do not use the ``load()`` method in your script algorithms, but just -when working with the console line. If a layer is created as output of -an algorithm, it should be declared as such. Otherwise, you will not be -able to properly use the algorithm in the modeler, since its syntax (as -defined by the tags explained above) will not match what the algorithm -really creates. - -In addition to the tags for parameters and outputs, you can also define -the group under which the algorithm will be shown, using the ``group`` -tag. - -Several examples are provided with SEXTANTE. Please, check them to see -real examples of how to create algorithms using this feature of -SEXTANTE. You can right-click on any script algorithm and select *Edit -script* to edit its code or just to see it. - -Documenting your scripts --------------------------- - -As in the case of models, you can create additional documentation for your script, to explain what they do and how to use them. In the script editing dialog you will find a *Edit script help* button. Click on it and it will take you to the help editing dialog. Check the chapter about the graphical modeler to know more about this dialog and how to use it. - -Help files are saved in the same folder as the script itself, adding the *.help* extension to the filename. Notice that you can edit your script's help before saving it for the first time. If you later close the script editing dialog without saving the script (i.e. you discard it), the help content you wrote will be lost. If your script was already saved and is associated to a filename, saving is done automatically. - -Communicating with the user ----------------------------- - -You can send messages to the user to inform about the progress of the algorithm. To do so, just print whatever information you want to show in the textbox above the progress bar in the algorithm dialog, using the ``print`` command. For instance, just use ``print "Processing polygon layer"`` and the text will be redirected to that textbox. - -If the text you print is just a number between 0 and 100, it will be understood as the percentage of the process that has been already finished, and instead of redirecting the text to the textbox, the progress bar will be update to that percentage of completion. diff --git a/python/plugins/sextante/help/_sources/history.txt b/python/plugins/sextante/help/_sources/history.txt deleted file mode 100644 index 65cf94393841..000000000000 --- a/python/plugins/sextante/help/_sources/history.txt +++ /dev/null @@ -1,50 +0,0 @@ -The SEXTANTE history manager -============================ - -The SEXTANTE history -==================== - -Every time you execute a SEXTANTE algorithm, information about the -process is stored in the SEXTANTE history manager. Along with the -parameters used, the date and time of the execution are also saved. - -This way, it is easy to track the and control all the work that has been -developed using SEXTANTE, and easily reproduce it. - -The SEXTANTE history manager is a set of registry entries grouped -according to their date of execution, making it easier to find -information about an algorithm executed at any particular moment. - -.. image:: history.png - :align: center - -Process information is kept as a command-line expression, even if the -algorithm was launched from the toolbox. This makes it also useful for -those learning how to use the command-line interface, since they can call -an algorithm using the toolbox and then check the history manager to see -how that same algorithm could be called from the command line. - -Apart from browsing the entries in the registry, processes can be -re-executed, simply double-clicking on the corresponding entry. - -Along with algorithm executions, SEXTANTE communicates with the user -using the other groups of the registry, namely *Errors, Warnings* and -*Information*. In case something is not working properly, having a look -at the *Errors* might help you to see what is happening. If you get in -contact with a SEXTANTE developer to report a bug or error, the -information in that group will be very useful for him to find out what -is going wrong. - -When executing third party algorithms, this is usually done calling -their command-line interfaces, which communicate with the user using the -console. Although that console is not shown, a full dump of it is stored -in the *Information* group each time you run one of those algorithms. -If, for instance, you are having problems executing a SAGA algorithm, -look for an entry name *SAGA execution console output* to check all the -messages generated by SAGA and try to find out where the problem is. - -Some algorithms, even if they can produce a result with the given input -data, might add comments or additional information to *Warning* in case -they detect potential problems from that data, in order to warn you -about them. Make sure you check those messages in case you are having -unexpected results. diff --git a/python/plugins/sextante/help/_sources/index.txt b/python/plugins/sextante/help/_sources/index.txt deleted file mode 100644 index 3821d202e5ca..000000000000 --- a/python/plugins/sextante/help/_sources/index.txt +++ /dev/null @@ -1,27 +0,0 @@ -.. SEXTANTE for QGIS documentation master file, created by - sphinx-quickstart on Wed May 09 10:06:06 2012. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -SEXTANTE for QGIS's documentation -============================================= - -Contents: - -.. toctree:: - :maxdepth: 2 - - intro - toolbox - modeler - batch - console - history - 3rdParty - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`search` - diff --git a/python/plugins/sextante/help/_sources/intro.txt b/python/plugins/sextante/help/_sources/intro.txt deleted file mode 100644 index c108c8dc688f..000000000000 --- a/python/plugins/sextante/help/_sources/intro.txt +++ /dev/null @@ -1,62 +0,0 @@ -Introduction -============ - - -This chapter introduces SEXTANTE, the powerful geospatial analysis framework of QGIS. -SEXTANTE is a geoprocessing environment that can be used to call native -and third party algorithms from QGIS, making your spatial analysis tasks -more productive and easy to accomplish. - -In the following sections we will review how to use the graphical -elements of SEXTANTE and take the most out of each one of them - -Basic elements of the SEXTANTE GUI ----------------------------------- - -There are four basic elements in the SEXTANTE GUI, which are used to run -SEXTANTE algorithms for different purposes. Choosing one tool or another -will depend on the kind of analysis that is to be performed and the -particular characteristics of each user and project. All of them (except -for the batch processing interface, which is called from the toolbox, as -we will see) can be accessed from the *SEXTANTE* menu item (you will see -more than four entries. The remaining ones are not used to execute -algorithms and will be explained later in this chapter). - -- The SEXTANTE toolbox. The main element of the SEXTANTE GUI, it is - used to execute a single algorithm or run a batch process based on - that algorithm. - - .. figure:: toolbox.png - :align: center - :alt: image - - -- The SEXTANTE graphical modeler. Several algorithms can be combined - graphically using the modeler to define a workflow, creating a single - process that involves several sub-processes - - .. figure:: models.png - :align: center - :alt: image - - -- The SEXTANTE history manager. All actions performed using any of the - aforementioned elements are stored in a history file and can be later - easily reproduced using the history manager - - .. figure:: history.png - :align: center - :alt: image - - -- The SEXTANTE batch processing interface manager. This interface - allows you to execute batch processes and automate the execution of a - single algorithm on multiple datasets. - - .. figure:: batch_processing.png - :align: center - :alt: image - - -Along the following sections we will review each one of this elements in -detail. diff --git a/python/plugins/sextante/help/_sources/modeler.txt b/python/plugins/sextante/help/_sources/modeler.txt deleted file mode 100644 index 7f1f5034b08e..000000000000 --- a/python/plugins/sextante/help/_sources/modeler.txt +++ /dev/null @@ -1,283 +0,0 @@ -The SEXTANTE graphical modeler -============================== - -Introduction ------------- - -The *graphical modeler* allows to create complex models using a simple -and easy-to-use interface. When working with a GIS, most analysis -operations are not isolated, but part of a chain of operations instead. -Using the graphical modeler, that chain of processes can be wrapped into -a single process, so it is easier and more convenient to execute than a -single process later on a different set on inputs. No matter how many -steps and different algorithms it involves, a model is executed as a -single algorithm, thus saving time and effort, specially for larger -models. - -The modeler can be opened from the SEXTANTE menu, but also from the -toolbox. In the *Modeler* branch of the algorithms tree you will find a -group named *Tools*, which contains an entry called *Create new model* - -The modeler has a working canvas where the structure of the model and -the workflow it represents are shown. On the left part of the window, a -panel with two tabs can be used to add new elements to the model. - -.. figure:: modeler_canvas.png - :align: center - :alt: image - - -Creating a model involves two steps: - -- *Definition of necessary inputs*. These inputs will be added to the - parameters window, so the user can set their values when executing - the model. The model itself is a SEXTANTE algorithm, so the - parameters window is generated automatically as it happens with all - the algorithms included in SEXTANTE. - -- *Definition of the workflow*. Using the input data of the model, the - workflow is defined adding algorithms and selecting how they use - those inputs or the outputs generated by other algorithms already in - the model - -Definition of inputs --------------------- - -The first step to create a model is to define the inputs it needs. The -following elements are found in the *Inputs* tabs on the left side of -the modeler window: - -- Raster layer - -- Vector layer - -- String - -- Table field - -- Table - -- Numerical value - -- Boolean value - -Double-clicking on any of them, a dialog is shown to define its -caracteristics. Depending on the parameter itself, the dialog will -contain just one basic element (the description, which is what the user -will see when executing the model) or more of them. For instance, when -adding a numerical value, as it can be seen in the next figure, apart -from the description of the parameter you have to set a default value -and a range of valid values. - -.. figure:: models_parameters.png - :align: center - :alt: image - - -For each added input, a new element is added to the modeler canvas. - -.. figure:: models_parameters2.png - :align: center - :alt: image - - -Definition of the workflow --------------------------- - -Once the inputs have been defined, it is time to define the algorithms -to apply on them. Algorithms can be found in the *Algorithms* tab, -grouped much in the same way as they are in the toolbox. - -.. figure:: models_parameters3.png - :align: center - :alt: image - - -To add an algorithm, double-click on its name. An execution dialog will -appear, with a content similar to the one found in the execution panel -that SEXTANTE shows when executing the algorithm from the toolbox. the -one shown next correspond to the SAGA convergence index algorithm, the -same one we saw in the section dedicated to the SEXTANTe toolbox. - -.. figure:: models_parameters4.png - :align: center - :alt: image - - -As you can see, some differences exist. Instead of the file output box -that was used to set the filepath for output layers and tables, a simple -text box is. If the layer generated by the algorithm is just a temporary -result that will be used as the input of another algorithm and should -not be kept as a final result, just do not edit that textbox. Typing -anything on it means that the result is a final one, and the text that -you supply will be the description for the output, which will be the one -the user will see when executing the model. - -Selecting the value of each parameter is also a bit different, since -there are importante differences between the context of the modeler and -the toolbox one. Let's see how to introduce the values for each type of -parameter. - -- Layers (raster and vector) and tables. They are selected from a - list, but in this case the possible values are not the layers or - tables currently loaded in QGIS, but the list of model inputs of the - corresponding type, or other layers or tables generated by algorithms - already added to the model. - -- Numerical values. Literal values can be introduced directly on the - textbox. But this textbox is also a list that can be used to select - any of the numerical value inputs of the model. In this case, the - parameter will take the value introduced by the user when executing - the model. - -- String. Like in the case of numerical values, literal strings can be - typed, or an input string can be selected. - -- Table field. The fields of the parent table or layer cannot be known - at design-time, since they depend of the selection of the user each - time the model is executed. To set the value for this parameter, type - the name of a field directly in the textbox, or use the list to - select a table field input already added to the model. The validity - of the selected field will be checked by SEXTANTE at run-time - -Once all the parameter have been assigned valid values, click on *OK* -and the algorithm will be added to the canvas. It will be linked to all -the other elements in the canvas, whether algorithms or inputs, which -provide objects that are used as inputs for that algorithm. - -.. figure:: models_parameters5.png - :align: center - :alt: image - - -Elements can be dragged to a different position within the canvas, to -change the way the module structure is displayed and make it more clear -and intuitive. Links between elements are update automatically. - -You can run your algorithm anytime clicking on the *Run* button. However, in order to use it from the toolbox, it has to be saved and the modeler dialog closed, to allow the toolbox to refresh its contents. - -Saving and loading models -------------------------- - -Use the *Save* button to save the current model and the *Open* one to -open any model previously saved. Model are saved with the ``.model`` -extension. If the model has been previously saved from the modeler -window, you will not be prompted for a filename, since there is already -a file associated with that model, and it will be used. - -Before saving a model, you have to enter a name and a group for it, -using the text boxes in the upper part of the window. - -Models saved on the models folder (the default folder when you are -prompted for a filename to save the model) will appear in the toolbox in -the corresponding branch. When the toolbox is invoked, SEXTANTE searches -the models folder for files with ``.model`` extension and loads the -models they contain. Since a model is itself a SEXTANTE algorithm, it -can be added to the toolbox just like any other algorithm. - -The models folder can be set from the SEXTANTE configuration dialog, -under the *Modeler* group. - -Models loaded from the models folder appear not only in the toolbox, but -also in the algorithms tree in the *Algorithms* tab of the modeler -window. That means that you can incorporate a model as a part of a -bigger model, just as you add any other algorithm. - -In some cases, SEXTANTE might not be able to load a model because it -cannot find all the algorithms included in its workflow. If you have -used a given algorithm as part of your model, it should be available -(that is, it should appear on the toolbox) in order to load that model. -Deactivating an algorithm provider in the SEXTANTE configuration window -renders all the algorithms in that provider unusable by the modeler, -which might cause problems when loading models. Keep that in mind when -you have trouble loading or executing models. - -Editing a model ---------------- - -You can edit the model you are currently creating, redefining the workflow and the relationships between the algorithms and inputs that define the model itself. - -If you right-click on an algorithm in the canvas representing the model, you will see a context menu like the one shown next: - -.. figure:: modeler_right_click.png - :align: center - - -Selecting the *Remove* option will cause the selected algorithm to be removed. An algorithm can be removed only if there are no other algorithms dependind on it. That is, if no output from the algorithm is used in a different one as input. If you try to remove an algorithm that has others depending on it, SEXTANTE will show you a warning message like the one you can see below: - -.. figure:: cannot_delete_alg.png - :align: center - -Selecting the *Edit* option or simply double-clicking on the algorithm icon will show the parameters dialog of the algorithm, so you can change the inputs and parameter values. Not all input elements available in the model will appear in this case as available inputs. Layers or values generated at a more advanced step in the workflow defined by the model will not be available if they cause circular dependencies. - -Select the new values and then click on the *OK* button as usual. The connections between the model elements will change accordingly in the modeler canvas. - -Activating and deactivating algorithms --------------------------------------- - -Algorithms can be deactivated in the modeler, so they will not be executed once the model is run. This can be used to test just a given part of the model, or when you do not need all the outputs it generates. - -To deactivate an algorithm, right--click on its icon in the model canvas and select the *Deactivate* option. You will see that the algorithm is represented now with a red label under its name indicating that is not active. - -.. figure:: deactivated.png - :align: center - -All algorithms depending (directly or undirectly) on that algorithm will also appear as inactive, since they cannot be executed now. - -To activate an algorithm, just right--click on its icon and select the *Activate* option. - - -Editing model help files and meta-information ---------------------------------------------- - -You can document your models from SEXTANTE. Just click on the *Edit model help* button and a dialog like the one shown next will appear. - -.. figure:: help_edition.png - :align: center - :alt: image - -On the right-hand side you will see a simple HTML page, created using the description of the input parameters and outputs of the algorithm, along with some additional items like a general description of the model or its author. The first time you open the help editor all those descriptions are empty, but you can edit them using the elements on the left-hand side of the dialog. Select an element on the upper part and the write its description in the texbox below. - -Model help is saved in a file in the same folder as the model itself. You do not have to worry about saving it, since it is done automatically. - -About available algorithms --------------------------- - -You might notice that some algorithms that can be be executed from the -toolbox do not appear in the list of available ones when you are -designing a model. To be included in a model, and algorithm must have a -correct semantic, so as to be properly linked to other in the workflow. -If an algorithm does not have such well-defined semantic (for instance, -if the number of output layers cannot be know in advance), then it is -not possible to use it within a model, and thus does not appear in the -list of them that you can find in the modeler dialog. - -Additionally, you will see some algorithms in the modeler that are not -found in the toolbox. This algorithms are meant to be used exclusively -as part of a model, and they are of no interest in a different context. -The *Calculator* algorithm is an example of that. It is just a simple -arithmetic calculator that you can use to modify numerical values -(entered by the user or generated by some other algorithm). This tools -is really useful within a model, but outside of that context, it doesn't -make too much sense. - -SEXTANTE models as Python code ------------------------------- - -*[This feature is temporarily unavailable]* - -Along with the tab that contains the graphical design of the model, you -will find another one containing a Python script which performs the same -task as the model itself. Using that code, you can create a console -script (we will explain them later in this same manual) and modify it to -incorporate actions and methods not available in the graphical modeler, -such as loops or conditional sentences. - -This feature is also a very practical way of learning how to use -SEXTANTE from the console and how to create SEXTANTE algorithms using -Python code, so you can use it as a learning tool when you start -creating your own SEXTANTE scripts. - -You will find a button below the text field containing the Python code. -Click on it to directly create a new script from that code, without -having to copy and paste it in the SEXTANTE script editor. diff --git a/python/plugins/sextante/help/_sources/toolbox.txt b/python/plugins/sextante/help/_sources/toolbox.txt deleted file mode 100644 index 1a543ad4d9b1..000000000000 --- a/python/plugins/sextante/help/_sources/toolbox.txt +++ /dev/null @@ -1,275 +0,0 @@ -The SEXTANTE toolbox -==================== - -Introduction ------------- - -The *Toolbox* is the main element of the SEXTANTE GUI, and the one that -you are more likely to use in your daily work. It shows the list of all -available algorithms grouped in different blocks, and is the access -point to run them whether as a single process or as a batch process -involving several executions of a same algorithm on different sets of -inputs. - -.. image:: toolbox.png - :align: center - - - -The toolbox contains all the algorithms available, divided into groups. -Each group represents a so-called algorithm provider, which is a set of -algorithms coming from the same source, for instance, from a third-party -application with geoprocessing capabilities. Some of this groups -represent algorithms from one of such third-party applications -(like SAGA, GRASS or R), while other contain algorithms directly coded -along with SEXTANTE elements, not relying on any additional software. -Currently, these providers all reuse code from already-existing QGIS -plugins (more specifically, from the *fTools* vector library shiped along -with QGIS and the contributed mmqgis plugin that you can install using -the plugin manager), making them more useful, since they can be executed -from elements such as the modeler or the batch processing interface, -which we will soon describe. - -Additionally, two more providers can be found, namely Models and -*Scripts*. This providers include user-created algorithms, and allow you -to define your own workflows and processing tasks. We will devote a full -section to them a bit later. - -In the upper part of the toolbox you can find a text box. To reduce the -number of algorithms shown in the toolbox and make it easier to find the -one you need, you can enter any word or phrase on the text box. Notice -that, as you type, the number of algorithms in the toolbox is reduced to -just those which contain the text you have entered in their names. - -To execute an algorithm, just double-click on its name in the toolbox. - -The algorithm dialog --------------------- - -Once you double-click on the name of the algorithm that you want to -execute, a dialog similar to the next one is shown (in this case, the -dialog corresponds to the *SAGA-Convergence index* algorithm). - -.. figure:: parameters_dialog.png - :align: center - :alt: image - - -This dialog is used to set the input values that the algorithm needs to -be executed. It shows a table where input values and configuration -parameters are to be set. It, of course, has a different content -depending on the requirements of the algorithm to be executed, and is -created automatically based on those requirements. On the left side, the -name of the parameter is shown. On the right side the value of the -parameter can be set. - -Although the number and type of parameters depend on the characteristics -of the algorithm, the structure is similar for all of them. The -parameters found on the table can be of one of the following types. - -- A raster layer, to select from a list of all the ones available - (currently opened) in QGIS. The selector contains as well a button on its right-hand side, to let you select filenames that represent layers currently not loaded in QGIS. - -- A vector layer, to select from a list of all the ones available in - the QGIS. Layers not loaded in QGIS can be selected as well, as in the case of raster layers, but only if the algorithm does not require a table field selected from the attributes table of the layer. In that case, only opened layers can be selected, since they need to be open so as to retrieve the list of field names available. - - You will see a button by each vector layer selector. If the algorithm contains several of them, you will be able to toggle just one of them. If the button corresponding to a vector input is toggled, the algorithm will be executed iteratively on each one of its features. We will see more about this kind of execution at the end of this section. - -- A table, to select from a list of all the ones available in QGIS. - Non-spatial tables are loaded into QGIS like vector layers, and in - fact they are treated as such by the program. Currently, the list of - available tables that you will see when executing a SEXTANTE - algorithm that needs one of them is restricted to tables coming from - files in DBase (.dbf) or Comma-Separated Values (.csv) formats - -- An option, to choose from a selection list of possible options. - -- A numerical value, to be introduced in a text box. You will find a - button by its side. Clicking on it you will see a dialog that allows - you to enter a mathematical expression, so you can use it as a handy - calculator. Some useful variables related to data loaded into QGIS - can be added to your expression, so you can select a value derived - from any of this variables such as the cellsize of a layer or the - northern most coordinate of another one. - - .. figure:: number_selector.png - :align: center - :alt: image - - -- A range, with min and max values to be introduced in two text boxes. - -- A text string, to be introduced in a text box. - -- A field, to choose from the attributes table of a vector layer or a - single table selected in another parameter. - -- A Coordinate Reference System. You can type the EPSG code directly in the text box, or select it from the CRS selection dialog that appear when you click on the button on the right-hand size - -- A extent, to be entered by four number representing its xmin, max, ymin, ymax limits. Clicking on the button on the right-hand side of the value selector, a pop-up menu will appear, giving you two option: to select the value from a layer or the current canvas extent, or to define it by dragging directly onto the map canvas. - - .. figure:: extent.png - :align: center - - - If you select the first option, you will see a window like the next one. - - .. figure:: extent_list.png - :align: center - - - - If you select the second one, the parameters window will hide itself, so you can click and drag onto the canvas. Once you have defined the selected rectangle, the dialog will reappear, containing the values in the extent text box. - - - .. figure:: extent_drag.png - :align: center - :alt: image - -- A list of elements (whether raster layers, vector ones or tables), to - select from the list of the ones available in QGIS. To make the - selection, click on the small button on the left side of the - corresponding row to see a dialog like the following one. - - .. figure:: multiple_selection.png - :align: center - :alt: image - - -- A small table to be edited by the user. These are used to define - parameters like lookup tables or convolution kernels, among others. - - Click on the button on the right side to see the table and edit its - values. - - .. figure:: fixed_table.png - :align: center - :alt: image - - - Depending on the algorithm, the number of rows can be modified or - not, using the buttons on the right side of the window. - - You will find a help button in the lower part of the parameters - dialog. If a help file is available, it will be shown, giving you - more information about the algorithms and detailed descriptions of - what each parameter does. Unfortunately, most algorithms lack good - documentation, but if you feel like contributing to the project, this - would be a good place to start... - -A note on projections -~~~~~~~~~~~~~~~~~~~~~ - -SEXTANTE -and also most of the external applications whose algorithms -are available from SEXTANTE- does not perform any reprojection on input -layers and assumes that all of them are already in a common coordinate -system and ready to be analized. Whenever you use more than one layer as -input to an algorithm, whether vector or raster, it is up to you to make -sure that they are all in the same coordinate system. - -Note that, due to QGIS's on-the-fly reprojecting capabilities, although -two layers might seem to overlap and match, that might not be true if -their original coordinates are used without reprojecting them onto a -common coordinate system. That reprojection should be done manually and -then use the resulting files as input to SEXTANTE. Also note that the -reprojection process can be performed with SEXTANTE, which incorporates -tools to do so. - -Data objects generated by SEXTANTE algorithms ---------------------------------------------- - -Data objects generated by SEXTANTE can be of any of the following types: - -- A raster layer - -- A vector layer - -- A table - -- An HTML file (used for text and graphical outputs) - -They are all saved to disk (there are no in-memory results), and the -parameters table will contain a text box corresponding to each one of -these outputs, where you can type the output channel to use for saving -it. An output channel contains the information needed to save the -resulting object somewhere. In the most usual case, you will save it to -a file, but the architecture of SEXTANTE allows for any other way of -storing it. For instance, a vector layer can be stored in a database or -even uploaded to a remote server using a WFS-T service. Although -solutions like these are not yet implemented, SEXTANTE is prepared to -handle them, and we expect to add new kinds of output channels in a near -feature. - -To select an output channel, just click on the button on the right side -of the text box. That will open a save-file dialog, where you can select -the desired filepath. Supported file extensions are shown in the file -format selector of the dialog, depending on the kind of output and the -algorithm. - -The format of the output is defined by the filename extension. The -supported formats depend on the ones supported by the algorithm itself. -To select a format, just select the corresponding file extension (or add -it if you are directly typing the filepath instead). If the extension of -the filepath you entered does not match any of the supported ones, a -default extension (usually ``dbf`` for tables, ``tif`` for raster layers -and ``shp`` for vector ones) will be appended to the filepath and the -file format corresponding to that extension will be used to save the -layer or table. - -If you do not enter any filename, the result will be saved as a -temporary file and in the corresponding default file format, and will be -deleted once you exit QGIS (take care with that in case you save your -project and it contains temporary layers) - -You can set a default folder for output data objects. Go to the -configuration dialog (you can open it from the SEXTANTE menu), and in -the *General* group you will find a parameter named *Output folder*. -This output folder is used as the default path in case you type just a -filename with no path (i.e. ``myfile.shp``) when executing an algorithm. - -Apart from raster layers and tables, SEXTANTE also generates graphics -and texts as HTML files. These results are shown at the end of the -algorithm execution in a new dialog. This dialog will keep the results -produced by SEXTANTE during the current session, and can be shown at any -time by selecting the *SEXTANTE results viewer* menu - -Some external applications might have files (with no particular extension restrictions) as output, but they do not belong to any of the categories above. Those outut files will not be processed by QGIS (opened or included into the current QGIS project), since most of the times correspond to file formats or elements not supported by QGIS. This is, for instance, the case with LAS files used for LiDAR data. The files get created, but you won't see anything new in your QGIS working session. - -For all the other types of outputs, you will find a check box that you can use to tell SEXTANTE not whether to load the file once it is generated by the algorithm or not. By default, all files are opened. - -SEXTANTE does not support optional outputs, so all outputs are created, but you can uncheck the corresponding check box if you are not interested in a given output, which virtually makes it behave like an optional output (although the layer is created anyway, but if you leave the text box empty, it will be saved to a temporary file and deleted once you exit QGIS) - -Configuring SEXTANTE --------------------- - -As it has been mentioned, the configuration menu gives access to a new -dialog where you can configure how SEXTANTE works. Configuration -parameters are structured in separate blocks that you can select on the -left-hand side of the dialog. - -Along with the aforementioned *Output folder* entry, the *General* block -contains parameters for setting the default rendering style for SEXTANTE -layers (that is, layers generated by using algorithms from any of the -SEXTANTE components). Just create the style you want using QGIS, save it -to a file, and then enter the path to that file in the settings so -SEXTANTE can use it. Whenever a layer is loaded by SEXTANTE and added to -the QGIS canvas, it will be rendered with that style. - -Rendering stlyes can be configured individually for each algorithm and -each one of its outputs. Just right-click on the name of the algorithm -in the toolbox and select *Edit rendering styles*. You will see a dialog -like the one shown next. - -.. figure:: rendering_styles.png - :align: center - :alt: image - - -Select the style file (\*.qml) that you want for each output and press -OK. - -Apart from the *General* block in the settings dialog, you will also -find one for each algorithm provider. They contain an *Activate* item -that you can use to make algorithms appear or not in the toolbox. Also, -some algorithm providers have their own configuration items, that we -will explain later when covering particular algorithm providers. diff --git a/python/plugins/sextante/help/_static/ajax-loader.gif b/python/plugins/sextante/help/_static/ajax-loader.gif deleted file mode 100644 index 61faf8cab239..000000000000 Binary files a/python/plugins/sextante/help/_static/ajax-loader.gif and /dev/null differ diff --git a/python/plugins/sextante/help/_static/basic.css b/python/plugins/sextante/help/_static/basic.css deleted file mode 100644 index 43e8bafaf358..000000000000 --- a/python/plugins/sextante/help/_static/basic.css +++ /dev/null @@ -1,540 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox input[type="text"] { - width: 170px; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - width: 30px; -} - -img { - border: 0; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable dl, table.indextable dd { - margin-top: 0; - margin-bottom: 0; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- general body styles --------------------------------------------------- */ - -a.headerlink { - visibility: hidden; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.field-list ul { - padding-left: 1em; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.field-list td, table.field-list th { - border: 0 !important; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -dl { - margin-bottom: 15px; -} - -dd p { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, .highlighted { - background-color: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.refcount { - color: #060; -} - -.optional { - font-size: 1.3em; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -tt.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -tt.descclassname { - background-color: transparent; -} - -tt.xref, a tt { - background-color: transparent; - font-weight: bold; -} - -h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/python/plugins/sextante/help/_static/comment-bright.png b/python/plugins/sextante/help/_static/comment-bright.png deleted file mode 100644 index 551517b8c83b..000000000000 Binary files a/python/plugins/sextante/help/_static/comment-bright.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/comment-close.png b/python/plugins/sextante/help/_static/comment-close.png deleted file mode 100644 index 09b54be46da3..000000000000 Binary files a/python/plugins/sextante/help/_static/comment-close.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/comment.png b/python/plugins/sextante/help/_static/comment.png deleted file mode 100644 index 92feb52b8824..000000000000 Binary files a/python/plugins/sextante/help/_static/comment.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/default.css b/python/plugins/sextante/help/_static/default.css deleted file mode 100644 index 21f3f5098d74..000000000000 --- a/python/plugins/sextante/help/_static/default.css +++ /dev/null @@ -1,256 +0,0 @@ -/* - * default.css_t - * ~~~~~~~~~~~~~ - * - * Sphinx stylesheet -- default theme. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -@import url("basic.css"); - -/* -- page layout ----------------------------------------------------------- */ - -body { - font-family: sans-serif; - font-size: 100%; - background-color: #11303d; - color: #000; - margin: 0; - padding: 0; -} - -div.document { - background-color: #1c4e63; -} - -div.documentwrapper { - float: left; - width: 100%; -} - -div.bodywrapper { - margin: 0 0 0 230px; -} - -div.body { - background-color: #ffffff; - color: #000000; - padding: 0 20px 30px 20px; -} - -div.footer { - color: #ffffff; - width: 100%; - padding: 9px 0 9px 0; - text-align: center; - font-size: 75%; -} - -div.footer a { - color: #ffffff; - text-decoration: underline; -} - -div.related { - background-color: #133f52; - line-height: 30px; - color: #ffffff; -} - -div.related a { - color: #ffffff; -} - -div.sphinxsidebar { -} - -div.sphinxsidebar h3 { - font-family: 'Trebuchet MS', sans-serif; - color: #ffffff; - font-size: 1.4em; - font-weight: normal; - margin: 0; - padding: 0; -} - -div.sphinxsidebar h3 a { - color: #ffffff; -} - -div.sphinxsidebar h4 { - font-family: 'Trebuchet MS', sans-serif; - color: #ffffff; - font-size: 1.3em; - font-weight: normal; - margin: 5px 0 0 0; - padding: 0; -} - -div.sphinxsidebar p { - color: #ffffff; -} - -div.sphinxsidebar p.topless { - margin: 5px 10px 10px 10px; -} - -div.sphinxsidebar ul { - margin: 10px; - padding: 0; - color: #ffffff; -} - -div.sphinxsidebar a { - color: #98dbcc; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - - - -/* -- hyperlink styles ------------------------------------------------------ */ - -a { - color: #355f7c; - text-decoration: none; -} - -a:visited { - color: #355f7c; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - - - -/* -- body styles ----------------------------------------------------------- */ - -div.body h1, -div.body h2, -div.body h3, -div.body h4, -div.body h5, -div.body h6 { - font-family: 'Trebuchet MS', sans-serif; - background-color: #f2f2f2; - font-weight: normal; - color: #20435c; - border-bottom: 1px solid #ccc; - margin: 20px -20px 10px -20px; - padding: 3px 0 3px 10px; -} - -div.body h1 { margin-top: 0; font-size: 200%; } -div.body h2 { font-size: 160%; } -div.body h3 { font-size: 140%; } -div.body h4 { font-size: 120%; } -div.body h5 { font-size: 110%; } -div.body h6 { font-size: 100%; } - -a.headerlink { - color: #c60f0f; - font-size: 0.8em; - padding: 0 4px 0 4px; - text-decoration: none; -} - -a.headerlink:hover { - background-color: #c60f0f; - color: white; -} - -div.body p, div.body dd, div.body li { - text-align: justify; - line-height: 130%; -} - -div.admonition p.admonition-title + p { - display: inline; -} - -div.admonition p { - margin-bottom: 5px; -} - -div.admonition pre { - margin-bottom: 5px; -} - -div.admonition ul, div.admonition ol { - margin-bottom: 5px; -} - -div.note { - background-color: #eee; - border: 1px solid #ccc; -} - -div.seealso { - background-color: #ffc; - border: 1px solid #ff6; -} - -div.topic { - background-color: #eee; -} - -div.warning { - background-color: #ffe4e4; - border: 1px solid #f66; -} - -p.admonition-title { - display: inline; -} - -p.admonition-title:after { - content: ":"; -} - -pre { - padding: 5px; - background-color: #eeffcc; - color: #333333; - line-height: 120%; - border: 1px solid #ac9; - border-left: none; - border-right: none; -} - -tt { - background-color: #ecf0f3; - padding: 0 1px 0 1px; - font-size: 0.95em; -} - -th { - background-color: #ede; -} - -.warning tt { - background: #efc2c2; -} - -.note tt { - background: #d6d6d6; -} - -.viewcode-back { - font-family: sans-serif; -} - -div.viewcode-block:target { - background-color: #f4debf; - border-top: 1px solid #ac9; - border-bottom: 1px solid #ac9; -} \ No newline at end of file diff --git a/python/plugins/sextante/help/_static/doctools.js b/python/plugins/sextante/help/_static/doctools.js deleted file mode 100644 index d4619fdfb10d..000000000000 --- a/python/plugins/sextante/help/_static/doctools.js +++ /dev/null @@ -1,247 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - */ -jQuery.urldecode = function(x) { - return decodeURIComponent(x).replace(/\+/g, ' '); -} - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s == 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * small function to check if an array contains - * a given item. - */ -jQuery.contains = function(arr, item) { - for (var i = 0; i < arr.length; i++) { - if (arr[i] == item) - return true; - } - return false; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node) { - if (node.nodeType == 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { - var span = document.createElement("span"); - span.className = className; - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this); - }); - } - } - return this.each(function() { - highlight(this); - }); -}; - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated == 'undefined') - return string; - return (typeof translated == 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated == 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) == 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this == '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/python/plugins/sextante/help/_static/down-pressed.png b/python/plugins/sextante/help/_static/down-pressed.png deleted file mode 100644 index 6f7ad782782e..000000000000 Binary files a/python/plugins/sextante/help/_static/down-pressed.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/down.png b/python/plugins/sextante/help/_static/down.png deleted file mode 100644 index 3003a88770de..000000000000 Binary files a/python/plugins/sextante/help/_static/down.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/file.png b/python/plugins/sextante/help/_static/file.png deleted file mode 100644 index d18082e397e7..000000000000 Binary files a/python/plugins/sextante/help/_static/file.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/jquery.js b/python/plugins/sextante/help/_static/jquery.js deleted file mode 100644 index 7c2430802337..000000000000 --- a/python/plugins/sextante/help/_static/jquery.js +++ /dev/null @@ -1,154 +0,0 @@ -/*! - * jQuery JavaScript Library v1.4.2 - * http://jquery.com/ - * - * Copyright 2010, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2010, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Sat Feb 13 22:33:48 2010 -0500 - */ -(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, -Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& -(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, -a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== -"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, -function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
a"; -var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, -parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= -false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= -s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, -applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; -else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, -a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== -w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, -cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= -c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); -a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, -function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); -k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), -C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= -e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& -f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; -if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", -e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, -"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, -d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, -e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); -t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| -g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, -CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, -g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, -text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, -setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= -h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== -"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, -h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& -q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; -if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); -(function(){var g=s.createElement("div");g.innerHTML="
";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: -function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= -{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== -"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", -d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? -a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== -1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
","
"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= -c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, -wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, -prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, -this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); -return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, -""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); -return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", -""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= -c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? -c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= -function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= -Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, -"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= -a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= -a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== -"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, -serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), -function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, -global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& -e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? -"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== -false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= -false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", -c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| -d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); -g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== -1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== -"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; -if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== -"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| -c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; -this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= -this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, -e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
"; -a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); -c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, -d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- -f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": -"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in -e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/python/plugins/sextante/help/_static/minus.png b/python/plugins/sextante/help/_static/minus.png deleted file mode 100644 index da1c5620d10c..000000000000 Binary files a/python/plugins/sextante/help/_static/minus.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/plus.png b/python/plugins/sextante/help/_static/plus.png deleted file mode 100644 index b3cb37425ea6..000000000000 Binary files a/python/plugins/sextante/help/_static/plus.png and /dev/null differ diff --git a/python/plugins/sextante/help/_static/pygments.css b/python/plugins/sextante/help/_static/pygments.css deleted file mode 100644 index bc91280a73d3..000000000000 --- a/python/plugins/sextante/help/_static/pygments.css +++ /dev/null @@ -1,62 +0,0 @@ -.highlight .hll { background-color: #ffffcc } -.highlight { background: #eeffcc; } -.highlight .c { color: #408090; font-style: italic } /* Comment */ -.highlight .err { border: 1px solid #FF0000 } /* Error */ -.highlight .k { color: #007020; font-weight: bold } /* Keyword */ -.highlight .o { color: #666666 } /* Operator */ -.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #007020 } /* Comment.Preproc */ -.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ -.highlight .gd { color: #A00000 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #FF0000 } /* Generic.Error */ -.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #303030 } /* Generic.Output */ -.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0040D0 } /* Generic.Traceback */ -.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #007020 } /* Keyword.Pseudo */ -.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #902000 } /* Keyword.Type */ -.highlight .m { color: #208050 } /* Literal.Number */ -.highlight .s { color: #4070a0 } /* Literal.String */ -.highlight .na { color: #4070a0 } /* Name.Attribute */ -.highlight .nb { color: #007020 } /* Name.Builtin */ -.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ -.highlight .no { color: #60add5 } /* Name.Constant */ -.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ -.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ -.highlight .ne { color: #007020 } /* Name.Exception */ -.highlight .nf { color: #06287e } /* Name.Function */ -.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ -.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ -.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #bb60d5 } /* Name.Variable */ -.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ -.highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mf { color: #208050 } /* Literal.Number.Float */ -.highlight .mh { color: #208050 } /* Literal.Number.Hex */ -.highlight .mi { color: #208050 } /* Literal.Number.Integer */ -.highlight .mo { color: #208050 } /* Literal.Number.Oct */ -.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ -.highlight .sc { color: #4070a0 } /* Literal.String.Char */ -.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ -.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ -.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ -.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ -.highlight .sx { color: #c65d09 } /* Literal.String.Other */ -.highlight .sr { color: #235388 } /* Literal.String.Regex */ -.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ -.highlight .ss { color: #517918 } /* Literal.String.Symbol */ -.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ -.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ -.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ -.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ -.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/python/plugins/sextante/help/_static/searchtools.js b/python/plugins/sextante/help/_static/searchtools.js deleted file mode 100644 index d7fc9cd6705b..000000000000 --- a/python/plugins/sextante/help/_static/searchtools.js +++ /dev/null @@ -1,560 +0,0 @@ -/* - * searchtools.js_t - * ~~~~~~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for the full-text search. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * helper function to return a node containing the - * search summary for a given text. keywords is a list - * of stemmed words, hlwords is the list of normal, unstemmed - * words. the first one is used to find the occurance, the - * latter for highlighting it. - */ - -jQuery.makeSearchSummary = function(text, keywords, hlwords) { - var textLower = text.toLowerCase(); - var start = 0; - $.each(keywords, function() { - var i = textLower.indexOf(this.toLowerCase()); - if (i > -1) - start = i; - }); - start = Math.max(start - 120, 0); - var excerpt = ((start > 0) ? '...' : '') + - $.trim(text.substr(start, 240)) + - ((start + 240 - text.length) ? '...' : ''); - var rv = $('
').text(excerpt); - $.each(hlwords, function() { - rv = rv.highlightText(this, 'highlighted'); - }); - return rv; -} - - -/** - * Porter Stemmer - */ -var Stemmer = function() { - - var step2list = { - ational: 'ate', - tional: 'tion', - enci: 'ence', - anci: 'ance', - izer: 'ize', - bli: 'ble', - alli: 'al', - entli: 'ent', - eli: 'e', - ousli: 'ous', - ization: 'ize', - ation: 'ate', - ator: 'ate', - alism: 'al', - iveness: 'ive', - fulness: 'ful', - ousness: 'ous', - aliti: 'al', - iviti: 'ive', - biliti: 'ble', - logi: 'log' - }; - - var step3list = { - icate: 'ic', - ative: '', - alize: 'al', - iciti: 'ic', - ical: 'ic', - ful: '', - ness: '' - }; - - var c = "[^aeiou]"; // consonant - var v = "[aeiouy]"; // vowel - var C = c + "[^aeiouy]*"; // consonant sequence - var V = v + "[aeiou]*"; // vowel sequence - - var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 - var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 - var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 - var s_v = "^(" + C + ")?" + v; // vowel in stem - - this.stemWord = function (w) { - var stem; - var suffix; - var firstch; - var origword = w; - - if (w.length < 3) - return w; - - var re; - var re2; - var re3; - var re4; - - firstch = w.substr(0,1); - if (firstch == "y") - w = firstch.toUpperCase() + w.substr(1); - - // Step 1a - re = /^(.+?)(ss|i)es$/; - re2 = /^(.+?)([^s])s$/; - - if (re.test(w)) - w = w.replace(re,"$1$2"); - else if (re2.test(w)) - w = w.replace(re2,"$1$2"); - - // Step 1b - re = /^(.+?)eed$/; - re2 = /^(.+?)(ed|ing)$/; - if (re.test(w)) { - var fp = re.exec(w); - re = new RegExp(mgr0); - if (re.test(fp[1])) { - re = /.$/; - w = w.replace(re,""); - } - } - else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1]; - re2 = new RegExp(s_v); - if (re2.test(stem)) { - w = stem; - re2 = /(at|bl|iz)$/; - re3 = new RegExp("([^aeiouylsz])\\1$"); - re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - if (re2.test(w)) - w = w + "e"; - else if (re3.test(w)) { - re = /.$/; - w = w.replace(re,""); - } - else if (re4.test(w)) - w = w + "e"; - } - } - - // Step 1c - re = /^(.+?)y$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(s_v); - if (re.test(stem)) - w = stem + "i"; - } - - // Step 2 - re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = new RegExp(mgr0); - if (re.test(stem)) - w = stem + step2list[suffix]; - } - - // Step 3 - re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = new RegExp(mgr0); - if (re.test(stem)) - w = stem + step3list[suffix]; - } - - // Step 4 - re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; - re2 = /^(.+?)(s|t)(ion)$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(mgr1); - if (re.test(stem)) - w = stem; - } - else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1] + fp[2]; - re2 = new RegExp(mgr1); - if (re2.test(stem)) - w = stem; - } - - // Step 5 - re = /^(.+?)e$/; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = new RegExp(mgr1); - re2 = new RegExp(meq1); - re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) - w = stem; - } - re = /ll$/; - re2 = new RegExp(mgr1); - if (re.test(w) && re2.test(w)) { - re = /.$/; - w = w.replace(re,""); - } - - // and turn initial Y back to y - if (firstch == "y") - w = firstch.toLowerCase() + w.substr(1); - return w; - } -} - - -/** - * Search Module - */ -var Search = { - - _index : null, - _queued_query : null, - _pulse_status : -1, - - init : function() { - var params = $.getQueryParameters(); - if (params.q) { - var query = params.q[0]; - $('input[name="q"]')[0].value = query; - this.performSearch(query); - } - }, - - loadIndex : function(url) { - $.ajax({type: "GET", url: url, data: null, success: null, - dataType: "script", cache: true}); - }, - - setIndex : function(index) { - var q; - this._index = index; - if ((q = this._queued_query) !== null) { - this._queued_query = null; - Search.query(q); - } - }, - - hasIndex : function() { - return this._index !== null; - }, - - deferQuery : function(query) { - this._queued_query = query; - }, - - stopPulse : function() { - this._pulse_status = 0; - }, - - startPulse : function() { - if (this._pulse_status >= 0) - return; - function pulse() { - Search._pulse_status = (Search._pulse_status + 1) % 4; - var dotString = ''; - for (var i = 0; i < Search._pulse_status; i++) - dotString += '.'; - Search.dots.text(dotString); - if (Search._pulse_status > -1) - window.setTimeout(pulse, 500); - }; - pulse(); - }, - - /** - * perform a search for something - */ - performSearch : function(query) { - // create the required interface elements - this.out = $('#search-results'); - this.title = $('

' + _('Searching') + '

').appendTo(this.out); - this.dots = $('').appendTo(this.title); - this.status = $('

').appendTo(this.out); - this.output = $('